body {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: #E9EFF5B2;
    text-decoration: none !important;
}

a {
    text-decoration: none !important;
}

.package-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.testimonial {
    padding: 20px;
    background: #f9f9f9;
    margin-bottom: 20px;
    border-left: 4px solid #5c2d91;
}

.footer {
    background: #111;
    color: #ccc;
    padding: 40px 0;
    font-size: 14px;
}

.footer a {
    color: #ccc;
}

.blog-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 20px;
}

.btn-orange {
    background-color: #f7941d;
    color: #fff;
    border: none;
}

.navbar {
    margin: 0px;
    padding-top: 9px;
    padding-bottom: 4px;
}

.text-black {
    color: black !important;
}

.top-nav {
    background-color: #F1F5F9;
    padding: 0px;
}

.d-flex {
    display: flex;
}

.navbar-brand {
    padding: 5px 15px !important;
}

.custom-toggle {
    background-color: #5C43AB;
    border: none;
    border-radius: 0px;
    padding: 10px 12px;
    margin: 8px;
    color: white;
    transition: background-color 0.3s ease;
}

.custom-toggle:hover,
.custom-toggle:focus {
    background-color: #4a3490;
    outline: none;
}

.custom-toggle .icon-bar {
    background-color: white !important;
    color: white !important;
    height: 3px;
    border-radius: 1px;
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: 30px !important;
        margin-top: 5px !important;
    }

    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 10px;
}

.account-btn {
    background-color: rgba(92, 67, 171, .1);
    color: #5C43AB;
    border: 1px solid #5C43AB;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
}

@media (max-width: 767px) {
    .mobile-controls {
        display: flex;
    }
}

.cart-count {
    color: #fff;
    padding: 6px;
    margin-left: 5px;
    width: 24px;
    height: 24px;
    opacity: 1;
    border-radius: 3px;
    background: #F87B3D;
}

.head-text span {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
}

.head-text h2 {
    margin-top: 5px;
    font-family: Sora;
    font-weight: 600;
    font-size: 21px;
    line-height: 100%;
    text-align: center;
}

#darkModeToggle {
    background: transparent !important;
}

#slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    color: white;
}

.slider-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -3;
    object-fit: cover;
}

.slider-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 14, 23, 0.5) 0%, rgba(11, 14, 23, 0.3) 100%);
    z-index: -2;
}

.slider-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

#slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 18, 43, 0.7);
    z-index: -1;
}

.slider-text {
    position: relative;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding-left: 15px;
}

.slide.active {
    visibility: visible;
    opacity: 1;
}

.slide-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #F87B3D;
    /* Brand Orange */
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 10px;
    background: rgba(248, 123, 61, 0.1);
    border-radius: 4px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.1s;
    max-width: 800px;
}

.slide p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.slide-btn-group {
    display: flex;
    gap: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.btn-slide {
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #081131;
}

.btn-solid {
    background: #F87B3D;
    color: white;
    border: 2px solid #F87B3D;
    box-shadow: 0 4px 15px rgba(248, 123, 61, 0.3);
}

.btn-solid:hover {
    background: #e06020;
    border-color: #e06020;
    transform: translateY(-2px);
}

.slide.active .slide-subtitle,
.slide.active h1,
.slide.active p,
.slide.active .slide-btn-group {
    transform: translateY(0);
    opacity: 1;
}

.slider-item {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-height: 500px;
    max-width: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 1s ease 0.3s;
}

.slide.active .slider-item {
    opacity: 1;
    right: 50px;
}

@media (max-width: 991px) {
    .slide h1 {
        font-size: 36px;
    }

    .slide p {
        font-size: 16px;
        max-width: 100%;
    }

    .slide-btn-group {
        flex-direction: column;
        width: 100%;
    }

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

@media (max-width: 1200px) {
    .slider-item {
        max-width: 350px;
        right: 2%;
    }

    .slider-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .slider-item {
        display: none;
    }

    .slide h1 {
        max-width: 100%;
    }

    .slider-text h1 {
        font-size: 32px;
    }

    .slider-text p {
        max-width: 100%;
    }
}

.search {
    border-radius: 8px;
    background: #FFFFFF !important;
    z-index: 99 !important;
    margin-top: -15px;
    padding: 20px;
}

.campaign-search {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.campaign-search span {
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.campaign-header {
    flex-basis: 100%;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .campaign-search span {
        min-width: calc(50% - 5px);
    }

    .input-lg {
        max-width: 100%;
    }
}

.input-lg {
    border: 1px solid #66709326;
}

@media (max-width: 480px) {
    .campaign-search span {
        min-width: 100%;
    }
}

@media (max-width: 850px) {
    .service-card {
        margin-top: 20px;
    }
}

.services {
    margin-top: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.service-card-3 h4,
.service-card-3 p,
.service-card-4 h4,
.service-card-4 p {
    padding: 0 20px;
}

.service-card .icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 20px 10px;
    display: block;
}

.big-card-img {
    text-align: center;
}

.big-card-img-2 {
    margin-top: 50px;
}

.big-card-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

#services .service-card-1 {
    background-color: #8FBDFA;
    border-radius: 8px;
    margin-bottom: 30px;
}

#services .service-card-2 {
    background-color: #A293D6;
    border-radius: 8px;
}

#services .service-card-3 {
    background-color: #ED94B64D;
    border-radius: 8px;
}

#services .service-card-4 {
    background-color: #B8E8AC;
    border-radius: 8px;
}

#services .service-card .big-card-head h4 {
    font-family: Sora, sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.2;
    color: #FFFFFF;
    padding: 10px 20px;
    text-align: left;
}

#services .service-card .big-card-head p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFFFF;
    padding: 10px 20px;
    text-align: left;
}

@media (max-width: 850px) {
    .paketler .container .col-md-3 {
        margin-top: 10px;
    }
}

#paketler {
    background-color: #E9EFF5B2;
    padding: 40px 0;
}

.paketler {
    margin: 50px 0;
}

.package-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex: 1;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.package-header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.package-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.package-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.package-price {
    text-align: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.price-amount {
    font-family: Sora;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    color: #333;
    padding: 25px;
    border-radius: 9px;
    background-color: #ED94B626;
    display: flex;
    justify-content: space-between;
}

.price-period {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.package-features {
    padding: 15px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e8f4fd;
    border: 2px solid #4a90e2;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background-color: #4a90e2;
    border-radius: 50%;
}

.package-button {
    margin: 20px;
    margin-top: 15px;
}

.btn-start {
    background: #F87B3D;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-start:hover {
    background-color: rgba(248, 123, 62, .1);
    color: #F87B3D;
    border: 1px solid #F87B3D;
}

.btn-start i {
    margin-left: 8px;
}

.stats {
    margin: 80px 0px;
}

.stats .d-flex {
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 9px;
}

.stats-image {
    align-self: flex-end !important;
}

.stats-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stats-text b {
    margin-top: auto;
}

.stats-text b {
    align-self: flex-start !important;
}

.stats-text {
    max-width: 45%;
}

.stats-text p {
    max-width: 100%;
}

.stats .col-md-6 {
    margin: 10px 0
}

.stats .d-flex {
    align-items: flex-start;
    height: 330px
}

.stats .d-flex .stats-text {
    padding: 20px
}

.stats .d-flex .stats-text h4 {
    font-family: Sora;
    font-weight: 600;
    font-size: 21px;
    line-height: 100%;
    color: #081131;
}

.stats .d-flex .stats-text span {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #667093;
}

.stats .d-flex .stats-text p {
    margin: 30px 0;
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #667093;
}

.stats .d-flex .stats-text b {
    font-family: Inter;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    display: block;
    text-align: left;
    margin-top: auto;
}

@media (max-width: 850px) {
    .about .text-area {
        margin: 0 !important;
        max-width: 100% !important;
    }

    .about .about-img img {
        margin-top: 25px;
    }
}

#about {
    margin: 70px 0;
}

#about .text-area {
    margin-top: 70px;
    max-width: 500px;
    margin-right: 85px;
}

#about .text-area span {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #667093;
}

#about .text-area h4 {
    font-family: Sora;
    font-weight: 600;
    font-size: 27px;
    line-height: 100%;
    color: #081131;
}

#about .text-area p {
    margin-top: 30px;
    font-family: Inter;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    color: #667093;
}

#about .text-area .btn {
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 9px;
    background-color: #F87B3D;
    border: none;
}

.blog {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 30px;
}

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

.blog-card.card-1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    height: 480px;
}

.blog-card.card-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 225px;
}

.blog-card.card-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-card.card-4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blog-card.card-5 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.blog-card.card-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.blog-card-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.blog-card-content a {
    text-decoration: none;
    color: white;
}

.blog-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    background: #F87B3D;
}

.blog-card.card-5 .blog-category,
.blog-card.card-6 .blog-category {
    background: rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
}

.blog-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.blog-card.card-5 .blog-description,
.blog-card.card-6 .blog-description {
    opacity: 0.7;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

@media (max-width: 768px) {
    .big-card-img img {
        margin-block-start: 100px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-description {
        font-size: 13px;
    }

    .blog-people {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .package-title {
        font-size: 16px !important;
        font-weight: 600;
        color: #333;
        margin: 0 0 5px 0;
    }
}

#testimonials {
    margin: 70px 0;
}

.testimonials-slick .slick-slide {
    transition: all 0.3s ease;
    filter: blur(2px);
    opacity: 0.5;
}

.testimonials-slick .slick-center {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.05);
}

#testimonials .item {
    background-color: white;
    border-radius: 4px;
    margin: 20px
}

#testimonials .item .item-header img {
    border-radius: 9px;
    width: 70px;
}

#testimonials .item .item-header h4 {
    font-family: Sora;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #081131;
}

#testimonials .item .item-header span {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    color: #667093;
}

#testimonials .item .item-header {
    border-bottom: 1px solid #ED94B626;
    padding: 20px;
}

#testimonials .item .item-text {
    padding: 20px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #667093;
}

#altyapilar {
    margin-top: 50px;
}

#altyapilar .altyapilar-slick {
    padding: 40px 0px;
}

#altyapilar .altyapilar-slick img {
    background: #FFFFFF4D;
    border: 1px solid #ED94B626;
    border-radius: 4px;
    padding: 25px 35px;
    margin: 0;
    height: 100px;
    width: 260px;
    object-fit: contain;
    display: block;
}

#altyapilar .altyapilar-slick .slick-slide {
    margin: 0 2px;
}

@media (max-width: 768px) {
    #altyapilar .altyapilar-slick img {
        height: 50px;
        width: 120px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    #altyapilar .altyapilar-slick img {
        height: 40px;
        width: 100px;
        padding: 8px 12px;
    }
}

.social-area .container {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 9px;
    margin-bottom: -50px;
    z-index: 99;
}

.social-area .container h4 {
    font-family: Sora;
    font-weight: 600;
    font-size: 19px;
    line-height: 100%;
}

.social-area .container p {
    color: #667093;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.social-area nav {
    margin-right: 30px;
    margin-top: 10px;
}

.social-area nav a {
    margin: 5px;
    background-color: #66709340;
    transition: .2s;
    border: 1px solid #66709366;
    border-radius: 50%;
    padding: 10px;
    color: #667093;
    font-weight: lighter;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-area nav a:hover {
    background-color: #5442A0;
    color: white;
}

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

    .package-title {
        font-size: 16px !important;
        font-weight: 600;
        color: #333;
        margin: 0 0 5px 0;
    }
}

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

    .package-title {
        font-size: 16px !important;
        font-weight: 600;
        color: #333;
        margin: 0 0 5px 0;
    }
}

footer {
    background-color: #0A143B;
    padding-top: 40px;
    z-index: -9;
}

footer .footer-top {
    border-bottom: 1px solid #7055C733;
    padding-bottom: 30px;
}

footer .footer-top-2 .col-md-4 .list-group .list-group-item {
    border: none;
    background: transparent;
    margin: 30px 0px;
    padding: 0px;
    font-family: Sora;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: white;
}

footer .footer-top-2 .col-md-4 .list-group .list-group-item img {
    border: 1px solid #7055C74D;
    background: #7055C733;
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    width: 38px;
}

footer .footer-top .footer-top-buttons {
    color: white;
    backdrop-filter: blur(4px);
    background: linear-gradient(92.21deg, rgba(112, 85, 199, 0.9) 1.85%, rgba(112, 85, 199, 0.7) 100.97%);
    border-radius: 6px;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    padding: 10px 20px;
    margin-left: 15px;
    text-decoration: none;
}

footer .footer-top-2 {
    border-bottom: 1px solid #7055C733;
    padding-bottom: 30px;
    margin-top: 20px;
}

footer .footer-top-2 .footer-info-icons {
    background: #7055C733;
    border: 1px solid #7055C74D;
    padding: 10px;
}

footer .footer-menu .list {
    margin: 0px;
    padding: 0px;
}

footer .footer-menu .list .list-group-item {
    border: none;
    background: transparent;
    margin: 15px 0px;
    padding: 0px;
    font-family: Sora;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
}

footer .footer-menu .list .list-group-item a {
    text-decoration: NONE;
    color: #FFFFFF99;
}

footer .footer-bottom {
    padding: 30px 0px;
}

footer .footer-bottom-menu nav {
    display: flex;
    justify-content: space-between;
    border: 1px solid #FFFFFF26;
    background: #FFFFFF1A;
    padding: 20px;
    border-radius: 8px;
}

footer .footer-bottom-menu nav a {
    color: white;
}

footer .footer-menu h4 {
    color: white;
    font-family: Sora;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
}

footer .copyright {
    border-top: 1px solid #7055C733;
    color: white;
    padding: 15px;
    margin: 0px;
    background-color: #081233;
}

footer .copyright p {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

@media (max-width: 768px) {

    .slider-text .slide .slider-item {
        display: none;
    }

    #search input {
        width: 100% !important;
    }

    .campaign-search strong {
        display: none;
    }

    .campaign-search {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .campaign-search span {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 5px 10px;
    }
}

@media (max-width: 1024px) {
    .stats-image {
        max-width: 50%;
        align-self: flex-end !important;
    }

    .stats-image img {
        height: 199px;
        align-self: flex-end !important;
    }

    #about .text-area {
        margin: 0px;
    }
}

.vdc-pro-services {
    padding: 80px 20px;
    text-align: center;
    background: #E9EFF5;
}

.vdc-pro-title {
    font-family: Sora;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #081131;
}

.vdc-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

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

@media (max-width: 600px) {
    .vdc-pro-grid {
        grid-template-columns: 1fr;
    }
}

.vdc-pro-card {
    position: relative;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: left;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.vdc-pro-card:nth-child(1) {
    background: linear-gradient(145deg, #8FBDFA 0%, #5C8FE0 100%);
}

.vdc-pro-card:nth-child(2) {
    background: linear-gradient(145deg, #A293D6 0%, #7B68B8 100%);
}

.vdc-pro-card:nth-child(3) {
    background: linear-gradient(145deg, #F87B3D 0%, #E05A1C 100%);
}

.vdc-pro-card:nth-child(4) {
    background: linear-gradient(145deg, #4ECDC4 0%, #2EAA9B 100%);
}

.vdc-pro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.vdc-pro-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.vdc-pro-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.vdc-pro-card:hover::before {
    transform: scale(1.3);
}

.vdc-pro-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.vdc-pro-card h3 {
    font-family: Sora;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.vdc-pro-card p {
    font-family: Inter;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 24px;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.vdc-pro-link {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.vdc-pro-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .slide h1 {
        max-width: 100%;
        font-size: 24px;
    }

    .slider-text {
        padding-top: 80px;
        margin-top: -280px;
    }

    .slider-text p {
        max-width: 100%;
        font-size: 14px;
    }

    #slider {
        height: 500px;
    }

    .stats-text {
        max-width: 100%;
    }

    .stats .d-flex {
        flex-direction: column;
        height: auto;
    }

    .stats .d-flex .stats-text {
        padding: 15px;
    }

    .stats .d-flex .stats-text h4 {
        font-size: 18px;
    }

    .stats .d-flex .stats-text p {
        margin: 15px 0;
        font-size: 14px;
    }

    .social-area .row {
        text-align: center;
    }

    .social-area .col-md-4 {
        text-align: center !important;
        margin-top: 20px;
    }

    .social-area h4 {
        font-size: 18px;
    }

    .social-area p {
        font-size: 14px;
    }

    .footer-top-2 .list-group {
        margin-bottom: 20px;
    }

    .footer-menu {
        text-align: center;
    }

    .footer-menu h4 {
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-4 {
        margin-bottom: 15px;
    }

    .footer-bottom-menu nav {
        text-align: center !important;
    }

    .footer-bottom-menu nav a {
        display: block;
        margin: 10px 0;
    }

    .vdc-pro-services {
        padding: 40px 15px;
    }

    .vdc-pro-title {
        font-size: 24px;
    }

    .vdc-pro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vdc-pro-card {
        padding: 30px 20px;
    }

    .vdc-pro-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .vdc-pro-card h3 {
        font-size: 18px;
    }

    .vdc-pro-card p {
        font-size: 14px;
        line-height: 22px;
    }

    .head-text h2 {
        font-size: 18px;
    }

    .service-card .big-card-head h4 {
        font-size: 18px;
    }

    .service-card .big-card-head p {
        font-size: 14px;
    }

    .blog-card.card-1 {
        height: 350px;
    }

    .blog-card.card-2 {
        height: 200px;
        margin-bottom: 15px;
    }

    #testimonials {
        margin: 40px 0;
    }

    .altyapilar {
        margin: 40px 0;
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 20px;
    }

    .slider-text p {
        font-size: 13px;
    }

    .slider-text .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    #slider {
        height: 450px;
    }

    .vdc-pro-title {
        font-size: 20px;
    }

    .head-text h2 {
        font-size: 16px;
        padding: 0 10px;
    }

    .head-text span {
        font-size: 14px;
    }
}

.mt-60 {
    margin-top: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.w-60 {
    width: 60%;
}

.w-32 {
    width: 32%;
}

.mh-60 {
    max-height: 60px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mobile-nav-container {
    padding: 10px;
}

.mobile-nav-link {
    margin: 20px;
}

.header-separator {
    border-left: 1px solid rgba(102, 112, 147, 0.15);
    height: 30px;
    margin: 0 18px;
    position: relative;
    top: 10px;
}

.service-icon-img {
    max-height: 60px;
    margin-bottom: 10px;
}

.btn-examine {
    margin-top: 15px;
}

.customer-stars {
    margin-left: 20px;
    margin-top: 15px;
}

.footer-top-margin {
    margin-top: 70px;
}

.card-footer-img {
    margin-top: 7%;
}

.pl-3 {
    padding-left: 3px;
}

.mode-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(102, 112, 147, 0.1);
    color: #5C43AB;
    transition: all 0.3s ease;
    margin-left: 10px;
    margin-right: 10px;
}

.mode-toggle:hover {
    background: rgba(92, 67, 171, 0.2);
    transform: rotate(15deg);
}

body.dark-mode {
    background-color: #0B0E17 !important;
    color: #E2E8F0 !important;
}

body.dark-mode .navbar-default {
    background-color: #151A27 !important;
    border-color: #2D3748 !important;
}

body.dark-mode .navbar-default .navbar-nav>li>a {
    color: #E2E8F0 !important;
}

body.dark-mode #services .service-card-1,
body.dark-mode #services .service-card-2,
body.dark-mode #services .service-card-3,
body.dark-mode #services .service-card-4 {
    background: #1A202C !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode #services .service-card h4,
body.dark-mode #services .service-card p {
    color: #fff !important;
}

body.dark-mode .stats {
    background: #0B0E17 !important;
}

body.dark-mode .stats .d-flex,
body.dark-mode .stats .stats-text {
    background: #151A27 !important;
    border-radius: 12px;
}

body.dark-mode .stats .d-flex {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .stats h2,
body.dark-mode .stats span,
body.dark-mode .stats .b-text,
body.dark-mode .stats-text h4,
body.dark-mode .stats-text b {
    color: #fff !important;
}

body.dark-mode .stats p,
body.dark-mode .stats-text p,
body.dark-mode .stats-text span {
    color: #A0AEC0 !important;
}

body.dark-mode #testimonials {
    background-color: #0B0E17 !important;
}

body.dark-mode #testimonials .item,
body.dark-mode .testimonials-slick .item,
body.dark-mode .testimonials-slick .slick-slide .item {
    background-color: #151A27 !important;
    border: 1px solid #2D3748;
    color: #fff !important;
    padding: 20px;
    border-radius: 12px;
}

body.dark-mode #testimonials h2,
body.dark-mode #testimonials span {
    color: #fff !important;
}

body.dark-mode .item-header h5 {
    color: #fff !important;
}

body.dark-mode .item-header span {
    color: #8FBDFA !important;
}

body.dark-mode .item-text {
    color: #CBD5E0 !important;
}

body.dark-mode .vdc-pro-services {
    background-color: #0B0E17 !important;
}

body.dark-mode .vdc-pro-card {
    background: #151A27 !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .vdc-pro-card h3 {
    color: #fff !important;
}

body.dark-mode .vdc-pro-card p {
    color: #A0AEC0 !important;
}

body.dark-mode #footer,
body.dark-mode .footer-top,
body.dark-mode .footer-top-2,
body.dark-mode .footer-bottom,
body.dark-mode .copyright {
    background-color: #0B0E17 !important;
    border-color: #151A27 !important;
    color: #A0AEC0 !important;
}

body.dark-mode .footer h4 {
    color: #fff !important;
}

body.dark-mode .altyapilar {
    background-color: #0B0E17 !important;
    border-top: 1px solid #151A27;
}

body.dark-mode .search {
    background: #1A202C !important;
    border: 1px solid #2D3748;
}

body.dark-mode .search h3,
body.dark-mode .search p,
body.dark-mode .search label {
    color: #fff !important;
}

body.dark-mode .search input {
    background: #0F131F;
    border-color: #2D3748;
    color: #fff;
}

body.dark-mode .package-card {
    background: #1A202C !important;
    border: 1px solid #2D3748;
}

body.dark-mode .package-title,
body.dark-mode .package-price-value,
body.dark-mode .package-price-period {
    color: #fff !important;
}

body.dark-mode .package-subtitle,
body.dark-mode .package-feature-text {
    color: #CBD5E0 !important;
}

body.dark-mode .package-header {
    border-bottom: 1px solid #2D3748;
}

body.dark-mode .package-feature-item {
    border-bottom: 1px solid #2D3748;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5 {
    color: #fff !important;
}

body.dark-mode p,
body.dark-mode li {
    color: #CBD5E0;
}

body.dark-mode a {
    color: #8FBDFA;
}

body.dark-mode a:hover {
    color: #fff;
}

body.dark-mode .top-nav {
    background-color: #0B0E17 !important;
    border-bottom: 1px solid #2D3748;
}

body.dark-mode .navbar-brand img,
body.dark-mode .footer img,
body.dark-mode .altyapilar img {
    filter: brightness(0) invert(1) opacity(0.8);
}

body.dark-mode .mode-toggle {
    color: #F6E05E;
    background: transparent !important;
}

body.dark-mode .mode-toggle i::before {
    content: "\f185";
}

@media (max-width: 991px) {
    #slider {
        position: relative;
        height: 450px !important;
        min-height: 450px !important;
        padding-top: 60px !important;
        padding-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .slider-video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        transform: none;
        object-fit: cover;
        z-index: -3;
    }

    .slider-video-overlay {
        z-index: -2;
    }

    .slider-mask {
        display: none;
    }

    .slider-text {
        z-index: 10 !important;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide {
        position: relative !important;
        width: 100%;
        display: none !important;
        padding: 0 20px;
        text-align: center;
        z-index: 10;
    }

    .slide.active {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .slide h1 {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 15px;
        white-space: normal;
        max-width: 100%;
    }

    .slide p {
        font-size: 15px !important;
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
    }

    .slide-btn-group {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 15px;
        width: 100%;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .btn-slide {
        display: inline-block;
        width: auto !important;
        padding: 12px 30px;
        font-size: 14px;
        margin: 0;
    }
}

.mobile-nav-container {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

body.dark-mode .mobile-nav-container {
    background-color: #151A27;
    border-bottom: 1px solid #2D3748;
}

#darkModeToggleMobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #F87B3D;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

body.dark-mode #darkModeToggleMobile {
    background: transparent !important;
    color: #F6E05E;
}






body.dark-mode .social-area .container {
    background: #1A202C !important;
    border: 1px solid #2D3748;
}

body.dark-mode .social-area h4 {
    color: #fff !important;
}

body.dark-mode .social-area p {
    color: #CBD5E0 !important;
}

.mobile-nav-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
}

.mobile-nav-link i {
    margin-right: 5px;
    color: #F87B3D;
}

body.dark-mode .mobile-nav-link {
    color: #fff !important;
}

body.dark-mode .mobile-nav-link i {
    color: #F6E05E;
}

#main-content {
    transition: opacity 0.2s ease-in-out;
}

.spa-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.spa-loader.active {
    opacity: 1;
}

.spa-loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F87B3D, #FF9F43, #F87B3D);
    background-size: 200% 100%;
    animation: spa-loading 1.5s ease-in-out infinite, spa-progress 0.8s ease-out forwards;
}

@keyframes spa-loading {
    0% {
        background-position: 200% 0;
    }

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

@keyframes spa-progress {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 90%;
    }
}

.testimonials-pro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body.dark-mode .testimonials-pro {
    background: linear-gradient(135deg, #0B0E17 0%, #151A27 100%);
}


.testimonials-pro-slider {
    margin-top: 50px;
}

.testimonials-pro-slider .slick-track {
    display: flex !important;
}

.testimonials-pro-slider .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin: 0 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F87B3D, #FF9F43);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(248, 123, 61, 0.15);
}

body.dark-mode .testimonial-card {
    background: #1A202C;
    border-color: #2D3748;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(248, 123, 61, 0.2);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 32px;
    color: #F87B3D;
    opacity: 0.6;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #344054;
    font-style: italic;
    margin: 0;
}

body.dark-mode .testimonial-content p {
    color: #D0D5DD;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #EAECF0;
}

body.dark-mode .testimonial-author {
    border-top-color: #2D3748;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    margin: 0 0 4px 0;
}

body.dark-mode .author-info h5 {
    color: #fff;
}

.author-info span {
    font-size: 13px;
    color: #667085;
}

body.dark-mode .author-info span {
    color: #94969C;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 14px;
}

.testimonials-pro-slider .slick-dots {
    margin-top: 40px;
}

.testimonials-pro-slider .slick-dots li button:before {
    font-size: 12px;
    color: #F87B3D;
}

.testimonials-pro-slider .slick-prev,
.testimonials-pro-slider .slick-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.testimonials-pro-slider .slick-prev:hover,
.testimonials-pro-slider .slick-next:hover {
    background: #F87B3D;
}

.testimonials-pro-slider .slick-prev:before,
.testimonials-pro-slider .slick-next:before {
    color: #F87B3D;
    font-size: 20px;
}

.testimonials-pro-slider .slick-prev:hover:before,
.testimonials-pro-slider .slick-next:hover:before {
    color: #fff;
}

body.dark-mode .testimonials-pro-slider .slick-prev,
body.dark-mode .testimonials-pro-slider .slick-next {
    background: #2D3748;
}

body.dark-mode .testimonials-pro-slider .slick-prev:hover,
body.dark-mode .testimonials-pro-slider .slick-next:hover {
    background: #F87B3D;
}

@media (max-width: 768px) {
    .testimonials-pro {
        padding: 50px 0;
    }

    .testimonial-card {
        margin: 0 10px;
        padding: 24px;
    }

    .testimonial-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.footer-main {
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 60px;
    line-height: 1.2;
}

.footer-phone-icon {
    background: #3B82F6;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.footer-title-line {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-title-line .dot {
    width: 12px;
    height: 12px;
    background: #3B82F6;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-title-line .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6 0%, transparent 100%);
}

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

.footer-contact-list li {
    color: #D1D5DB;
    font-size: 16px;
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.footer-contact-list li i {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

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

.footer-menu-list li {
    padding: 8px 0;
}

.footer-menu-list li::before {
    content: "›";
    color: #6B7280;
    margin-right: 10px;
    font-size: 18px;
}

.footer-menu-list li a {
    color: #D1D5DB;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    /* Prevent wrapping */
}

.footer-menu-list li a:hover {
    color: #3B82F6;
}

.copyrighted-badge {
    margin-top: 30px;
}

.copyrighted-badge img {
    max-width: 180px;
    opacity: 0.9;
}

@media (min-width: 1400px) {
    .footer-main {
        padding: 80px 0;
    }

    .footer-title {
        font-size: 26px;
    }

    .footer-contact-list li {
        font-size: 18px;
    }

    .footer-menu-list li a {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .footer-main .col-md-8 {
        margin-top: 30px;
    }

    .footer-title {
        font-size: 18px;
        height: auto;
    }

    .footer-contact-list li {
        font-size: 14px;
    }

    .footer-menu-list li a {
        font-size: 14px;
    }
}

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

    .footer-main .col-md-8 {
        margin-top: 30px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-contact-list li {
        font-size: 14px;
    }

    .footer-menu-list li a {
        font-size: 14px;
    }
}