@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');

* {
    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%;
}


:root {
    --primary: #0A1628;
    --secondary: #00B4D8;
    --text: #334155;
    --text-light: #cdd8e8;
}

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

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

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

/* 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,
.content-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 table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-wrapper table th,
.content-wrapper table td {
    border: 1px solid black;
    padding: 10px;
    text-align: left;
}

/* CONTENT WRAPPER END */

.breadcrumb {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 30px 0;
    color: #fff;
    background-size: 200% 100%;
    background-position: left;
}

.breadcrumb .title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb .links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 0.95rem;
}

.breadcrumb .links li {
    position: relative;
}

.breadcrumb .links li::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb .links li:last-child::after {
    content: '';
    margin: 0;
}

.breadcrumb .links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

}

/* TAPE START */
.tape {
    background-color: var(--primary);
    overflow: hidden;
    padding: 12px 0;
}

.tape-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
}

.tape-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tape-item i {
    color: var(--secondary);
    font-size: 15px;
}

/* TAPE END */

/* ACTIVITIES START */
.activities {
    padding: 80px 0;
    background-color: #f0f9ff;
    text-align: center;
}

.activities .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 12px;
}

.activities .top .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.activities .top .title i {
    font-size: 12px;
}

.activities .top .sub {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

.activities .top .text {
    font-size: 15px;
    color: var(--text);
    max-width: 560px;
    line-height: 1.7;
}

.activities .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 40px 0;
}

.activities-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 360px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
}

.activities-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 360px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
}

.activities-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activities-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.7) 60%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.activities-box:hover::after {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.2) 0%, rgba(10, 22, 40, 0.8) 50%, rgba(10, 22, 40, 0.97) 100%);
}

.activities-box .content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
}

.activities-box .content>i {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0, 180, 216, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 16px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1) rotate(0deg);
    flex-shrink: 0;
}

.activities-box:hover .content>i {
    background: var(--secondary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.35);
    transform: scale(1.1) rotate(-5deg);
}

.activities-box .title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.activities-box .text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.activities-box:hover .text {
    max-height: 100px;
    opacity: 1;
}

.activities-box button {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    cursor: pointer;
}

.activities-box button i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

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

.activities-box:hover button i {
    transform: translateX(3px);
}

.activities-box:hover img {
    transform: scale(1.06);
}

.activities-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.3);
}

.activities .next {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.activities .next i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.activities .next:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .activities .container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .activities .top .sub {
        font-size: 26px;
    }

    .activities-box {
        height: 280px;
    }

    .activities-box:hover {
        transform: none;
    }

    .activities-box .text {
        max-height: 100px;
        opacity: 1;
    }

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

/* ACTIVITIES END */

/* ACTIVITIES BREAKDOWN START */

.breakdown {
    padding: 60px 0;
}

.breakdown .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.breakdown .container:has(.breakdown-box:only-child) {
    grid-template-columns: 1fr;
    max-width: 440px;
}

.breakdown-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 360px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    background: #f5f5f5;
}

.breakdown-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.breakdown-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.7) 60%, rgba(10, 22, 40, 0.95) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.breakdown-box:hover::after {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.2) 0%, rgba(10, 22, 40, 0.8) 50%, rgba(10, 22, 40, 0.97) 100%);
}

.breakdown-box .content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
}

.breakdown-box .content>i {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0, 180, 216, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 16px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1) rotate(0deg);
    flex-shrink: 0;
}

.breakdown-box:hover .content>i {
    background: var(--secondary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.35);
    transform: scale(1.1) rotate(-5deg);
}

.breakdown-box .title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.breakdown-box .text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.breakdown-box:hover .text {
    max-height: 100px;
    opacity: 1;
}

.breakdown-box button {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    cursor: pointer;
}

.breakdown-box button i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

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

.breakdown-box:hover button i {
    transform: translateX(3px);
}

.breakdown-box:hover img {
    transform: scale(1.06);
}

.breakdown-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.3);
}

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

/* TEMPLATE ACTIVITIES START */
.template-activities {
    padding: 40px 0;
}

/* TEMPLATE ACTIVITIES END */

/* SİNGLE ACTIVITIES START */
.single-activities {
    padding: 40px 0;
}

.single-activities .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
    align-items: start;
}

.single-activities .left {
    grid-column: span 8;
}

.single-activities .right {
    grid-column: span 4;
    position: sticky;
    top: 100px;
}

/* GALERİ */
.single-activities .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.single-activities .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
}

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

.single-activities .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .single-activities .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .single-activities .left,
    .single-activities .right {
        grid-column: span 1;
    }

    .single-activities .right {
        position: static;
    }
}

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

/* SİNGLE ACTIVITIES END */

/* SERVICES START */
.services {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.services .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.services .top .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services .top .title i {
    font-size: 8px;
}

.services .top .sub {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

.services .top .text {
    font-size: 15px;
    color: var(--text);
    max-width: 560px;
    line-height: 1.7;
}

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

.services-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 180, 216, 0.12);
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 140px;
}

.services-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.15);
}

.services-box img {
    width: 160px;
    min-width: 160px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.services-box .content {
    padding: 8px 24px;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
    flex: 1;
}

.services-box .content>i {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 4px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1) rotate(0deg);
}

.services-box:hover .content>i {
    background: var(--secondary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.35);
    transform: scale(1.1) rotate(-5deg);
}

.services-box .title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.services-box .text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.services-box button {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-top: 4px;
    cursor: pointer;
    transition: gap 0.2s ease;
}

.services-box button i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.services-box:hover button i {
    transform: translateX(4px);
}

.services .next {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.services .next i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services .next:hover i {
    transform: translateX(4px);
}

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

    .services .top .sub {
        font-size: 26px;
    }

    .services-box {
        flex-direction: column;
    }

    .services-box img {
        width: 100%;
        min-width: unset;
        height: 200px;
        object-position: top;
    }

    .services-box:hover {
        transform: none;
    }
}

/* SERVICES END */

/* TEMPLATE SERVICES START */
.template-services {
    padding: 80px 0;
}

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

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

/* TEMPLATE SERVICES END */

/* SİNGLE SERVİCES START */
.single-services {
    padding: 40px 0;
}

.single-services .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
    align-items: start;
}

.single-services .left {
    grid-column: span 8;
}

.single-services .right {
    grid-column: span 4;
    position: sticky;
    top: 100px;
}

/* GALERİ */
.single-services .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.single-services .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
}

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

.single-services .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .single-services .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .single-services .left,
    .single-services .right {
        grid-column: span 1;
    }

    .single-services .right {
        position: static;
    }
}

/* SİNGLE SERVİCES END */

/* PROCESS SECTION START */
.process {
    background-color: var(--primary);
    padding: 80px 0;
}

.process .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.process .top .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process .top .sub {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.process .top .text {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

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

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.process-head {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 180, 216, 0.3);
    background-color: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-item:hover .process-number {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.25);
}

.process-line {
    position: absolute;
    top: 50%;
    left: calc(55% + 30px);
    width: calc(90% - 40px);
    height: 1px;
    background-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.process-line i {
    color: rgba(0, 180, 216, 0.5);
    font-size: 12px;
    margin-right: -2px;
}

.process-item:nth-child(4n) .process-line,
.process-item:last-child .process-line {
    display: none !important;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-content .title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.process-content .text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process {
        padding: 80px 20px;
    }

    .process .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-line {
        display: none !important;
    }

    .process .top .sub {
        font-size: 26px;
    }
}

/* PROCESS SECTION END */

/* CATALOG START */
.catalog {
    padding: 80px 0;
    background: #f0f9ff;
}

.catalog .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.catalog-left {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.catalog-book {
    position: relative;
    width: 260px;
    height: 340px;
    border-radius: 4px 16px 16px 4px;
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3a5c 100%);
    box-shadow: -6px 0 0 rgba(0, 180, 216, 0.8), -10px 8px 40px rgba(0, 0, 0, 0.4), 20px 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}

.catalog-book::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--secondary);
    border-radius: 4px 0 0 4px;
}

.catalog-book::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 16px 16px 0;
}

.catalog-book:hover {
    transform: perspective(1000px) rotateY(-18deg) rotateX(3deg);
    box-shadow: -6px 0 0 rgba(0, 180, 216, 0.9), -20px 20px 60px rgba(0, 0, 0, 0.5), 30px 30px 80px rgba(0, 0, 0, 0.15);
}

.catalog-book-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 30px;
}

.catalog-book-inner>i {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.catalog-book .book-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.catalog-book .book-brand {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.catalog-book .book-year {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 8px;
}

.catalog-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog-right .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.catalog-right .title i {
    font-size: 8px;
}

.catalog-right .sub {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

.catalog-right .text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.catalog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
}

.catalog-list li i {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--secondary);
    flex-shrink: 0;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.catalog-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .catalog .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .catalog-book {
        width: 200px;
        height: 260px;
    }

    .catalog-book:hover {
        transform: none;
    }

    .catalog-right .sub {
        font-size: 26px;
    }
}

/* CATALOG END */

/* REFERANCES START */
.referances {
    padding: 80px 0;
    background: #fff;
}

.referances .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 50px;
}

.referances .top .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.referances .top .title i {
    font-size: 8px;
}

.referances .top .sub {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

.references-imgs {
    overflow: hidden;
    position: relative;
}

.references-imgs::before,
.references-imgs::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.references-imgs::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.references-imgs::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.references-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 50s linear infinite;
    will-change: transform;
}

.references-imgs:hover .references-track {
    animation-play-state: paused;
}

.references-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.references-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.references-item img {
    max-width: 230px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .referances .top .sub {
        font-size: 26px;
    }

    .references-imgs::before,
    .references-imgs::after {
        width: 40px;
    }
}

/* REFERANCES END */

/* FAQ START */
.faq {
    padding: 80px 0;
    background: #f0f9ff;
}

.faq .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 50px;
}

.faq .top .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq .top .title i {
    font-size: 8px;
}

.faq .top .sub {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

.faq .container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: var(--secondary);
}

.faq-question i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 180, 216, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    background: var(--secondary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-right {
    position: sticky;
    top: 100px;
}

.faq-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card>i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.faq-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
}

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

.faq-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--secondary);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.faq-card-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.faq-card-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
}

.faq-card-phone i {
    color: var(--secondary);
    font-size: 14px;
}

.faq-card-phone span strong {
    color: var(--primary);
    font-weight: 700;
}

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

    .faq-right {
        position: static;
    }

    .faq .top .sub {
        font-size: 26px;
    }
}

/* FAQ END */

/* WHY START */
.why {
    padding: 80px 0;
    background: #fff;
}

.why .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 50px;
}

.why .top .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why .top .label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: inline-block;
}

.why .top .title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

.why .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.why .item:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.12);
    transform: translateY(-4px);
}

.why .item .number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.why .item .sub {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    padding-bottom: 12px;
    width: 140px;
    border-bottom: 2px solid rgba(0, 180, 216, 0.4);
}

.why .item .text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

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

    .why .top .title {
        font-size: 26px;
    }

    .why .item {
        align-items: start;
        text-align: start;
    }

    .why .item .sub {
        width: 85px;
    }

    .why .item:hover {
        transform: none;
    }
}

/* WHY END */

/* CONTACT START */
.contact {
    padding: 80px 0;
    background: #f0f9ff;
}

.contact .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 50px;
}

.contact .top .label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact .top .label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: inline-block;
}

.contact .top .title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}

.contact .container {
    display: flex;
    overflow: hidden;
}

.contact .left {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #0a1628 0%, #0e2a4a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    gap: 16px;
    text-align: center;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.contact .left i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 180, 216, 0.4);
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact .left span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.contact .left a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact .left a:hover {
    color: var(--secondary);
}

.contact .right {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 180, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
}

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

.contact-info a:hover {
    color: var(--secondary);
}

.contact .more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 13px 28px;
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact .more-btn i {
    transition: transform 0.3s ease;
}

.contact .more-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.contact .more-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .contact .container {
        flex-direction: column;
        gap: 15px;
    }

    .contact .left {
        flex: 0 0 auto;
        padding: 40px 25px;
        border-radius: 16px;
    }

    .contact .right {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .contact .top .title {
        font-size: 26px;
    }
}

/* CONTACT END */

/* TEPLATE CONTACT START */
.template-contact {
    padding: 50px 0;
    background-color: #f0f9ff;
}

.template-contact .grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 16px;
}

.main_form .bigtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.main_form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.main_form .name-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main_form input,
.main_form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.main_form input:focus,
.main_form textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 180, 216, 0.3);
}

.main_form .bottom {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main_form button {
    padding: 12px 30px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: 150px;
}

.main_form button:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .main_form .name-group {
        flex-direction: column;
    }
}

/* CONTACT TEMPLADTE END */



/* FOOTER START */
.footer {
    background: linear-gradient(135deg, #0a1628 0%, #0e2a4a 100%);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--secondary);
}

.footer-social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-social-wrapper span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 15px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.footer-bottom {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

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

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
}

@media (max-width: 992px) {
    .footer-nav ul {
        gap: 20px;
    }

    .footer-contact-bar {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* FOOTER END */

/* OFFER FORM START*/

.template-offer {
    padding: 50px 0;
    background: #f0f9ff;
}

.template-offer .container {
    max-width: 720px;
}

.template-offer>.container>span:first-child {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.template-offer>.container>span:nth-child(2) {
    display: block;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.8;
}

.offer_form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 32px rgba(10, 22, 40, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer_form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.offer_form input[type="text"],
.offer_form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dce6f0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.offer_form input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
    background: #fff;
}

.offer_form input::placeholder {
    color: #aab8cc;
    font-size: 15px;
}

.offer_form .name-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.offer_form .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.offer_form button[type="submit"] {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.offer_form button[type="submit"]:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}

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

.offer_form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dce6f0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
}

.offer_form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
    background: #fff;
}

.offer_form textarea::placeholder {
    color: #aab8cc;
}

.offer_form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dce6f0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
}

.offer_form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
    background: #fff;
}

.offer_form textarea::placeholder {
    color: #aab8cc;
}

@media (max-width: 600px) {
    .offer_form {
        padding: 28px 20px;
    }

    .offer_form .name-group {
        grid-template-columns: 1fr;
    }

    .offer_form .bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .offer_form button[type="submit"] {
        width: 100%;
        text-align: center;
    }

    .template-offer>.container>span:first-child {
        font-size: 2rem;
    }
}

/* OFFER FORM END */

/* ABOUT START */

.about {
    padding: 80px 0;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about .left {
    flex: 0 0 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    align-items: start;
}

.about .left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #fff 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.about .left::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.about .left .about-img-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.6s ease-out;
}

.about .left .about-img-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.about .left .about-img-item:hover img {
    transform: scale(1.04);
}

.about .left {
    flex: 0 0 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: hidden;
    height: 620px;
}

.about .left .col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    will-change: transform;
}

.about-img-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

@keyframes upFlow {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes downFlow {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.col-up {
    animation: upFlow 12s linear infinite;
}

.col-down {
    animation: downFlow 12s linear infinite;
}

.about .left:hover .col-up,
.about .left:hover .col-down {
    animation-play-state: paused;
}


.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.about .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about .right .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about .right .title::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: inline-block;
}

.about .right .sub {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    display: block;
}

.about .right .text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.about .right .about-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about .right .about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
}

.about .right .about-list li i {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--secondary);
    flex-shrink: 0;
}

.about-btns {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--secondary);
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

@media (max-width: 992px) {
    .about .container {
        flex-direction: column;
        gap: 40px;
    }

    .about .left {
        flex: 0 0 auto;
        width: 100%;
    }

    .about .right .sub {
        font-size: 26px;
    }

    .about-btns {
        flex-direction: column;
    }
}

/* ABOUT END */


/* ABOUT-TEMPLATE SATRT */
.template-about {
    padding: 40px 0;
}

/* ABOUT-TEMPLATE 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 .left img {
    border-radius: 16px;
}

.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: 10px;
    background: var(--secondary);
    color: #fff;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;

}

/*404 END*/

/* CATALOG-MODAL START */

.catalog-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.catalog-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 1rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(20px);
    animation: catalogSlideUp 0.35s ease forwards;
}

@keyframes catalogSlideUp {
    to {
        transform: translateY(0);
    }
}

.catalog-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
}

.catalog-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.catalog-modal-inner {
    display: flex;
    flex-direction: column;
}

.catalog-modal-title {
    margin: 0;
    padding: 24px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-modal-title::before {
    content: "\2744";
    color: var(--secondary);
    font-size: 18px;
}

.catalog-modal-inner .container {
    padding: 8px 0;
}

.catalog-modal-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.catalog-modal-box:last-child {
    border-bottom: none;
}

.catalog-modal-box:hover {
    background: #f8fafb;
}

.catalog-modal-box>i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #00d4ff;
    font-size: 18px;
    border-radius: 10px;
}

.catalog-modal-box>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.catalog-modal-box>div>span {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.catalog-modal-box>div>div {
    font-size: 13px;
    color: #8a9bb0;
    line-height: 1.4;
}

.catalog-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-top: 1px solid #f0f0f0;
}

.catalog-modal-footer span {
    font-size: 13px;
    color: #8a9bb0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.catalog-modal-footer span::before {
    content: "\24D8";
    font-size: 14px;
}

.catalog-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.catalog-modal-cta:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}

.catalog-modal-cta i {
    font-size: 13px;
}


@media (max-width: 480px) {
    .catalog-modal-wrapper {
        max-width: 100%;
        margin: 0.5rem;
        border-radius: 12px;
    }

    .catalog-modal-box {
        padding: 14px 20px;
    }

    .catalog-modal-title {
        padding: 20px;
        font-size: 15px;
    }

    .catalog-modal-footer {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

    .catalog-modal-cta {
        width: 100%;
        justify-content: center;
    }
}

/* CATALOG-MODAL 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: #222;
    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(--secondary);
}

@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: white;
    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 white;
    border-radius: 50%;
    opacity: 0.5;
}

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

.footer-sticky .sticky-box .icon i {
    font-size: 22px;
    color: white;
}

.footer-sticky .top-box .icon i {
    font-size: 22px;
    color: white;
}

.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: #222;
    border-radius: 50%;
    position: relative;
}

/* FOOTER STICKY BUTTON END */

/* SEARCH START */
.search-section{
    padding: 40px 0;
}
/* SEARCH END */
