/**
* Template Name: Techie - v4.10.0
* Template URL: https://bootstrapmade.com/techie-free-skin-bootstrap-3/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

@font-face {
    font-family: '3270-regular';
    src: url('../../fonts/3270-regular.woff2') format('woff2'), 
        url('../../fonts/3270-regular.woff') format('woff'), 
        url('../../fonts/3270-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: "JetBrains Mono", monospace;
    color: #444444;
}

.hero-text {
    font-family: '3270-regular', monospace !important;
}

a {
    color: #3EA7B4;
    text-decoration: none;
}

    a:hover {
        color: #6CC5D0;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: '3270-regular', '3270-regular' /*, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace'*/;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #23272A;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #3EA7B4;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #95d6de;
        border-top-color: #e7e4fe;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

    #header.header-scrolled,
    #header.header-inner-pages {
        background: rgba(35, 39, 42);
        padding: 12px 0;
    }

    #header .logo {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: lowercase;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 40px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        padding: 10px 0 10px 24px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: 'JetBrainsMono Bold'sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #fff;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: #fff;
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 8px 25px;
        margin-left: 30px;
        border-radius: 5px;
        color: #fff;
        transition: 0.3s;
        font-size: 14px;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            border-color: #fff;
        }

        .navbar .getstarted:before,
        .navbar li:hover > .getstarted:before {
            visibility: hidden;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 24px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            color: #2c4964;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #3EA7B4;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(35, 39, 42, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile > ul > li {
        padding: 0;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #95d6de;
    }

        .navbar-mobile a:hover:before,
        .navbar-mobile li:hover > a:before,
        .navbar-mobile .active:before {
            visibility: hidden;
        }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #3EA7B4;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #5846f9;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    margin-top: -24px !important;
    width: 100%;
    height: 110vh !important;
    background: linear-gradient(45deg, rgba(62, 167, 180, 0.9) 0%, rgba(37, 102, 110) 100%), url("../img/hero-bg.jpg") center center no-repeat;
    background-size: cover;
}

    #hero .container,
    #hero .container-fluid {
        padding-top: 84px;
    }

    #hero h1 {
        margin: 0;
        font-size: 45px;
        font-weight: 700;
        line-height: 64px;
        color: #fff;
        font-family: "JetBrains Mono", monospace;
    }

    #hero h2 {
        color: rgba(255, 255, 255, 0.8);
        margin: 10px 0 0 0;
        font-size: 25px;
        font-family: "JetBrains Mono", monospace;
    }

    #hero .btn-get-started {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 5px;
        transition: 0.5s;
        margin-top: 30px;
        color: #fff;
        border: 2px solid #fff;
    }

        #hero .btn-get-started:hover {
            background: #fff;
            color: #3EA7B4;
        }

    #hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 1200px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        text-align: center;
    }

        #hero .container,
        #hero .container-fluid {
            padding-top: 68px;
        }

        #hero .animated {
            -webkit-animation: none;
            animation: none;
        }

        #hero .hero-img {
            text-align: center;
        }

            #hero .hero-img img {
                width: 50%;
            }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 26px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }

    #hero .hero-img img {
        width: 60%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@media (max-width: 575px), (max-height: 600px) {
    #hero {
        height: auto;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 100px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f9f8ff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        font-family: "JetBrains Mono", monospace;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: #3EA7B4;
            bottom: 0;
            left: calc(50% - 25px);
        }

    .section-title p {
        margin-bottom: 0;
        font-family: "JetBrains Mono", monospace;
    }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 120px 0;
}

    .about .content h3 {
        font-weight: 600;
        font-size: 32px;
        color: #25666e;
    }

    .about .content ul {
        list-style: none;
        padding: 0;
    }

        .about .content ul li {
            padding-bottom: 10px;
        }

        .about .content ul i {
            font-size: 20px;
            padding-right: 4px;
            color: #3EA7B4;
        }

    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .content .read-more {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 50px 10px 28px;
        border-radius: 5px;
        transition: 0.5s;
        color: #fff;
        background: linear-gradient(45deg, #3c4145 0%, #161a1c 100%);
        position: relative;
    }

        .about .content .read-more:hover {
            background: linear-gradient(45deg, #161a1c 0%, #3c4145 100%);
        }

        .about .content .read-more i {
            font-size: 22px;
            position: absolute;
            right: 20px;
            top: 12px;
        }

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    background: linear-gradient(45deg, rgba(62, 167, 180, 0.9) 0%, rgba(37, 102, 110) 100%), url("../img/counts-bg.png") center center no-repeat;
    padding: 80px 0 60px 0;
}

    .counts .counters span {
        font-size: 48px;
        display: block;
        color: #fff;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
    }

    .counts .counters p {
        padding: 0;
        margin: 0 0 20px 0;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.8);
    }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

    .services .icon-box .icon {
        margin: 0 auto;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease-in-out 0.3s;
        position: relative;
    }

        .services .icon-box .icon i {
            font-size: 36px;
            transition: 0.5s;
            position: relative;
        }

        .services .icon-box .icon svg {
            position: absolute;
            top: 0;
            left: 0;
        }

            .services .icon-box .icon svg path {
                transition: 0.5s;
                fill: #f5f5f5;
            }

    .services .icon-box h4 {
        font-weight: 600;
        margin: 10px 0 15px 0;
        font-size: 22px;
    }

        .services .icon-box h4 a {
            color: #2c4964;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    }

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #ffbb2c;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #ff5828;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #3EA7B4;
}

.features .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 120px 0 60px 0;
    background: linear-gradient(45deg, rgba(62, 167, 180, 0.9) 0%, rgba(37, 102, 110) 100%), url("../img/hero-bg.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

    .testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../img/pattern.png');
        opacity: 0.03;
        z-index: 1;
    }

    .testimonials .section-title h2,
    .testimonials .section-title p {
        color: #fff;
        position: relative;
        z-index: 2;
    }

        .testimonials .section-title h2::after {
            background: rgba(255, 255, 255, 0.6);
        }

.testimonials-container {
    position: relative;
    margin-top: 50px;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    min-height: auto;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    width: 350px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(62, 167, 180, 0.1);
    position: relative;
    opacity: 1;
    transform: none;
    transition: none;
    top: auto;
    left: auto;
}

    .testimonial-item .testimonial-img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin: -40px 0 0 40px;
        position: relative;
        z-index: 2;
        border: 6px solid #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        object-fit: cover;
    }

    .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 45px;
        color: #2c4964;
    }

    .testimonial-item .stars {
        margin: 0 0 10px 45px;
    }

        .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .testimonial-item p {
        font-style: italic;
        margin: 0 15px 0 15px;
        padding: 20px 20px 60px 20px;
        background: #fff;
        border-radius: 6px;
        position: relative;
        z-index: 1;
        box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
    }

@media (max-width: 768px) {
    .testimonials-container {
        min-height: auto;
    }

    .testimonial-item {
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
    }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
        font-family: "Poppins", sans-serif;
    }

        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            color: #fff;
            background: #5846f9;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .portfolio .portfolio-wrap::before {
        content: "";
        background: rgba(88, 70, 249, 0.8);
        position: absolute;
        left: 30px;
        right: 30px;
        top: 30px;
        bottom: 30px;
        transition: all ease-in-out 0.3s;
        z-index: 2;
        opacity: 0;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        opacity: 0;
        position: absolute;
        top: 10%;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 3;
        transition: all ease-in-out 0.3s;
    }

        .portfolio .portfolio-wrap .portfolio-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .portfolio .portfolio-wrap .portfolio-info p {
            color: #ffffff;
            font-size: 14px;
            text-transform: uppercase;
        }

    .portfolio .portfolio-wrap .portfolio-links {
        opacity: 0;
        left: 0;
        right: 0;
        bottom: 10%;
        text-align: center;
        z-index: 3;
        position: absolute;
        transition: all ease-in-out 0.3s;
    }

        .portfolio .portfolio-wrap .portfolio-links a {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 2px;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .portfolio .portfolio-wrap .portfolio-links a:hover {
                color: #fff;
            }

    .portfolio .portfolio-wrap:hover::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
    }

    .portfolio .portfolio-wrap:hover .portfolio-info {
        opacity: 1;
        top: calc(50% - 48px);
    }

    .portfolio .portfolio-wrap:hover .portfolio-links {
        opacity: 1;
        bottom: calc(50% - 50px);
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #5846f9;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #5846f9;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(44, 73, 100, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #2c4964;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #5846f9;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

    .pricing h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
    }

    .pricing h4 span {
        color: #bababa;
        font-size: 16px;
        font-weight: 300;
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

    .pricing ul li {
        padding-bottom: 16px;
    }

    .pricing ul i {
        color: #5846f9;
        font-size: 18px;
        padding-right: 4px;
    }

    .pricing ul .na {
        color: #ccc;
        text-decoration: line-through;
    }

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
    display: inline-block;
    padding: 10px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
    }

.pricing .featured h3 {
    color: #fff;
    background: #5846f9;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #5846f9;
    color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    background: linear-gradient(42deg, #5846f9 0%, #7b27d8 100%);
}

    .faq .section-title h2,
    .faq .section-title p {
        color: #fff;
    }

        .faq .section-title h2::after {
            background: rgba(255, 255, 255, 0.6);
        }

    .faq .faq-list {
        padding: 0 100px;
    }

        .faq .faq-list ul {
            padding: 0;
            list-style: none;
        }

        .faq .faq-list li + li {
            margin-top: 15px;
        }

        .faq .faq-list li {
            padding: 30px;
            background: #fff;
            border-radius: 5px;
            position: relative;
        }

        .faq .faq-list a {
            display: block;
            position: relative;
            font-family: "Roboto", sans-serif;
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
            padding: 0 30px;
            outline: none;
            cursor: pointer;
        }

        .faq .faq-list .icon-help {
            font-size: 24px;
            position: absolute;
            right: 0;
            left: 20px;
            color: #8577fb;
        }

        .faq .faq-list .icon-show,
        .faq .faq-list .icon-close {
            font-size: 24px;
            position: absolute;
            right: 0;
            top: 0;
        }

        .faq .faq-list p {
            margin-bottom: 0;
            padding: 10px 0 0 0;
        }

        .faq .faq-list .icon-show {
            display: none;
        }

        .faq .faq-list a.collapsed {
            color: #2c4964;
        }

            .faq .faq-list a.collapsed:hover {
                color: #5846f9;
            }

            .faq .faq-list a.collapsed .icon-show {
                display: inline-block;
            }

            .faq .faq-list a.collapsed .icon-close {
                display: none;
            }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

    .contact .info-box i {
        font-size: 32px;
        color: #3EA7B4;
        border-radius: 50%;
        padding: 8px;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #25666e;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 5px;
        box-shadow: none;
        font-size: 14px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #25666e;
        }

    .contact .php-email-form input {
        padding: 10px 15px;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
    }

    .contact .php-email-form button[type=submit] {
        background: #3EA7B4;
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 5px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #25666e;
        }

    .contact .send-button {
        background: #3EA7B4;
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 5px;
    }

        .contact .send-button:hover {
            background: #25666e;
        }


@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f2f6f9;
    min-height: 40px;
    margin-top: 85px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 56px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 0;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #3c6387;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: linear-gradient(45deg, rgba(62, 167, 180, 0.9) 0%, rgba(37, 102, 110) 100%), url("../img/hero-bg.jpg") center center no-repeat;
    background-size: cover;
}

    #footer .footer-top {
        padding: 60px 0 30px 0;
        position: relative;
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 28px;
                margin: 0 0 30px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 500;
                text-transform: lowercase;
                font-family: '3270-regular', monospace;
            }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "JetBrains Mono", monospace;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            position: relative;
            padding-bottom: 12px;
            font-family: "JetBrains Mono", monospace;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

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

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #fff;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: rgba(255, 255, 255, 0.8);
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                    font-family: "JetBrains Mono", monospace;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: underline;
                        color: #fff;
                    }

    #footer .footer-newsletter {
        font-size: 15px;
        font-family: "JetBrains Mono", monospace;
    }

        #footer .footer-newsletter h4 {
            font-size: 16px;
            font-weight: bold;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 5px;
            text-align: left;
            border: 1px solid white;
        }

            #footer .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type=submit] {
                position: absolute;
                top: -1px;
                right: -2px;
                bottom: -1px;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: rgba(67, 191, 171, 0.8);
                color: #fff;
                transition: 0.3s;
                border-radius: 0 5px 5px 0;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }

                #footer .footer-newsletter form input[type=submit]:hover {
                    background: #3EA7B4;
                }

    #footer .copyright-wrap {
        border-top: 1px solid #69c3cf;
    }

    #footer .copyright {
        font-family: "JetBrains Mono", monospace;
    }

    #footer .credits {
        padding-top: 5px;
        font-size: 13px;
        color: #fff;
        font-family: "JetBrains Mono", monospace;
    }

        #footer .credits a {
            color: #fff;
        }

    #footer .social-links a {
        font-size: 18px;
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #footer .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
        }

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products {
    padding: 120px 0 60px 0;
    background: linear-gradient(180deg, #359fac 0%, white 30%);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png');
    opacity: 0.03;
    animation: backgroundMove 30s linear infinite;
    z-index: -1;
}

.products::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(62, 167, 180, 0.05) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(62, 167, 180, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(62, 167, 180, 0.05) 100%);
    animation: gradientMove 20s ease infinite;
    background-size: 200% 200%;
    z-index: -1;
}

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

.products .row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    max-width: 1800px;
    margin: 0 auto;
    z-index: 90;
}

.products .col-lg-4 {
    margin: 0;
    transition: all 0.5s ease;
    animation: floatCard 12s ease-in-out infinite;
    will-change: transform;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 100;
}

.products .col-lg-4:nth-child(1) {
    align-self: flex-start;
    margin-left: 5%;
    z-index: 100;
    transform: rotate(-2deg);
}

.products .col-lg-4:nth-child(2) {
    align-self: flex-end;
    margin-right: 5%;
    margin-top: -120px;
    z-index: 99;
    transform: rotate(3deg);
}

.products .col-lg-4:nth-child(3) {
    align-self: flex-start;
    margin-left: 8%;
    margin-top: -120px;
    z-index: 98;
    transform: rotate(-1deg);
}

.products .col-lg-4:nth-child(4) {
    align-self: flex-end;
    margin-right: 8%;
    margin-top: -120px;
    z-index: 97;
    transform: rotate(2deg);
}

.products .col-lg-4:nth-child(5) {
    align-self: flex-start;
    margin-left: 3%;
    margin-top: -120px;
    z-index: 96;
    transform: rotate(-3deg);
}

.products .col-lg-4:nth-child(6) {
    align-self: flex-end;
    margin-right: 3%;
    margin-top: -120px;
    z-index: 95;
    transform: rotate(1deg);
}

.products .col-lg-4:nth-child(7) {
    align-self: flex-start;
    margin-left: 6%;
    margin-top: -120px;
    z-index: 94;
    transform: rotate(-2deg);
}

@keyframes floatCard {
    0% {
        transform: translate(0, 0) rotate(var(--initial-rotation, 0deg));
    }
    25% {
        transform: translate(8px, -10px) rotate(calc(var(--initial-rotation, 0deg) + 0.5deg));
    }
    50% {
        transform: translate(-6px, 8px) rotate(calc(var(--initial-rotation, 0deg) - 0.3deg));
    }
    75% {
        transform: translate(-8px, -6px) rotate(calc(var(--initial-rotation, 0deg) + 0.3deg));
    }
    100% {
        transform: translate(0, 0) rotate(var(--initial-rotation, 0deg));
    }
}

.products .col-lg-4:nth-child(1) { --initial-rotation: -2deg; }
.products .col-lg-4:nth-child(2) { --initial-rotation: 3deg; }
.products .col-lg-4:nth-child(3) { --initial-rotation: -1deg; }
.products .col-lg-4:nth-child(4) { --initial-rotation: 2deg; }
.products .col-lg-4:nth-child(5) { --initial-rotation: -3deg; }
.products .col-lg-4:nth-child(6) { --initial-rotation: 1deg; }
.products .col-lg-4:nth-child(7) { --initial-rotation: -2deg; }

.products .col-lg-4:hover,
.products .col-lg-4:focus,
.products .col-lg-4.active {
    animation-play-state: paused;
    transform: translateY(-5px) rotate(0deg) !important;
    transition: all 0.5s ease;
}

.product-card[data-maincolor] {
    --card-color: var(--main-color) !important;
    --hover-color: color-mix(in srgb, var(--main-color) 15%, white) !important;
    --text-color: var(--main-color) !important;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(62, 167, 180, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    will-change: transform, background-color;
    z-index: 101;
    display: flex;
    flex-direction: column;
}

.product-card:hover,
.product-card:focus,
.product-card.active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--card-color) !important;
    background: var(--hover-color) !important;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color) !important;
    font-family: "JetBrains Mono", monospace;
    transition: all 0.5s ease;
}

.product-card .product-features ul li i {
    color: var(--text-color) !important;
    margin-right: 10px;
    transition: all 0.5s ease;
}

.product-card:hover .product-features ul li i,
.product-card:focus .product-features ul li i,
.product-card.active .product-features ul li i {
    transform: scale(1.2);
}

.product-card .product-logo {
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    transform: translateZ(20px);
}

.product-card .product-logo img {
    max-width: 120px;
    height: auto;
    transition: all 0.5s ease;
    transform: scale(0.9);
    filter: grayscale(100%);
}

.product-card:hover .product-logo img,
.product-card:focus .product-logo img,
.product-card.active .product-logo img {
    transform: scale(1);
    filter: grayscale(0%);
}

.product-card .product-content {
    flex: 1;
    text-align: center;
}

.product-card .examine-btn {
    margin-top: 20px;
}

.product-card p {
    color: #6c757d;
    margin-bottom: 20px;
    font-family: "JetBrains Mono", monospace;
    transition: all 0.5s ease;
}

.product-card .product-features {
    text-align: left;
    transform: translateZ(5px);
}

.product-card .product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-card .product-features ul li {
    padding: 8px 0;
    color: #6c757d;
    font-family: "JetBrains Mono", monospace;
    transition: all 0.5s ease;
    transform: translateX(0);
}

.product-card:hover .product-features ul li,
.product-card:focus .product-features ul li,
.product-card.active .product-features ul li {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .products .row {
        gap: 15px;
        padding: 30px;
    }
    
    .products .col-lg-4 {
        max-width: 450px;
    }
    
    .products .col-lg-4:nth-child(n) {
        margin-top: -100px;
        margin-left: 3% !important;
        margin-right: 3% !important;
    }
}

@media (max-width: 768px) {
    .products .row {
        gap: 30px;
        padding: 20px;
    }
    
    .products .col-lg-4 {
        max-width: 100%;
        margin: 0 !important;
        transform: none !important;
    }
    
    .products .col-lg-4 {
        animation: none;
    }
}

/* Scroll Animations */
.products .col-lg-4 {
    opacity: 1;
    transform: none;
}

.products .col-lg-4.visible {
    opacity: 1;
    transform: none;
}

/* Parallax Effect */
.products .col-lg-4:nth-child(odd) {
    transform: translateY(calc(var(--scroll) * 0.05px));
}

.products .col-lg-4:nth-child(even) {
    transform: translateY(calc(var(--scroll) * -0.05px));
}

/* Örnek kart renkleri */
.products .col-lg-4:nth-child(1) .product-card {
    --main-color: #f54266;
}

.products .col-lg-4:nth-child(2) .product-card {
    --main-color: #163633;
}

.products .col-lg-4:nth-child(3) .product-card {
    --main-color: #dbb0a2;
}

.products .col-lg-4:nth-child(4) .product-card {
    --main-color: #FFD93D;
}

.products .col-lg-4:nth-child(5) .product-card {
    --main-color: #95E1D3;
}

.products .col-lg-4:nth-child(6) .product-card {
    --main-color: #F38181;
}

.products .col-lg-4:nth-child(7) .product-card {
    --main-color: #6C5CE7;
}

/* Custom Outline Button */
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    border-radius: 25px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    width: auto;
    min-width: fit-content;
}

.btn-outline-custom i {
    font-size: 14px;
    transition: all 0.3s ease;
    margin-right: 4px;
}

.btn-outline-custom:hover {
    background: var(--text-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline-custom:hover i {
    transform: scale(1.2);
}

/* Override any existing button styles */
.product-card button,
.product-card .btn,
.product-card .btn-outline-secondary,
.product-card a.btn-outline-custom {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    border-radius: 25px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    width: auto;
    min-width: fit-content;
}

.product-card button:hover,
.product-card .btn:hover,
.product-card .btn-outline-secondary:hover,
.product-card a.btn-outline-custom:hover {
    background: var(--text-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.product-card button i,
.product-card .btn i,
.product-card .btn-outline-secondary i,
.product-card a.btn-outline-custom i {
    font-size: 14px;
    transition: all 0.3s ease;
    margin-right: 4px;
}

.product-card button:hover i,
.product-card .btn:hover i,
.product-card .btn-outline-secondary:hover i,
.product-card a.btn-outline-custom:hover i {
    transform: scale(1.2);
}

/* Toastr Custom Styles */
.toast-top-right {
    top: 20px;
    right: 20px;
    width: 400px !important;
}

.coming-soon-message {
    text-align: center;
    padding: 10px;
}

.coming-soon-message p {
    margin-bottom: 10px;
    font-family: "JetBrains Mono", monospace;
}

.btn-contact {
    display: inline-block;
    padding: 8px 20px;
    background: var(--text-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--text-color);
    opacity: 0.9;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Toastr Animation */
.toast {
    opacity: 1 !important;
    width: 400px !important;
}

.toast-close-button {
    color: white !important;
    opacity: 0.8;
}

.toast-close-button:hover {
    opacity: 1;
}

#toast-container > div {
    opacity: 1;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
    width: 400px !important;
    padding: 15px !important;
}

#toast-container > div:hover {
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.toast-info {
    background-color: #3EA7B4 !important;
    color: white !important;
}

.toast-info .toast-message {
    color: white !important;
    padding-left: 0 !important;
}

.toast-info .toast-close-button {
    color: white !important;
}

.toast-no-icon {
    padding: 15px !important;
}

.toast-no-icon .toast-message {
    padding-left: 0 !important;
}

.toast-no-icon .toast-close-button {
    right: 10px !important;
}

/* Remove icon */
.toast-info:before {
    display: none !important;
}

.toast-info .toast-message {
    margin-left: 0 !important;
}

/* Quote Section */
.quote {
    padding: 60px 0;
    background: #f8f9fa;
}

.quote .php-email-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.quote .php-email-form .form-group {
    margin-bottom: 20px;
}

.quote .php-email-form label {
    font-weight: 600;
    color: #2c4964;
    margin-bottom: 8px;
}

.quote .php-email-form .form-control {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
}

.quote .php-email-form .form-control:focus {
    border-color: #3EA7B4;
}

.quote .php-email-form select.form-control {
    height: 45px;
}

.quote .php-email-form textarea.form-control {
    padding: 12px 15px;
}

.quote .php-email-form button[type="submit"] {
    background: #3EA7B4;
    border: 0;
    padding: 12px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote .php-email-form button[type="submit"]:hover {
    background: #25666e;
}

/* Wizard Form Styles */
.wizard-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.wizard-step {
    animation: fadeIn 0.5s ease-in-out;
    font-family: 'JetBrains Mono', monospace;
}

.wizard-step h3 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.wizard-navigation button {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.wizard-navigation .btn-primary {
    background: #3EA7B4;
    border-color: #3EA7B4;
    margin-left: auto; /* Sonraki butonunu sağa yaslar */
}

.wizard-navigation .btn-primary:hover {
    background: #25666e;
    border-color: #25666e;
}

.wizard-navigation .btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    margin-right: auto; /* Önceki butonunu sola yaslar */
}

.wizard-navigation .btn-secondary:hover {
    background: #5a6268;
    border-color: #545b62;
}

.wizard-navigation .btn-success {
    background: #3EA7B4;
    border-color: #3EA7B4;
    margin-left: auto; /* Gönder butonunu sağa yaslar */
}

.wizard-navigation .btn-success:hover {
    background: #25666e;
    border-color: #25666e;
}

/* İlk adımda sonraki butonunu sağa hizala */
.wizard-step[data-step="1"] ~ .wizard-navigation {
    justify-content: flex-end;
}

.form-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.form-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #6c757d;
}

.form-check-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.alert {
    font-family: 'JetBrains Mono', monospace;
}

.btn {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .wizard-container {
        padding: 1rem;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-navigation button {
        width: 100%;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: white;
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading Container */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
}

/* Disable form during loading */
.form-loading {
    pointer-events: none;
    opacity: 0.7;
}
