:root {
    --primary-color: #FF6B00;
    --secondary-color: #FF8533;
    --text-color: #2C3E50;
    --light-bg: #FFF5EB;
    --hover-color: #FF944D;
    --heading-color: #1A1A1A;
    --light-orange: #FFE6CC;
    --dark-orange: #FF8C00;
    --orange: #FFA500;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    padding-top: 100px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    position: relative;
    min-height: 100vh;
}

body::before {
    display: none;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #342c2c;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar .logo span {
    color: #473535;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar .logo:hover {
    transform: translateY(-2px);
}

.navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-link {
    color: #342c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #342c2c;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #473535;
}

.nav-link.active::after {
    width: 100%;
    background: #473535;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: transparent;
        position: relative;
        z-index: 1000;
    }

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

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 30px;
        height: 2px;
        background-color: #333;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        transform: translateY(-8px);
    }

    .navbar-toggler-icon::after {
        transform: translateY(8px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 20px 20px;
        transition: all 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        color: #333;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #1a73e8;
        background: rgba(26, 115, 232, 0.1);
        padding-left: 1.5rem;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
        pointer-events: none;
    }

    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Add smooth transition for menu items */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar .logo {
        font-size: 2.2rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .navbar .logo {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 40px;
    }

    .navbar-nav {
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.3rem;
    }
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 30px;
    flex: 1;
    margin-left: 50px;
}

.navbar ul li {
    list-style: none;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 15px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    border-radius: 4px;
    overflow: hidden;
}

.navbar ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 37, 63, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #08090e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar ul li a:hover {
    color: #08090e;
    transform: translateY(-2px);
}

.navbar ul li a:hover::before {
    color: black;
    transform: translateY(0);
}

.navbar ul li a:hover::after {
    width: 80%;
}

.navbar .logo {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Brush Script MT', 'Brush Script Std', cursive;
    color: #1E4DB7;
    text-decoration: none;
    letter-spacing: 0.6px;
    margin-left: 20px;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(59, 130, 246, 0.1);
    word-spacing: -0.2em;
}

.navbar .logo span {
    color: #6B7280;
    font-weight: 400;
    position: relative;
    display: inline-block;
    font-family: 'Aptos', 'Calibri', sans-serif;
    font-size: 28px;
    letter-spacing: 0.3px;
}

/* Ana Sayfa Stilleri */
.home-section {
    padding: 80px 0 60px;
    position: relative;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #23253f;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #23253f;
    border-radius: 2px;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 2px solid #e0e0e0;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    color: #23253f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-box p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    color: #4a4a4a;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
}

.goals-list li:last-child {
    border-bottom: none;
}

.goals-list li::before {
    content: '•';
    color: #23253f;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-list li {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #23253f;
}

.difference-list li:last-child {
    margin-bottom: 0;
}

.difference-list li h3 {
    color: #23253f;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.difference-list li p {
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .home-section {
        padding: 60px 0 40px;
    }

    .content-box {
        padding: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar ul {
        gap: 15px;
        margin-left: 20px;
    }

    .navbar ul li a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .navbar .logo {
        font-size: 20px;
    }

    .slider-container {
        height: 50vh;
        min-height: 400px;
        max-height: 500px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .home-section {
        padding: 40px 0 30px;
    }

    .content-box {
        padding: 25px;
        margin-bottom: 30px;
    }

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

    .goals-list li {
        font-size: 14px;
        padding: 12px 0;
    }

    .difference-list li {
        padding: 20px;
    }

    .difference-list li h3 {
        font-size: 18px;
    }

    .difference-list li p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar ul {
        gap: 10px;
        margin-left: 10px;
    }

    .navbar ul li a {
        font-size: 13px;
        padding: 5px 10px;
    }

    .navbar .logo {
        font-size: 38px;
        margin-left: 10px;
    }

    .slider-container {
        height: 40vh;
        min-height: 300px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .home-section {
        padding: 30px 0 20px;
    }

    .content-box {
        padding: 20px;
        margin-bottom: 20px;
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 550px;
    max-height: 650px;
    overflow: hidden;
    margin-top: 80px;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.1);
    transform: scale(1.1);
    transition: transform 0.8s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slide.active img {
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.slide-content p {
    font-size: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Hakkımızda Bölümü Stilleri */
.about-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(35, 37, 63, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(35, 37, 63, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(35, 37, 63, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(35, 37, 63, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 0;
}

.about-background {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    }

    100% {
        background-position: 40px 40px, 40px 50px, 50px 30px, 30px 40px;
    }
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-section .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #959798, #384e50);
}

.about-section .section-subtitle {
    font-size: 18px;
    color: #ccc;
}

.about-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 24px;
    color: #959798;
    margin-right: 15px;
}

.feature-item span {
    font-size: 16px;
    color: #fff;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-section .section-title {
        font-size: 28px;
    }
}

/* Ana Sayfa Hero Bölümü */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    text-align: center;
}

.hero-quote {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 20px;
}

.first-quote {
    animation: slideInFromRight 3s ease forwards, fadeOut 1s ease forwards 3s;
    transform: translateX(30%);
}

.second-quote {
    animation: fadeIn 1s ease forwards 4s;
    opacity: 0;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-30%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-buttons {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 5s;
}

@media (max-width: 768px) {
    .hero-quote {
        height: 140px;
        margin-bottom: 40px;
    }

    .quote-text {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 15px;
    }

    .hero-buttons {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-quote {
        height: 120px;
        margin-bottom: 30px;
    }

    .quote-text {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .hero-buttons {
        margin-top: 20px;
    }
}

.quote-text:first-child {
    color: #3498DB;
    font-weight: 600;
}

.quote-text:last-child {
    color: #ECF0F1;
    font-weight: 600;
}

.quote-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498DB, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.quote-text:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.quote-text:hover::after {
    transform: scaleX(1);
    height: 3px;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
    }
}

.hero-text-overlay {
    animation: glow 3s infinite;
}

.btn-primary {
    background: linear-gradient(45deg, #2C3E50, #3498DB);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #3498DB, #2C3E50);
}

.btn-outline {
    background: transparent;
    color: #ECF0F1;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ECF0F1;
    box-shadow: 0 5px 15px rgba(236, 240, 241, 0.1);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: rgba(236, 240, 241, 0.1);
    box-shadow: 0 8px 25px rgba(236, 240, 241, 0.2);
    border-color: #3498DB;
    color: #3498DB;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }
}

/* İstatistikler Bölümü */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 36px;
    color: #23253f;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #23253f;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: #4a4a4a;
}

/* Özellikler Bölümü */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f6fa 0%, #e8eaf6 100%);
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: #23253f;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #23253f;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* CTA Bölümü */
.cta-section {
    padding: 80px 0;
    background: #23253f;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: #23253f;
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
}

@media (max-width: 992px) {
    .hero-text-overlay .hero-title {
        font-size: 36px;
    }

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

@media (max-width: 768px) {
    .hero-text-overlay .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stat-box {
        margin-bottom: 20px;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay .hero-title {
        font-size: 28px;
    }

    .hero-text-overlay .hero-text {
        font-size: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-text {
        font-size: 14px;
    }

    .feature-box h3 {
        font-size: 20px;
    }

    .feature-box p {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* Adımlarımız Bölümü */
.steps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #dfe1e8 0%, #ffffff 100%);
}

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

.section-subtitle {
    color: #473535;
    font-size: 18px;
    margin-top: 15px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(52, 44, 44, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #473535, #342c2c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 44, 44, 0.1);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #473535;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: #342c2c;
    transform: rotateY(180deg);
}

.step-icon i {
    font-size: 32px;
    color: #fff;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #342c2c;
    font-weight: 600;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.step-list li {
    padding: 8px 0;
    color: #473535;
    position: relative;
    padding-left: 25px;
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #473535;
    transition: all 0.3s ease;
}

.step-card:hover .step-list li::before {
    color: #342c2c;
    transform: translateX(5px);
}

.step-description {
    padding-top: 20px;
    border-top: 1px solid #dfe1e8;
}

.step-description p {
    color: #473535;
    font-size: 15px;
    margin: 0;
    font-style: italic;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 0;
    }

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

    .step-card {
        padding: 30px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .step-list li {
        padding-left: 20px;
    }

    .step-description p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #342c2c;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #473535, #342c2c);
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #473535;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-info,
    .footer-links,
    .footer-social {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-info h3 {
        font-size: 20px;
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 16px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 40px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* İletişim Bölümü */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-item {
        min-width: 100%;
    }
}

/* Sayfa Hero */
.page-hero {
    background: linear-gradient(rgba(52, 44, 44, 0.8), rgba(52, 44, 44, 0.8)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    display: none;
}

/* Hizmetler Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.btn-details {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-align: center;
    align-self: center;
}

.btn-details:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.service-category-card:hover .btn-details {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.service-category-card:hover .btn-details:hover {
    background: transparent;
    color: var(--secondary-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-icon i {
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
}

.service-category-card h2 {
    font-size: 22px;
    color: var(--text-color);
    margin: 0 0 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 12px;
}

.service-group {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.service-group h3 {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
}

.service-group h3 i {
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-category-card:hover h3 i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.service-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-group ul li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.service-group ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 14px;
    font-weight: bold;
}

.service-group ul li:last-child {
    margin-bottom: 0;
}

.service-category-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-category-card:hover h3::after {
    width: 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-group ul li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 15px;
        padding: 25px 0;
    }

    .service-category-card {
        padding: 15px;
    }

    .service-group h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-group ul li {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .service-category-card {
        padding: 15px;
    }

    .service-group h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-group ul li {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 1;
    animation: teamBackgroundFloat 20s ease-in-out infinite;
}

@keyframes teamBackgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.9;
    }
}

/* Team Section Title Colors */
.team-section .section-title {
    color: #2C3E50;
    text-shadow: none;
}

.team-section .section-subtitle {
    color: #666;
    text-shadow: none;
}

/* Team Slider Styles */
.team-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}


.team-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    animation: autoSlide 20s infinite linear;
}

@keyframes autoSlide {
    0% { transform: translateX(0); }
    12.5% { transform: translateX(-12.5%); }
    25% { transform: translateX(-25%); }
    37.5% { transform: translateX(-37.5%); }
    50% { transform: translateX(-50%); }
    62.5% { transform: translateX(-62.5%); }
    75% { transform: translateX(-75%); }
    87.5% { transform: translateX(-87.5%); }
    100% { transform: translateX(-100%); }
}

.team-slide {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    min-height: 400px;
}

.team-member-card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.member-image {
    margin-bottom: 0;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Hover Overlay Effect */
.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    border-radius: 12px;
    z-index: 1;
}

.team-member-card:hover .member-image::before {
    background: rgba(0, 0, 0, 0.6);
}

/* Name Overlay */
.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: transparent;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-member-card:hover .member-info {
    opacity: 1;
    transform: translateY(0);
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.clickable-name a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-name a:hover {
    color: #FF6B00;
    text-shadow: 0 2px 8px rgba(255, 107, 0, 0.5);
    transform: scale(1.05);
}

.member-position {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


/* Pause animation on hover */
.team-slider-container:hover .team-slider {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-slide {
        flex: 0 0 33.333%;
        padding: 2px;
    }
    
}

@media (max-width: 768px) {
    .team-slide {
        flex: 0 0 50%;
        padding: 0;
        min-height: 350px;
    }
    
    .team-member-card {
        max-width: 240px;
        width: 100%;
    }
    
    .member-image {
        height: 320px;
    }
    
    .member-info {
        padding: 15px;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-position {
        font-size: 0.75rem;
    }
    
    
}

@media (max-width: 480px) {
    .team-slide {
        flex: 0 0 63%;
        padding: 0;
        min-height: 300px;
    }
    
    .team-member-card {
        max-width: 220px;
        width: 100%;
    }
    
    .member-image {
        height: 280px;
    }
    
    .member-info {
        padding: 12px;
    }
    
    .member-info h3 {
        font-size: 1rem;
    }
    
    .member-position {
        font-size: 0.7rem;
    }
    
}

/* Profil Buton Stilleri */
.profile-btn {
    background: linear-gradient(45deg, #1a73e8, #3498db);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(26, 115, 232, 0.2);
}

.profile-btn:hover {
    background: linear-gradient(45deg, #1565c0, #1a73e8);
    box-shadow: 0 4px 8px rgba(26, 115, 232, 0.3);
}

.profile-btn:focus {
    outline: none;
}

/* Profesyonel Modal Stilleri */
.modal {
    z-index: 1055;
    backdrop-filter: blur(8px);
}

.modal-backdrop {
    z-index: 1040;
}

.modal-backdrop.show {
    opacity: 0.5;
}

/* Modal kapatıldığında backdrop'u temizle */
body.modal-open {
    overflow: hidden;
}

body:not(.modal-open) {
    overflow: auto;
}

.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: #ffffff;
    color: #2c3e50;
    padding: 20px 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #95a5a6;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    z-index: 10;
}

.close:hover {
    color: #e74c3c;
    opacity: 1;
    background: #f0f0f0;
    transform: scale(1.1);
}

/* Modal Body - İki Sütunlu Layout */
.modal-body {
    padding: 0;
    background: #fff;
    display: flex;
    min-height: 500px;
}

/* Sol Profil Bölümü */
.modal-profile-section {
    width: 35%;
    background: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.modal-profile-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    border: 3px solid #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modal-name {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.modal-first-name {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

.modal-last-name {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

.modal-position {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

/* Profil Bilgi Kartları */
.modal-info-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.info-card i {
    color: #667eea;
    font-size: 1.4rem;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.info-card span {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Sağ Detay Bölümü */
.modal-details-section {
    width: 65%;
    background: #fff;
    padding: 40px 30px;
    overflow-y: auto;
    max-height: 500px;
}

/* Detay Bölümü İçerik */
.cv-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
    text-align: left;
}

.cv-content p {
    margin-bottom: 20px;
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: none;
    position: relative;
    overflow: visible;
}

.cv-content h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF6B00;
}

.cv-content h5:first-child {
    margin-top: 0;
}

/* Uzmanlık Alanları Etiketleri */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.expertise-tag {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #FF6B00;
}

.expertise-tag:hover {
    background: #fff;
    color: #FF6B00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 40px;
    background: #fff;
    text-align: center;
}

.btn-secondary {
    background: #667eea;
    color: #fff;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: visible;
}

.btn-secondary::before {
    display: none;
}

.btn-secondary:hover {
    background: #5a6fd8;
    transform: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.close {
    color: #95a5a6;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    text-shadow: none;
    position: static;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    backdrop-filter: none;
    flex-shrink: 0;
}

.close:hover {
    color: #e74c3c;
    opacity: 1;
    transform: none;
    background: #f8f9fa;
}

/* Modal Animasyonları */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        max-width: 100%;
        flex-direction: column;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h4 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        flex-direction: column;
        min-height: auto;
    }
    
    .modal-profile-section {
        width: 100%;
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        justify-content: center;
        text-align: center;
    }
    
    .modal-profile-image {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .modal-first-name,
    .modal-last-name {
        font-size: 1.2rem;
    }
    
    .modal-position {
        font-size: 0.8rem;
    }
    
    .modal-details-section {
        width: 100%;
        padding: 30px 20px;
        max-height: none;
    }
    
    .cv-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .cv-content p {
        margin-bottom: 15px;
    }
    
    .cv-content h5 {
        font-size: 1.1rem;
        margin-top: 25px;
    }
    
    .expertise-tags {
        gap: 8px;
    }
    
    .expertise-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
    
    .btn-secondary {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .close {
        top: 10px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
}

/* Ekip Üyesi Pozisyon Stili */
.member-header .position {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0 10px;
}

/* Profil Resmi ve Bilgi Stilleri */
.profile-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #1a73e8;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.2);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.3);
}

.profile-info {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-name {
    color: #1a73e8;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(26, 115, 232, 0.15);
    transform: translateX(5px);
}

.detail-item i {
    color: #1a73e8;
    width: 16px;
    text-align: center;
}

/* Uzmanlık Alanları Stilleri */
.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.expertise-tag {
    background: linear-gradient(45deg, #1a73e8, #3498db);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.expertise-tag:hover {
    background: linear-gradient(45deg, #1565c0, #1a73e8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
}

/* Responsive Profil Stilleri */
@media (max-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
    
    .profile-title {
        font-size: 0.9rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .expertise-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .expertise-areas {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 0;
    }

    .team-member {
        padding: 20px;
    }

    .member-header h3 {
        font-size: 1.3rem;
    }
}

/* Neden Biz Bölümü */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.5;
}

.why-us-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-us-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 40px 0;
    }

    .why-us-feature {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-content h3 {
        font-size: 1.8rem;
    }
}

/* Misyon ve Vizyon Bölümü */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission-box,
.vision-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.mission-box:last-child,
.vision-box:last-child {
    margin-bottom: 0;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00bfff);
}

.mission-box h2,
.vision-box h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.mission-box h2::after,
.vision-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00bfff);
    border-radius: 3px;
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
}

/* Misyon Detay Bölümü */
.mission-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mission-paragraph {
    padding: 40px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.mission-paragraph:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.mission-paragraph h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    background: linear-gradient(45deg, #2C3E50, #4A4A4A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-paragraph h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FF6B35, #FF8C61);
    transition: width 0.3s ease;
}

.mission-paragraph:hover h3::after {
    width: 100px;
}

.mission-paragraph p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.mission-paragraph:hover p {
    color: #2C3E50;
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-text {
        gap: 40px;
    }

    .mission-paragraph {
        padding: 30px 20px;
    }

    .mission-paragraph h3 {
        font-size: 1.8rem;
    }

    .mission-paragraph p {
        font-size: 1rem;
    }
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
    text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 40%;
    right: 25%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 30%;
    right: 35%;
    animation-delay: 5s;
}

.mission-text:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 30px rgba(41, 128, 185, 0.3);
    border-color: rgba(41, 128, 185, 0.3);
}

.mission-paragraph:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 4px rgba(41, 128, 185, 0.3);
    transform: translateY(-5px);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(41, 128, 185, 0.2);
    border-color: rgba(41, 128, 185, 0.3);
    background: rgba(17, 34, 64, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        text-shadow: 0 0 20px rgba(41, 128, 185, 0.5);
    }

    100% {
        transform: translateY(0) rotate(0deg);
        text-shadow: 0 0 10px rgba(41, 128, 185, 0.3);
    }
}

@keyframes waterDrop {
    0% {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    40% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }

    60% {
        opacity: 0.7;
    }

    100% {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .mission-section {
        padding: 80px 0;
    }

    .mission-text {
        width: 90%;
        padding: 30px;
    }

    .mission-paragraph {
        font-size: 1.1rem;
        padding: 15px;
    }

    .floating-icon {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-text {
        padding: 25px;
        border-radius: 10px;
    }

    .mission-paragraph {
        font-size: 1rem;
        line-height: 1.7;
        padding: 12px;
    }

    .floating-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }

    .mission-text {
        padding: 20px;
        border-radius: 8px;
    }

    .mission-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 10px;
    }

    .floating-icon {
        font-size: 16px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Header & Navigation */
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

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

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 30px;
        height: 2px;
        background-color: #333;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        transform: translateY(-8px);
    }

    .navbar-toggler-icon::after {
        transform: translateY(8px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 20px 20px;
        transition: all 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        color: #333;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #1a73e8;
        background: rgba(26, 115, 232, 0.1);
        padding-left: 1.5rem;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
        pointer-events: none;
    }

    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member {
        margin-bottom: 2rem;
    }
}

/* General Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .nav-link:hover {
        background: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* High DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .logo,
    .hero-title,
    .section-title {
        font-weight: 600;
    }
}

/* CV Sayfası Stilleri */
.cv-section {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 100vh;
}

.cv-photo {
    text-align: center;
    margin-bottom: 30px;
}

.profile-photo {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cv-content {
    padding-left: 40px;
}

.cv-name {
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cv-title {
    font-size: 1.5rem;
    color: #FF6B00;
    font-weight: 600;
    margin-bottom: 40px;
    border-bottom: 3px solid #FF6B00;
    padding-bottom: 15px;
    display: inline-block;
}

.cv-section-content {
    margin-bottom: 40px;
}

.cv-section-content h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.cv-section-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FF6B00;
}

.cv-section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.cv-back {
    margin-top: 50px;
    text-align: left;
}

.cv-back .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cv-back .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

/* Responsive CV */
@media (max-width: 768px) {
    .cv-section {
        padding: 100px 0 60px;
    }
    
    .cv-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .cv-name {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .cv-title {
        font-size: 1.3rem;
        text-align: center;
        display: block;
    }
    
    .profile-photo {
        width: 250px;
        height: 320px;
    }
    
    .cv-section-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .cv-back {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cv-name {
        font-size: 2rem;
    }
    
    .cv-title {
        font-size: 1.1rem;
    }
    
    .profile-photo {
        width: 200px;
        height: 280px;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: none;
        color: #000;
    }
}

/* Goals Section Styles */
.goals-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #2C3E50, transparent);
}

.goal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1);
    color: #3498DB;
}

.goal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C3E50;
    position: relative;
    padding-bottom: 10px;
}

.goal-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #FF6B35, #FF8C61);
    transition: width 0.3s ease;
}

.goal-card:hover h3::after {
    width: 100px;
}

.goal-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.goal-card:hover p {
    color: #2C3E50;
}

@media (max-width: 991px) {
    .goal-card {
        margin-bottom: 30px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #FF6B35, #FF8C61);
    color: #fff;
    padding-left: 25px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 4px solid #2C3E50;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
    }

    .dropdown-item {
        padding: 8px 15px;
        color: #2C3E50;
    }

    .dropdown-item:hover {
        background: linear-gradient(45deg, #FF6B35, #FF8C61);
        color: #fff;
    }
}

.development-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.development-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #2C3E50, transparent);
}

.development-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.development-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.development-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF6B35;
}

.development-text {
    max-width: 900px;
    margin: 0 auto;
}

.development-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 2.2;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: justify;
}

.development-text .centered-paragraph {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .development-section {
        padding: 60px 0;
    }

    .development-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .development-text p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.8;
        letter-spacing: 0.3px;
    }
}

.hero-quote .first-quote {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s, fadeOut 1s ease forwards 4s;
}

.hero-quote .first-quote:last-of-type {
    margin-bottom: 1.5rem;
}

.hero-quote .first-quote .color-change {
    display: inline-block;
    color: #007bff;
    animation: waveColorChange 2s ease-in-out forwards;
    animation-delay: calc(var(--delay) * 2);
}

.hero-quote .first-quote .blue-text {
    color: #007bff;
    animation: none;
}

@keyframes waveColorChange {
    0% {
        color: #007bff;
    }

    50% {
        color: #ffffff;
    }

    100% {
        color: #ffffff;
    }
}

.hero-quote .second-quote {
    font-size: 3.5rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 4.5s;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-quote .second-quote .orange-text {
    display: inline-block;
    animation: colorToOrange 1s ease forwards 5s;
}

@keyframes colorToOrange {
    0% {
        color: #ffffff;
    }

    100% {
        color: #FF8C00;
    }
}

/* Test Contact Section */
.test-contact {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.test-contact p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 18px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .service-category-card {
        padding: 30px 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .category-icon i {
        font-size: 24px;
    }

    .service-category-card h2 {
        font-size: 20px;
    }

    .test-contact {
        margin-top: 30px;
        padding: 20px;
    }

    .test-contact p {
        font-size: 16px;
    }
}

.service-group .contact-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--light-orange);
    border-radius: 8px;
    font-style: italic;
    color: var(--dark-orange);
    text-align: center;
    border: 1px solid var(--orange);
}

@media (max-width: 768px) {
    .service-group .contact-info {
        margin-top: 1rem;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 0.5rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }

    .hero-content p {
        font-size: 0.4rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        padding: 0;
    }

    .hero-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 0 1rem;
    }

    .hero-quote .quote-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .hero-quote .first-quote {
        margin-bottom: 0.8rem;
    }

    .hero-quote .second-quote {
        font-size: 1.1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 2rem;
}

.email-address,
.address {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    padding: 1rem;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1rem;
}

.email-address i,
.address i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {

    .email-address,
    .address {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .email-address {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Image and Text Section */
.image-text-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.image-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 133, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 0, 0.04) 0%, transparent 50%);
    animation: elegantFloat 25s ease-in-out infinite;
}

@keyframes elegantFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) rotate(0.5deg);
        opacity: 0.95;
    }
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.4s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 107, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 25px;
    transition: all 0.6s ease;
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
}

.image-container:hover .main-image {
    transform: scale(1.02);
    filter: brightness(1) contrast(1.1) saturate(1.2);
}

.description-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-family: 'Poppins', sans-serif;
}

.description-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Image and Text Section */
@media (max-width: 991px) {
    .image-text-section {
        padding: 80px 0;
    }
    
    .description-content {
        padding: 30px 0 0 0;
    }
}

@media (max-width: 768px) {
    .image-text-section {
        padding: 60px 0;
    }
    
    .image-container {
        margin-bottom: 30px;
        border-radius: 20px;
    }
    
    .main-image {
        max-height: 400px;
        border-radius: 20px;
    }
    
    .description-content {
        padding: 0 15px;
    }
    
    .description-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .image-text-section {
        padding: 40px 0;
    }
    
    .image-container {
        margin: 0 10px 30px 10px;
        border-radius: 15px;
    }
    
    .main-image {
        max-height: 300px;
        border-radius: 15px;
    }
    
    .description-content {
        padding: 0 10px;
    }
    
    .description-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .image-container {
        margin: 0 5px 20px 5px;
    }
    
    .main-image {
        max-height: 250px;
    }
    
    .description-text {
        font-size: 13px;
        line-height: 1.5;
    }
}