@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');
h1{
    font-family: "Quicksand", sans-serif;
    margin-bottom: 0;
}
h2{
    font-family: "Quicksand", sans-serif;
    margin-bottom: 0;
}
h3{
    font-family: "Quicksand", sans-serif;
    margin-bottom: 0;
}
p{
    font-family: "Quicksand", sans-serif;
}
a{
    font-family: "Quicksand", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    background-color: #dcdcdc;
    .header{
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        z-index:999;
        position: fixed;
        top: 0;
        width: 100%;
        backdrop-filter: blur(34px);
        background: rgba(255, 255, 255, 0.05)!important;
    }
    .container-fluid{
        padding-left: 73px;
        padding-right: 73px;
    }
    .main{
        flex: 1;
    }
    .sliderBg{
        background-size: cover;
        background-position: bottom center; /* veya sadece bottom */
        background-repeat: no-repeat;
        width: 100%;
        min-height: 95vh;
        .sliderTitle{
            margin-right: 73px;
            margin-left: 73px;
            transition: 0.6s;
        }
        .h1title:hover{
            color: #20ff05!important;
        }
        .sliderImg{
            transition: 0.6s;
        }
        .sliderImg:hover{
            transform: scale(1.3);
        }
        .imgContainer {
            display: flex;
            justify-content: center;
            position: relative;
            width: 50%;
        }
        .laptopWrapper{
            position: absolute;
            bottom: -485px!important;
            width: 450px;   /* 300 * 1.25 */
            height: 750px;  /* 600 * 1.25 */
            transition: 0.6s;
        }
        .laptopBody {
            position: absolute;
            top: 0;
            right: 150px;
            height: 560px;
            z-index: 1;
        }
        .laptopScreen {
            position: absolute;
            top: 8.4px;
            right: 295.5px;
            height: 340px;
            z-index: 2;
            transition: 0.6s;
        }
        .laptopScreenChild {
            position: absolute;
            top: 46.4px;
            right: 485.5px;
            height: 180px;
            z-index: 3;
            transition: 0.6s;
        }
        .laptopWrapper:hover .laptopScreen{
            transform: translate(-10px, -10px);
        }
        .laptopWrapper:hover .laptopScreenChild{
            transform: translate(-25px, -25px);
        }
        .laptopWrapper:hover{
            transform: scale(1.0,1);
        }
        .phoneWrapper {
            position: absolute;
            bottom: -500px!important;
            width: 375px;   /* 300 * 1.25 */
            height: 750px;  /* 600 * 1.25 */
            transition: 0.6s;
        }
        .phoneBody {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 563px;
            z-index: 1;
        }
        .phoneScreen {
            position: absolute;
            top: 9.4px;
            left: 7.5px;
            height: 525px;
            z-index: 2;
            transition: 0.6s;
        }
        .phoneScreenChild {
            position: absolute;
            top: 68.4px;
            left: 100.5px;
            height: 175px;
            z-index: 3;
            transition: 0.6s;
        }
        .phoneWrapper:hover .phoneScreen{
            transform: translate(-20px, -20px);
        }
        .phoneWrapper:hover .phoneScreenChild{
            transform: translate(-35px, -35px);
        }
        .phoneWrapper:hover{
            transform: scale(1.2);
        }
    }
    .sidebar{
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        backdrop-filter:blur(4px);
        background-color: rgba(0, 63, 71, 0.7) !important;
        border-radius: 16px;
        margin-bottom: 50px;
    }
    .section{
        margin-top: 100px;
        display: flex;
    }
    .section-dark{
        margin-top: 100px;
        padding-top: 70px;
        padding-bottom: 70px;
        background-color: rgb(34, 34, 34, 0.9);
        display: flex;
    }
    /*footer*/
    .footer-dark {
        z-index: 998;
        padding:50px 0;
        color:#f0f9ff;
        background-color: #dcdcdc;
    }

    .footer-dark h3 {
        margin-top:0;
        margin-bottom:12px;
        font-weight:bold;
        font-size:16px;
    }

    .footer-dark ul {
        padding:0;
        list-style:none;
        line-height:1.6;
        font-size:14px;
        margin-bottom:0;
    }

    .footer-dark ul a {
        color:inherit;
        text-decoration:none;
        opacity:0.6;
    }

    .footer-dark ul a:hover {
        opacity:0.8;
    }
}

.footer-dark .item.text {
    margin-bottom:36px;
}
.footer-dark .item.text p {
    opacity:0.6;
    margin-bottom:0;
}

.footer-dark .item.social {
    text-align:center;
}

.footer-dark .item.social > a {
    font-size:20px;
    width:36px;
    height:36px;
    line-height:36px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    box-shadow:0 0 0 1px rgba(255,255,255,0.4);
    margin:0 8px;
    color:#fff;
    opacity:0.75;
}

.footer-dark .item.social > a:hover {
    opacity:0.9;
}

.footer-dark .copyright {
    text-align:center;
    padding-top:24px;
    opacity:0.3;
    font-size:13px;
    margin-bottom:0;
}

/*Mobile*/
@media (max-width: 1600px){
    .sliderBg{
        .laptopWrapper{
            position: absolute;
            top: -150px!important;
            width: 225px!important;
            height: 375px!important;
            transition: 0.6s!important;
        }
        .laptopBody {
            position: absolute;
            top: 0!important;
            right: 75px!important;
            height: 280px!important;
            z-index: 1;
        }
        .laptopScreen {
            position: absolute;
            top: 4.2px!important;
            right: 147.75px!important;
            height: 170px!important;
            z-index: 2;
            transition: 0.6s!important;
        }
        .laptopScreenChild {
            position: absolute;
            top: 23.2px!important;
            right: 242.75px!important;
            height: 90px!important;
            z-index: 3;
            transition: 0.6s!important;
        }
        .laptopWrapper:hover .laptopScreen{
            transform: translate(-5px, -5px)!important;
        }
        .laptopWrapper:hover .laptopScreenChild{
            transform: translate(-12.5px, -12.5px)!important;
        }
        .laptopWrapper:hover{
            transform: scale(1.0,1)!important;
        }

        .phoneWrapper {
            position: absolute;
            top: -150px!important;
            width: 187.5px!important;
            height: 375px!important;
            transition: 0.6s!important;
        }
        .phoneBody {
            position: absolute;
            top: 0!important;
            left: 0!important;
            width: 100%!important;
            height: 281.5px!important;
            z-index: 1;
        }
        .phoneScreen {
            position: absolute;
            top: 4.7px!important;
            left: 3.75px!important;
            height: 262.5px!important;
            z-index: 2;
            transition: 0.6s!important;
        }
        .phoneScreenChild {
            position: absolute;
            top: 34.2px!important;
            left: 50.25px!important;
            height: 87.5px!important;
            z-index: 3;
            transition: 0.6s!important;
        }
        .phoneWrapper:hover .phoneScreen{
            transform: translate(-10px, -10px)!important;
        }
        .phoneWrapper:hover .phoneScreenChild{
            transform: translate(-17.5px, -17.5px)!important;
        }
        .phoneWrapper:hover{
            transform: scale(1.1)!important;
        }
    }
}

@media (max-width: 1200px) {
    .sliderBg{
        .sliderImg{
            display: none!important;
        }
        .imgContainer{
            display: none!important;
        }
    }
}
@media (max-width: 768px) {
    .footer-dark .item:not(.social) {
        text-align:center;
        padding-bottom:20px;
    }
    .accordion-right{
        display: none!important;
    }
    .footer-dark .item.text {
        margin-bottom:0;
    }
    .sidebarCol {
        display: none!important;
    }
    .container-fluid{
        padding-left: 12px!important;
        padding-right: 12px!important;
    }
    .sliderBg{
        height: 500px!important;
        .sliderTitle{
            margin-right: 12px!important;
            margin-left: 12px!important;
        }
    }
}
@media (max-width: 991px) {
    .sidebarCol {
        display: none!important;
    }
    .homepage-logo{
        margin: 0px!important;
    }
    .footer-dark .item.social {
        text-align:center;
        margin-top:20px;
    }
}
/*Mobile*/
.activeYellow{
    color: #000000 !important;
}
.activeYellow:hover{
    color: #ffffff !important;
}
.btn-primary {
    border: none;
    display: inline-block;
    line-height: initial;
    border-radius: 3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 12px 30px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    color: #000000;
    background-color: #20ff05;
    background-image: linear-gradient(135deg, #ffffff 0%, #dfdfdf 50%, #d2ff00 50%, #20ff05 100%);
    background-position: right center;
    text-align: center;
    text-decoration: none;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-property: color, background;
    transition-property: color, background;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    background-size: 270% auto;
}

.btn-primary:hover, .btn-primary:focus {
    color: #000000;
    background-position: left center;
    -webkit-box-shadow: unset !important;
    -moz-box-shadow: unset !important;
    box-shadow: unset !important;
}
.headerTitle{
    color: #000000;
}
.headerTitle:hover{
    color: #ffffff;
}

.inputStyle{
    background-color: rgb(197, 220, 221);
}
.montserrat-black{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700
}
.montserrat-medium{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500
}
.montserrat-regular{
    font-family: 'Montserrat', sans-serif;
}
.homepage-logo{
    margin-right: 36px;
}
.page-link{
    background-color:rgb(197, 220, 221)!important;
}
.page-item.active span{
    background-color:rgba(0, 63, 71, 0.9)!important;
    border-color:rgba(0, 63, 71)!important;
}
.page-item a{
    color: black;
}

/*Accordion*/

.accordion-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.accordion-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.accordion-item {
    margin-bottom: 30px;
    cursor: pointer;
}

.accordion-title {
    position: relative;
    padding-bottom: 6px;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.accordion-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #20ff05;
    transition: width 0.4s ease;
}

.accordion-title:hover::after,
.accordion-title.active::after {
    width: 100%;
}

.accordion-title span.number {
    font-size: 30px;
    color: #ccc;
    font-weight: bold;
}

.accordion-title.active {
    color: #20ff05;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    margin-top: 10px;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 0;
}

.accordion-content.active {
    padding: 10px 0;
    max-height: 500px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.tag {
    background: #f0f0ff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.learn-more {
    margin-top: 10px;
    font-weight: bold;
    display: inline-block;
    color: #000;
}

.accordion-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-right img {
    max-width: 100%;
}
.referanslar{
    padding: 10px;
}
.referanslar a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 1rem;
}

.referanslar img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.3s ease;
    border-radius: 1rem;
}

.referanslar a:hover img {
    filter: brightness(30%);
    transform: scale(1.05);
}

.referanslar .title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    border-radius: 1rem;
}

.referanslar a:hover .title-overlay {
    opacity: 1;
}
.carousel-control-prev{
    bottom: -600px;
    left: 35%;
}
.carousel-control-next{
    bottom: -600px;
    right: 35%;
}
.laser-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.laser-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #20ff05, transparent);
    animation: laser-top 2s linear infinite;
    z-index: 2;
}

.laser-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #20ff05, transparent);
    animation: laser-bottom 2s linear infinite;
    z-index: 2;
}

.laser-section .left-laser {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #20ff05, transparent);
    animation: laser-left 2s linear infinite;
    z-index: 2;
}


.laser-section .right-laser {
    content: "";
    position: absolute;
    top: -100%;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #20ff05, transparent);
    animation: laser-right 2s linear infinite;
    z-index: 2;
}

@keyframes laser-top {
    0%   { left: -100%; }
    100% { left: 100%; }
}

@keyframes laser-bottom {
    0%   { left: -100%; }
    100% { left: 100%; }
}

@keyframes laser-left {
    0%   { top: -100%; }
    100% { top: 100%; }
}

@keyframes laser-right {
    0%   { top: -100%; }
    100% { top: 100%; }
}
.glow-border {
    --border-width: 2px;
    --radius: 16px;
    position: relative;
    border-radius: var(--radius);
    border: var(--border-width) solid transparent;
}

.glow-border::before {
    content: "";
    position: absolute;
    inset: calc(var(--border-width) * -1);
    z-index: -1;
    border: inherit;
    border-radius: inherit;
    background-image: conic-gradient(
            from var(--angle),
            #14532d 80%,
            #20ff05 88%,
            #20ff05 92%,
            #14532d 100%
    );
    background-origin: border-box;
    -webkit-mask:
            linear-gradient(black, black) content-box,
            linear-gradient(black, black);
    mask:
            linear-gradient(black, black),
            linear-gradient(black, black);
    -webkit-mask-clip: content-box, border-box;
    mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 3s linear infinite;
}

.glow-border:hover::before {
    animation-play-state: paused;
}

@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes spin {
    to {
        --angle: 1turn;
    }
}
.programingLanguage:hover {
    color: #20ff05 !important;
}

