@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Licorice&display=swap');

:root {
    --primary: #dd3333;
    --primary-dark: #b82828;
    --primary-light: #e85555;
    --secondary: #3d4f6f;
    --secondary-light: #4a6085;
    --dark: #3a3a3a;
    --text: #444444;
    --text-light: #888888;
    --light: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}


/* CONTENT WRAPPER START */

.content-wrapper {
    padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 40px !important;
    margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
    list-style: disc;
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    position: relative;
}

.content-wrapper p {
    margin-bottom: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    margin-bottom: 20px;
}

.content-wrapper img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    height: auto;
    margin: 20px 0;
}

/* CONTENT WRAPPER END */
/*DESKTOP HEADER START*/
.desktop-header-top {
    background: var(--secondary);
    padding: 10px 0;
}

.desktop-header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-header-top .left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.desktop-header-top .left a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.desktop-header-top .left a i {
    color: var(--primary);
    font-size: 14px;
}

.desktop-header-top .right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.desktop-header-top .right a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.desktop-header-top .right a:hover {
    background: var(--primary);
}

.desktop-header-bottom {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scrolled .desktop-header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.desktop-header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-header-bottom .desktop-logo img {
    height: 60px;
    width: auto;
}

.desktop-header-bottom .navbar-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.desktop-header-bottom .navbar-menu a {
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    position: relative;
    display: inline-block;
}

.desktop-header-bottom .navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    background: var(--primary);
    transition: 0.3s;
}

.desktop-header-bottom .navbar-menu a:hover {
    color: var(--primary);
}

.desktop-header-bottom .navbar-menu a:hover::after {
    width: 100%;
}

.desktop-header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-header-cta .phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.desktop-header-cta .phone i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.desktop-header-cta .content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.desktop-header-cta .top {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    display: block;
}

.desktop-header-cta .bottom {
    font-size: 16px;
    font-weight: bold;
    color: var(--text);
    display: block;
}

.desktop-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    background: var(--primary);
    color: var(--white);
}

.desktop-header-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.navbar-menu .dropdown {
    position: relative;
}

.navbar-menu .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 400px;
    z-index: 1000;
}

.navbar-menu .dropdown .dropdown-content ul {
    display: flex;
    align-items: start !important;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 8px !important;
}

.navbar-menu .dropdown .dropdown-content .dropdown-items li a {
    font-size: 14px;
    font-weight: 400;

}

.navbar-menu .dropdown:hover .dropdown-content {
    display: block;
}

.navbar-menu .dropdown-icon {
    margin-left: 5px;
    font-size: 0.8em;
}

.navbar-menu .desktop-header-bottom .navbar-menu li:hover .dropdown-icon i {
    color: var(--primary);
}

/*DESKTOP HEADER END*/
/*MOBİLE HEADER START*/
.mobile-header {
    background: var(--white);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.mobile-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header .mobile-logo img {
    height: 60px;
    width: auto;
}

.mobile-header .hamburger i {
    position: relative;
    cursor: pointer;
    font-size: 30px;
}

.mobile-navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    padding: 90px 30px;
    border-bottom: 1px solid var(--primary);
}

.mobile-navbar.active {
    right: 0;
}

body.no-scroll {
    overflow: hidden;
}

body.no-scroll::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navbar ul li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-navbar ul li a {
    display: block;
    padding: 15px 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-navbar ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.mobile-menu-close i {
    font-size: 18px;
    color: var(--dark);
}

.mobile-menu-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.mobile-menu-bottom a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
}

.mobile-menu-bottom a i {
    color: var(--primary);
    width: 20px;
}

/*MOBİLE HEADER END*/
/*SLİDER START*/

.mobileSlider,
.desktopSlider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mobileSwiper,
.desktopSwiper {
    width: 100%;
}

.swiper-slide {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.desktopSlider img,
.mobileSlider img {
    position: relative;
    height: 83vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.swiper-slide .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.swiper-slide .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fff;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.swiper-slide .content .toptitle {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper-slide .content .title {
    font-weight: 600;
    font-size: 52px;
    color: var(--white);
    line-height: 1.2;
}

.swiper-slide .content .text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
}

.swiper-slide .content-bottom .left-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    background: var(--primary);
    color: var(--white);
}

.swiper-slide .content-bottom .left-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(221, 51, 51, 0.3);
}

.swiper-slide .content-bottom .right-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.swiper-slide .content-bottom .right-btn:hover {
    background: var(--white);
    color: var(--text);
}

@media(max-width:992px) {
    .swiper-slide .content .title {
        font-size: 28px;
    }

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

    .swiper-slide .content-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .swiper-slide .content-bottom .left-btn,
    .swiper-slide .content-bottom .right-btn {
        width: 100%;
        width: 280px;
        justify-content: center;
    }
}

/*SLİDER END*/
/*STATS-BAR START*/
.stats-bar {
    position: relative;
    z-index: 7;
    margin-top: -60px;
    margin-bottom: -60px;
    padding: 0 20px;
}

.stats-bar .container {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stats-bar .item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 20px;
    border-right: 1px solid var(--light);
    transition: var(--transition);
}

.stats-bar .item:hover {
    background-color: var(--light);
}

.stats-bar i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.stats-bar .item .content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
}

.stats-bar .item .content .title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
}

.stats-bar .item .content .subtitle {
    font-size: 13px;
    color: var(--text-light);
}

@media(max-width:992px) {
    .stats-bar .container {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .stats-bar .item{
        border: none;
            margin-left: 58px;
    }
}

/*STATS-BAR END*/
/*SOLUTİONS START*/
.solutions {
    background-color: var(--light);
    padding-top: 140px;
}

.solutions .solutions-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.solutions .solutions-top .toptitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.solutions .solutions-top .title {
    font-size: 40px;
    font-weight: bold;
}

.solutions .solutions-top .subtitle {
    color: var(--text-light);
}

@media(max-width:992px) {
    .solutions .solutions-top .title {
        font-size: 25px;
    }
}

/*SOLUTİONS END*/
/*DETAİL-SOLUTİONS START*/
.detail-solutions {
    padding: 60px 0;
}

.detail-solutions .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.detail-solutions .container .left {
    grid-column: span 8;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 35px;
}

.detail-solutions .container .left .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 20px 0;
    max-width: 700px;
}

.detail-solutions .container .left .gallery .item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
    padding: 0;
}

.detail-solutions .container .left .gallery .item img {
    width: 100%;
    height: 100%; 
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.detail-solutions .container .right {
    grid-column: span 4;
}

@media (max-width: 992px) {
    .detail-solutions {
        padding: 60px 10px;
    }

    .detail-solutions .container {
        grid-template-columns: 1fr;
    }

    .detail-solutions .container .left {
        grid-column: span 1;
        gap: 40px;
    }

    .detail-solutions .container .left .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 100%;
    }

    .detail-solutions .container .right {
        grid-column: span 1;
    }
}

/*DETAİL-SOLUTİONS END*/
/*SOLUTİONS-BOX START*/
.solutions .container {
    padding: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solutions-box {
    min-width: 320px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-sm);
    display: block;
    text-decoration: none;
}

.solutions-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(26, 26, 46, 0.1) 100%);
    z-index: 1;
    transition: var(--transition);
}

.solutions-box:hover::before {
    background: linear-gradient(to top, rgba(221, 51, 51, 0.95) 0%, rgba(221, 51, 51, 0.6) 50%, rgba(221, 51, 51, 0.2) 100%);
}

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

.solutions-box:hover img {
    transform: scale(1.1);
}

.solutions-box .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

.solutions-box:hover .content {
    transform: translateY(0);
}

.solutions-box .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition);
}

.solutions-box .icon:hover {
    background: var(--white);
    color: var(--primary);
}

.solutions-box .title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
}

.solutions-box .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(10px);
    transition: var(--transition);
    display: block;
}

.solutions-box:hover .text {
    opacity: 1;
    transform: translateY(0);
}

.solutions-box button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    border: none;
    background: transparent;
    cursor: pointer;
}

.solutions-box:hover button {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:992px) {
    .solutions {
        padding-left: 10px;
        padding-right: 10px;
    }

    .solutions .solutions-top {
        font-size: 32px;
        align-items: start;
    }

    .solutions .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

}

/*SOLUTİONS-BOX END*/
/*TEMPLATE-SOLUTİONS-BOX START*/
.pages-solutions-box {
    padding: 40px 0;
}

.pages-solutions-box .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width:992px) {
    .pages-solutions-box {
        padding: 40px 10px;
    }

    .pages-solutions-box .container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*TEMPLATE-SOLUTİONS-BOX END*/
/*ABOUT START*/
.about {
    padding: 100px 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: 110px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge .number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-badge .text {
    font-size: 14px;
    margin-top: 5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.about-content .title {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content .subtitle {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    font-size: 30px;
}

.about-content .text {
    color: var(--text-light);
}

.about-content .articles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-content .articles .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    margin: 3px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.about-content .articles .item:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

@media(max-width:992px) {
    .about {
        padding: 100px 10px;
    }

    .about .container {
        grid-template-columns: repeat(1, 1fr) ;
        gap: 15px;
    }

    .about-badge {
        bottom: -30px;
        right: -7px;
        padding: 10px 10px;
    }

    .about-badge .number {
        font-size: 35px;
    }

    .about-content .articles .item {
        padding: 12px 10px;
    }

    .about-content .subtitle {
        font-size: 25px;
    }
}

/*ABOUT END*/
/*DETAİL-ABOUT START*/
.detail-blog {
    padding: 60px 0;
}

.detail-blog .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;

}

.detail-blog .container .left {
    grid-column: span 8;
}

.detail-blog .container .right {
    grid-column: span 4;
}

@media(max-width:992px) {
    .detail-blog {
        padding: 60px 10px;
    }

    .detail-blog .container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detail-blog .container .left {
        grid-column: span 1;
    }

    .detail-blog .container .right {
        grid-column: span 1;
    }
}

/*DETAİL-ABOUT END*/
/*SECTORS SATRT*/

.sectors {
    background: var(--light);
    padding: 100px 0;
}

.sectors-top {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
}

.sectors-top .title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sectors-top .subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.sectors .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.sectors .content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sectors .container i {
    color: var(--primary);
    font-size: 20px;
}

@media(max-width:992px) {
    .sectors-top .title {
        font-size: 25px;
    }
}

/*SECTORS END*/
/*BLOG START*/
.blog {
    padding: 100px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
}

.blog-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-top .toptitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
}

.blog-top .title {
    font-size: 40px;
    font-weight: bold;
}

.blog-top .subtitle {
    color: var(--text-light);
}

.blog .bottom-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 30px;
}

.blog .bottom-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.blog .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width:992px) {
    .blog {
        padding: 100px 10px;
    }

    .blog-top {
        align-items: start;
        gap: 8px;
    }

    .blog .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .blog-top .title{
        font-size: 25px;
    }
}

/*BLOG END*/
/*BLOG-BOX START*/
.blog-box {
    min-width: 320px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.blog-box-top {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-box-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-box-top span {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.blog-box .content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 12px;
}

.blog-box .content .title {
    font-size: 20px;
    line-height: 1.4;
    color: var(--dark);
    font-weight: 600;
}

.blog-box .content .text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.blog-box .content button {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/*BLOG-BOX END*/
/*TEMPLATE-BLOG START*/
.pages-blog-box {
    padding: 100px 0;
}

.pages-blog-box .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width:992px) {
    .pages-blog-box {
        padding: 100px 10px;
    }

    .pages-blog-box .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

/*TEMPLATE-BLOG END*/
/*CTA START*/
.cta {
    background: var(--light);
    padding: 80px 0 120px;
}

.cta .container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #c42a5a 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 50px rgba(221, 51, 51, 0.25);
}

.cta .cta-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 12px;
}

.cta .cta-left .cta-title {
    color: var(--white);
    font-size: 30px;
    color: var(--white);
    font-weight: 600;
}

.cta .cta-left .cta-text {
    color: var(--light);
    font-size: 16px;
}

.cta .cta-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta .cta-right .phone {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    transition: var(--transition);
}

.cta .cta-right i {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.cta .cta-right .item {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.cta .cta-right .item .text {
    color: var(--light);
    font-size: 13px;
    opacity: 0.7;
}

.cta .cta-right .item .no {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.cta .cta-right .right-btn {
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.cta .cta-right .right-btn:hover {
    background: var(--text);
    color: var(--white);
}

@media(max-width:992px) {
    .cta {
        padding: 80px 10px 30px 10px;
    }

    .cta .container {
        flex-direction: column;
        padding: 40px 20px;
        align-items: start;
    }

    .cta .cta-right {
        flex-direction: column;
    }

    .cta .cta-left .cta-title{
        font-size: 25px;
    }

}

/*CTA END*/
/*REFERANCES START*/
.references {
    padding: 60px 0;
    overflow: hidden;
}

.references .container {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: none;
}

.reference-item {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-shrink: 0;
}

.reference-item img {
    height: 150px;
    width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reference-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/*REFERANCES END*/
/* FOOTER */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer .container {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 80px;
    align-items: start;
}

/* LEFT */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-left img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-left img:hover {
    transform: scale(1.1);
}

.footer-left .text {
    color: var(--light);
    font-size: 15px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--primary);
    transition: var(--transition);
}

/* RIGHT */
.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* TITLES */
.footer-right .title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-right .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

/* CONTENT */
.footer-right .content {
    margin-top: 30px;
}

.footer-right ul li {
    margin-bottom: 12px;
}

.footer-right ul li a {
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
    transition: var(--transition);
}

.footer-right ul li a::before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--primary);
}

/* CONTACT */
.footer-last .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-last .content a {
    display: flex;
    align-items: start;
    gap: 10px;
    color: var(--light);
}

.footer-last .content a:hover {
    color: var(--primary);
    padding-left: 5px;
    transition: var(--transition);
}

.footer-last .content i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer {
        padding: 80px 15px 30px 15px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-right {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom .container {
        align-items: start;
        flex-direction: column;
    }
}

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

/*FOOTER END*/
/*WP BUTON START*/
.fixedButton {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fixedButton-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fixedButton-icon i {
    font-size: 22px;
}

.fixedButton-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.fixedButton-icon::before,
.fixedButton-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: wp-ring 2.5s infinite;
}

.fixedButton-icon::after {
    animation-delay: 1.25s;
}

@keyframes wp-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


@media (max-width: 992px) {
    .fixedButton {
        display: none;
    }
}

/*WP BUTON END*/
/* FOOTER STICKY MENU START */

.footer-sticky {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--dark);
    position: fixed;
    z-index: 9;
    width: 100%;
    bottom: 0;
    padding: 0 0.5rem 1.15rem 0.5rem;
    border-top-left-radius: 2.15rem;
    border-top-right-radius: 2.15rem;
    border-top: 6px solid var(--primary);
}

@media (max-width: 992px) {
    .footer-sticky {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.footer-sticky .sticky-box {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.footer-sticky .sticky-box .icon {
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
}

.footer-sticky .sticky-box .text {
    font-size: 14px;
    color: var(--light);
    text-align: center;
}

@media (max-width: 568px) {
    .footer-sticky .sticky-box .text {
        font-size: 10px;
    }
}

.footer-sticky .top-box .icon::before {
    content: "";
    position: absolute;
    height: 66px;
    width: 66px;
    border: 1px solid var(--light);
    border-radius: 50%;
    opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
    content: "";
    position: absolute;
    height: 56px;
    width: 56px;
    border: 1px solid var(--light);
    border-radius: 50%;
    opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
    font-size: 22px;
    color: var(--light);
}

.footer-sticky .top-box .icon i {
    font-size: 22px;
    color: var(--light);
}

.footer-sticky .top-box {
    -webkit-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
    text-align: center;
}

.footer-sticky .top-box .icon {
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

/* FOOTER STICKY BUTTON END */
/*CONTACT START*/
.contact {
    padding: 60px 0;
}

.contact .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

@media(max-width:992px) {
    .contact {
        padding: 50px 10px;
    }

    .contact .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

.contact-information {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 90px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact .contact-information .top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.contact-information .title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.contact-information .text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

.contact-information .bottom {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.contact-information .bottom .min-title {
    font-weight: 700;
    color: var(--secondary);
}

.contact-information .bottom a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.contact-information .bottom a i {
    color: var(--primary);
}


.contact-right {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    position: sticky;
    top: 120px;
}

.contact-form .title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input[type="hidden"] {
    display: none;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form .g-recaptcha,
.contact-form>form>div:has(.g-recaptcha) {
    margin: 0 !important;
    padding: 0 !important;
}

.contact-form button[type="submit"] {
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 5px;
}

.contact-form button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

.contact .maps iframe {
    padding-top: 25px;
    width: 100%;
}

/*CONTACT END*/
/*BREADCRUMB START*/

.breadcrumb {
    background: var(--light);
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb .links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb .links li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.breadcrumb .links li:not(:last-child)::after {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--text-light);
}

.breadcrumb .links a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb .links li:last-child {
    color: var(--primary);
    font-weight: 600;
}

@media(max-width: 992px) {
    .breadcrumb {
        padding: 30px 15px;
    }

    .breadcrumb .links {
        gap: 6px;
        flex-wrap: wrap;
    }

    .breadcrumb .links li {
        font-size: 14px;
        gap: 6px;
    }
}

/*BREADCRUMB END*/
/*OFFER FORM START*/
.offer {
    padding: 60px 0;
}

.offer .toptitle {
    display: block;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    text-align: start;
    position: relative;
    padding-bottom: 10px;
}

.offer .toptitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary);
}

.offer-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
}

.offer-form .title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.offer-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-form input[type="hidden"] {
    display: none;
}

.offer-form input[type="text"],
.offer-form input[type="email"],
.offer-form input[type="tel"],
.offer-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.offer-form input[type="text"]:focus,
.offer-form input[type="email"]:focus,
.offer-form input[type="tel"]:focus,
.offer-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.offer-form textarea {
    min-height: 120px;
    resize: vertical;
}

.offer-form input::placeholder,
.offer-form textarea::placeholder {
    color: #999;
}

.offer-form .g-recaptcha,
.offer-form>form>div:has(.g-recaptcha) {
    margin: 0 !important;
    padding: 0 !important;
}

.offer-form button[type="submit"] {
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 5px;
}

.offer-form button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offer-form button[type="submit"]:active {
    transform: translateY(0);
}

@media(max-width:992px) {
    .offer {
        padding: 60px 10px;
    }
}

/*OFFER FORM END*/
/*404 SART*/
.mistake {
    padding: 80px 0;
}

.mistake .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
    align-items: center;
}

.mistake .container .left {
    grid-column: span 6;
}

.mistake .container .right {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mistake .container .right .title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
}

.mistake .container .right .text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.mistake .container .right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    background: var(--primary);
    color: var(--white);
}

@media(max-width:992px){
    .mistake .container{
        grid-template-columns: repeat(6, 1fr);
    }
}

/*404 END*/