:root {
    --primary-color: #2E7D32;
    --secondary-color: #81C784;
    --accent-color: #FFB74D;
    --text-color: #333;
    --light-bg: #F1F8E9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent body scrolling when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

/* Yaratıcı Navbar Tasarımı */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 0 0 50px 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled::before {
    width: 250px;
    opacity: 0.15;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 2rem;
    background: transparent;
    border-radius: 50px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.navbar-brand img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navbar-brand span {
    font-size: 1.3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin: 0 5px;
}

.nav-link:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link::before {
    display: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav.left {
    margin-right: auto;
}

.navbar-nav.right {
    margin-left: auto;
}

.btn-primary {
    border-radius: 8px !important;
    padding: 0.5rem 1.5rem !important;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .navbar {
        position: sticky;
        top: 0;
    }
    
    .navbar::before {
        display: none;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -280px; /* Start off-screen */
        width: 280px;
        height: 100vh;
        background: white;
        padding: 1.5rem;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 1050;
        display: block !important; /* Always display but off-screen */
    }
    
    .navbar-collapse.show {
        left: 0; /* Slide in when shown */
    }

    /* Dark overlay when sidebar is open */
    .navbar-collapse-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .navbar-collapse-backdrop.show {
        display: block;
        opacity: 1;
    }
    
    /* Logo area in sidebar */
    .navbar-collapse .sidebar-logo {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .navbar-collapse .sidebar-logo span {
        font-size: 1.1rem;
        font-weight: 500;
        display: inline-block;
        max-height: 24px;
        overflow: hidden;
        background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .navbar-nav.left,
    .navbar-nav.right {
        margin: 0;
        padding: 0;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        text-align: left;
        border: 1px solid rgba(0,0,0,0.1);
        margin: 0;
    }
    
    .nav-link:hover {
        background: var(--light-bg);
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: var(--primary-color);
        color: white !important;
    }
    
    .dropdown-menu {
        background: var(--light-bg);
        border: none;
        border-radius: 8px;
        margin-top: 5px;
        padding: 0.5rem;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-radius: 6px;
        margin: 2px 0;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
    }
    
    .dropdown-item:hover {
        background: white;
        transform: translateX(5px);
    }
    
    .navbar-toggler {
        margin-left: auto;
        border: none;
        padding: 0.25rem 0.5rem; /* Slightly reduced padding */
        flex-shrink: 0; /* Prevent toggler from shrinking */
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 10px;
        padding: 12px !important;
    }
}

/* Header Contact Info */
.header-contact {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header-contact a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-contact a:hover {
    color: var(--accent-color);
}

.header-contact i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.social-icons a {
    color: white;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Add mobile responsive styling for header contact */
@media (max-width: 767px) {
    .header-contact {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .header-contact .container .row .col-md-6:first-child {
        margin-bottom: 0.3rem;
    }
    
    .header-contact .d-flex.gap-4 {
        flex-direction: column;
        gap: 0.3rem !important;
    }
    
    .header-contact a {
        font-size: 0.8rem;
        white-space: nowrap;
        display: block;
        padding: 2px 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 991px) {
    .navbar::before {
        width: 200px;
    }
    
    .navbar.scrolled::before {
        width: 180px;
    }

    .navbar-brand {
        margin: 0;
        padding: 0.5rem 0.5rem; /* Reduced horizontal padding */
        gap: 0.4rem; /* Slightly reduce gap */
        flex-shrink: 1; /* Allow brand to shrink */
        min-width: 0; /* Allow shrinking below content size */
    }

    .navbar-brand img {
        height: 35px; /* Reduced height */
        width: auto !important; /* Override inline width, maintain aspect ratio */
        max-width: 90px; /* Cap image width */
        object-fit: contain; /* Ensure consistent scaling */
    }

    .navbar-brand span {
        font-size: 0.9rem; /* Reduced font size */
        display: inline-block;
        max-height: 35px; /* Align with image height */
        overflow: hidden;
        background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        white-space: nowrap; /* Prevent text wrapping */
        text-overflow: ellipsis; /* Add ellipsis if too long */
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Yaratıcı Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 20px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,00), rgba(0,0,0,0.00));
}

.hero-content-right {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-left: -2rem;
    position: relative;
    z-index: 2;
}

.hero-logo-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1s ease;
}

.hero-logo-animation.hide {
    opacity: 0;
    pointer-events: none;
}

.hero-logo-animation video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-services {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.hero-services.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo-text {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.services-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.services-list li i {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.services-list li:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.services-list li span {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .row.flex-column-reverse.flex-lg-row {
        flex-direction: column !important;
    }
    
    .hero-video-container {
        height: 40vh;
        margin-top: 0;
        margin-bottom: 2rem;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-content-right {
        height: auto;
        margin: 0;
        padding: 2rem 1rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .services-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .services-list {
        margin-bottom: 2rem;
    }
    
    .services-list li {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .services-list li i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .services-list li span {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Additional media query for very small screens */
@media (max-width: 576px) {
    .services-title {
        font-size: 1.4rem;
    }

    .hero-logo-text {
        font-size: 1.8rem;
    }

    .navbar-brand span {
        font-size: 0.9rem;
    }

    .navbar-collapse .sidebar-logo span {
        font-size: 1rem;
    }

    .dropdown-item {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* Yaratıcı Servis Kartları */
.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: white;
}

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.service-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
    background: var(--light-bg);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    text-align: center;
}

.service-cta {
    margin-top: auto;
}

@media (max-width: 991px) {
    .service-card {
        flex-direction: column !important;
    }

    .service-image {
        min-height: 300px;
    }

    .service-content {
        padding: 2rem;
    }

    .service-badge {
        top: 1rem;
        right: 1rem;
    }
}

/* Yaratıcı Hakkımızda Bölümü */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    opacity: 0.05;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    max-width: 300px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 0.3;
}

.about-text {
    padding: 2.5rem;
}

.about-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: white;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-content h5 {
    transform: translateX(5px);
}

.feature-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-image {
        max-width: 250px;
        margin-bottom: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Yaratıcı Butonlar */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

/* Yaratıcı İletişim Formu */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-control {
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Yaratıcı Footer */
footer {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 0;
    border-top: 3px solid var(--primary-color);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    opacity: 0.03;
    background-size: cover;
    background-position: center;
}

.footer-widget {
    position: relative;
    margin-bottom: 3rem;
}

.footer-widget h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.footer-widget p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter .form-control {
    background: var(--light-bg);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.footer-newsletter .form-control::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}

.footer-newsletter .btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-newsletter .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--light-bg);
    padding: 1.5rem 0;
    margin-top: 3rem;
    position: relative;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-color);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-logo span {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 2rem;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Neden Bizimle Çalışmalısınız Bölümü */
.why-choose-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    opacity: 0.03;
    background-size: cover;
    background-position: center;
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-choose-card:hover {
    transform: translateY(-10px);
}

.why-choose-card:hover::before {
    opacity: 0.05;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.why-choose-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
}

.why-choose-card:hover .why-choose-icon i {
    color: white;
    transform: scale(1.1);
}

.why-choose-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-title {
    transform: translateX(10px);
}

.why-choose-text {
    color: var(--text-color);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

@media (max-width: 991px) {
    .why-choose-card {
        margin-bottom: 2rem;
    }
}

/* Etkinlikler ve Galeri Bölümü */
.events-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    opacity: 0.03;
    background-size: cover;
    background-position: center;
    animation: slowZoom 30s infinite alternate;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 2rem;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.event-card:hover .event-overlay-content {
    transform: translateY(0);
}

.event-content {
    padding: 2rem;
    position: relative;
}

.event-date {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.event-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.event-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--primary-color);
}

/* Galeri Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

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

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.sticky-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sticky-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-button:hover::before {
    transform: translateY(0);
}

.sticky-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.whatsapp-button {
    background: #25D366;
}

.search-button {
    background: var(--accent-color);
}

.sticky-button .tooltip {
    position: absolute;
    right: 70px;
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sticky-button .tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.sticky-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@media (max-width: 768px) {
    .sticky-buttons {
        bottom: 20px;
        right: 20px;
    }

    .sticky-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* İletişim Bölümü Stilleri */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    opacity: 0.03;
    background-size: cover;
    background-position: center;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-info-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card:hover .contact-info-icon i {
    color: white;
    transform: scale(1.1);
}

.contact-info-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-info-text {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-info-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.03;
    z-index: 0;
}

.contact-form h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-form .form-control {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-form .form-control:focus {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    background: white;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
    .contact-form {
        margin-bottom: 2rem;
    }
}

/* Footer Logo Stilleri */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    transition: transform 0.3s ease;
}

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

.footer-logo span {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 2rem;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer-logo {
        align-items: center;
        text-align: center;
    }
}

/* Referanslar Bölümü Stilleri */
.references-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    overflow: hidden;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    opacity: 0.03;
    background-size: cover;
    background-position: center;
}

.client-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.client-logo:hover::before {
    opacity: 0.05;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.client-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author-info h5 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    .client-logo {
        margin-bottom: 2rem;
    }
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Servis Bilgi Stilleri */
.service-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.service-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Dropdown Menu Stilleri */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-link.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-radius: 6px;
        margin: 2px 0;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 991px) {
    .navbar-brand {
        margin: 0;
        padding: 0.5rem 0.5rem; /* Reduced horizontal padding */
        gap: 0.4rem; /* Slightly reduce gap */
        flex-shrink: 1; /* Allow brand to shrink */
        min-width: 0; /* Allow shrinking below content size */
    }
    
    .navbar-brand img {
        height: 35px; /* Reduced height */
        width: auto !important; /* Override inline width, maintain aspect ratio */
        max-width: 90px; /* Cap image width */
        object-fit: contain; /* Ensure consistent scaling */
    }
    
    .navbar-brand span {
        font-size: 0.9rem; /* Reduced font size */
        display: inline-block;
        max-height: 35px; /* Align with image height */
        overflow: hidden;
        background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        white-space: nowrap; /* Prevent text wrapping */
        text-overflow: ellipsis; /* Add ellipsis if too long */
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav.left,
    .navbar-nav.right {
        margin: 0;
        padding: 0;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        text-align: left;
        border: 1px solid rgba(0,0,0,0.1);
        margin: 0;
    }
    
    .nav-link:hover {
        background: var(--light-bg);
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: var(--primary-color);
        color: white !important;
    }
    
    .dropdown-menu {
        background: var(--light-bg);
        border: none;
        border-radius: 8px;
        margin-top: 5px;
        padding: 0.5rem;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-radius: 6px;
        margin: 2px 0;
    }
    
    .dropdown-item:hover {
        background: white;
        transform: translateX(5px);
    }
    
    .navbar-toggler {
        margin-left: auto;
        border: none;
        padding: 0.25rem 0.5rem; /* Slightly reduced padding */
        flex-shrink: 0; /* Prevent toggler from shrinking */
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 10px;
        padding: 12px !important;
    }
}

.about-section {
    position: relative;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    opacity: 0.03;
    background-size: cover;
    background-position: center;
    animation: slowZoom 30s infinite alternate;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    background: white;
    padding: 2rem;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 0 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex: 1;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-content h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-stats {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .experience-badge {
        padding: 1rem;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
}

.service-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.services-list li {
    padding: 0;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.services-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.services-list li i {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.services-list li:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .navbar-brand {
        margin: 0;
        padding: 0.5rem 0.5rem; /* Reduced horizontal padding */
        gap: 0.4rem; /* Slightly reduce gap */
        flex-shrink: 1; /* Allow brand to shrink */
        min-width: 0; /* Allow shrinking below content size */
    }
    
    .navbar-brand img {
        height: 35px; /* Reduced height */
        width: auto !important; /* Override inline width, maintain aspect ratio */
        max-width: 90px; /* Cap image width */
        object-fit: contain; /* Ensure consistent scaling */
    }
    
    .navbar-brand span {
        font-size: 0.9rem; /* Reduced font size */
        display: inline-block;
        max-height: 35px; /* Align with image height */
        overflow: hidden;
        background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        white-space: nowrap; /* Prevent text wrapping */
        text-overflow: ellipsis; /* Add ellipsis if too long */
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav.left,
    .navbar-nav.right {
        margin: 0;
        padding: 0;
    }
    
    .nav-item {
        margin: 5px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        text-align: left;
        border: 1px solid rgba(0,0,0,0.1);
        margin: 0;
    }
    
    .nav-link:hover {
        background: var(--light-bg);
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: var(--primary-color);
        color: white !important;
    }
    
    .dropdown-menu {
        background: var(--light-bg);
        border: none;
        border-radius: 8px;
        margin-top: 5px;
        padding: 0.5rem;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-radius: 6px;
        margin: 2px 0;
    }
    
    .dropdown-item:hover {
        background: white;
        transform: translateX(5px);
    }
    
    .navbar-toggler {
        margin-left: auto;
        border: none;
        padding: 0.25rem 0.5rem; /* Slightly reduced padding */
        flex-shrink: 0; /* Prevent toggler from shrinking */
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 10px;
        padding: 12px !important;
    }
}