
/* Math Teacher Font url */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat.ttf') format('truetype');
}

/* Default CSS */
:root {
    --primary-color: #005082; /* Mavi */
    --primary-color-low: rgb(33, 100, 141);
    --primary-color-dark: #003c66;

    --secondary-color: #adb5bd; /* Açık Gri */
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef; /* Beyazımsı Gri */
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #f8f9fa; /* Beyaz */
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e4e7eb;

    --text-dark: #343a40; /* Koyu Gri */
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa; /* Beyaz */
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #005082; /* Daha koyu ve soft mavi */
    --button-color-low: rgba(0, 80, 130, 0.5);
    --button-color-dark: #003c66;

    --card-bg: #ffffff;
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* reset all the default styles */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    Line-height: 0.9;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    display: flex;
    position: relative;
    background-color: var(--bg-color);
}

header {
    width: 100%;
    position: fixed;
    top: -10px;
    left: 0;
    z-index: 1000;
}






.navbar {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}



.navbar .left {
    width: 35%;
}

.navbar .left .logo {
    width: 100%;
}

.navbar .left .logo a {
    display: flex;
    justify-content: start;
    align-items: center;
}

.navbar .left .logo img {
    width: 20%;
    height: auto;
    transition: all 0.3s ease;
}

.navbar .left .logo h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #4e4d4d;
    margin-left: 10px;
    letter-spacing: 1px;
    position: relative;
    top: 7px;
    transition: all 0.3s ease;
    transition-delay: 0.2s;
    transform: translateX(10px);
    opacity: 0;
}

[data-is-scrolled="true"] .navbar .left .logo h2 {
    transform: translateX(0);
    opacity: 1;
}

header.active .navbar .left .logo h2 {
    transform: translateX(0);
    opacity: 1;
}

.navbar .right {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.navbar .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

.navbar .menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar .menu ul li {
    margin: 0 10px;
}

.navbar .menu ul li a {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
}

[data-is-scrolled="true"] header {
    background-color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.active {
    background-color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[data-is-scrolled="true"] .navbar .left .logo img {
    width: 13%;
}

[data-is-scrolled="true"] .navbar {
    padding-bottom: 0.7rem;
}

.pageBG {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    z-index: -1;
}


/* Navbar Responsive */

@media screen and (max-width: 1200px) {


    [data-is-scrolled="true"] .navbar {
        padding-bottom: 1rem!important;
    }

    .navbar .left .logo span {
        font-size: 1.7rem;
    }

    .navbar .right .menu {
        width: 70%;
    }
}

@media screen and (max-width: 1100px) {
    .navbar {
        width: 90%;
    }

    .navbar .left {
        width: 60%;
    }

    .navbar .left .logo span {
        font-size: 1.3rem;
        top: 3px;
    }
}

.navbar .right .mobile-menu {
    display: none;
}

@media screen and (max-width: 991px) {
    .navbar {
        width: 95%;
        z-index: 1000;
    }

    

    .navbar .left {
        width: 80%;
    }

    .navbar .right {
        width: 20%;
    }

    .navbar .left .logo {
        width: 100%;
    }

    .navbar .left .logo a {
        width: 100%;
    }

    .navbar .left .logo img {
        width: 13%!important;
    }

    [data-is-scrolled="true"] .navbar .left .logo img {
        width: 10%!important;
    }

    .navbar .left .logo span {
        font-size: 1.4rem;
        top: 8px;
    }

    .navbar .right .menu {
        display: none;
    }

    .burger {
        width: 43px;
        height: 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
        gap: 10px;
        padding: 5px;
        margin-right: 10px;
        cursor: pointer;
    }



    .burger .line {
        width: 100%;
        height: 4px;
        background-color: var(--text-dark);
        transition: all 0.3s ease;
        
    }
    

    .navbar .right .mobile-menu {
        display: flex;
        position: absolute;
        top: 100%;
        right: -100%;
        width: 30%;
        height: 100vh;
        background-color: var(--bg-color);
        z-index: 1000;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: all 0.3s ease;
        z-index: -1;
        opacity: 0;
    }

    .navbar .right .mobile-menu.active {
        right: 0;
        opacity: 1;
    }

    .navbar .right .mobile-menu ul {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 2rem;
        width: 100%;
    }

    .navbar .right .mobile-menu ul li {
        margin: 0;
        margin-right: 2px;
        width: 100%;
    }

    .navbar .right .mobile-menu ul li a {
        font-size: 1.3rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
    }

    .navbar .right .mobile-menu ul li a::after {
        content: '\f105';
        font-family: 'Font Awesome 5 Free';
        font-weight: 600;
        font-size: 1.2rem;
        margin-left: 5px;
        color: var(--primary-color);
    }

    

    .navbar .right .mobile-menu .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }

    .navbar .right .mobile-menu .contact .logo {
        width: 15%;
    }

    .navbar .right .mobile-menu .contact .logo img {
        width: 100%;
    }

    .navbar .right .mobile-menu .contact .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar .right .mobile-menu .contact .content h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .navbar .right .mobile-menu .contact .content p {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--text-dark-low);
        margin-top: 10px;
    }

    .navbar .right .mobile-menu .sub-menu ul {
        
        display: flex;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }


    .navbar .right .mobile-menu ul .sub-menu.active ul {
        margin-top: 10px;
        gap: 10px;
    }

    .navbar .right .mobile-menu ul .sub-menu ul li {
        margin-left: 20px;
    }

    .navbar .right .mobile-menu ul .sub-menu ul li a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .navbar .left .logo h2 {
        font-size: 1.4rem;
    }

    .navbar .right .mobile-menu {
        width: 35%;
    }

    .navbar .right .mobile-menu ul li a {
        font-size: 1.1rem;
    }

    .navbar .right .mobile-menu .contact .content h2 {
        font-size: 1.3rem;
    }

    .navbar .right .mobile-menu .contact .content p {
        font-size: 1.1rem;
    }

    .navbar .left .logo img {
        width: 22%!important;
    }

    [data-is-scrolled="true"] .navbar .left .logo img {
        width: 18%!important;
    }

    .burger {
        width: 40px;
        height: 40px;
        gap: 8px;
    }

    .burger .line {
        height: 3px;
    }

    .navbar .right .mobile-menu ul .sub-menu ul li a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 500px) {
    .navbar .left .logo span {
        font-size: 1rem;
    }

    .navbar .right .mobile-menu {
        width: 40%;
    }

    .navbar .right .mobile-menu ul li a {
        font-size: 1rem;
    }

    .navbar .right .mobile-menu .contact .content h2 {
        font-size: 1.2rem;
    }

    .navbar .right .mobile-menu .contact .content p {
        font-size: 1rem;
    }

    .navbar .left .logo img {
        width: 25%!important;
    }

    .navbar .right .mobile-menu ul .sub-menu ul li a {
        font-size: 0.9rem;
    }
}



.landing-sec {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.landing-sec .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.landing-sec .bg .inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.landing-sec .math {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.landing-sec .math svg {
    width: 100%;
}

.landing-sec .math p {
    display: flex;
    flex-direction: row;
    width: max-content;
    position: absolute;
}

.landing-sec .bg .inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    opacity: 1;
}

.landing-sec .bg .inner .bgsquares {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 1;
}

.landing-sec .bg .inner .gradient {
    width: 3000px;
    height: 3000px;
    position: absolute;
    top: -2000px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-dark));
    opacity: 0.7;
    z-index: 1;
}





.landing-sec .inner {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.landing-sec .inner .left {
    width: 60%;
}

.landing-sec .inner .left .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 10%;
}


.landing-sec .inner .left h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 600;
    color: var(--text-dark);
}

.landing-sec .inner .left p {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.landing-sec .inner .left .btn {
    margin-top: 10px;
}

.landing-sec .inner .right {
    width: 50%;
    position: relative;
}

/* Landing Responsive */

@media screen and (max-width: 1500px) {
    .landing-sec .inner .left h1 {
        font-size: 5rem;
    }

    .landing-sec .bg {
        width: 150%;
        left: -25%;
    }
    
}

@media screen and (max-width: 1200px) {
    .landing-sec .inner .left h1 {
        font-size: 4rem;
    }

    .landing-sec .inner {
        width: 85%;
    }

    
    
}

@media screen and (max-width: 991px) {
    .landing-sec .inner {
        width: 90%;
        flex-direction: column-reverse
    }

    .landing-sec .inner .left {
        width: 100%;
        margin-top: -30px;
    }

    .landing-sec .inner .right {
        width: 75%;
        margin-top: 50px;
    }

    .landing-sec .inner .left .content {
        justify-content: center;
        align-items: center;
    }

    .landing-sec .inner .left h1 {
        font-size: 3.5rem;
    }

    .landing-sec .inner .left p {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 767px) {
    .landing-sec .inner .left h1 {
        font-size: 2.5rem;
    }

    .landing-sec .inner .left p {
        font-size: 1.1rem;
    }

    .landing-sec .bg {
        width: 200%;
        left: -50%;
    }
}

@media screen and (max-width: 650px) {
    .landing-sec .inner .left h1 {
        font-size: 2rem;
    }

    .landing-sec .inner .left p {
        font-size: 1rem;
    }

    .landing-sec .bg {
        width: 300%;
        left: -100%;
        height: 85%;
    }
}


.categories-sec {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 80px;
}

.categories-sec .head {
    width: 60%;
    padding-top: 40px;
}

.categories-sec .head .card {
    width: 100%;
    height: 380px;
    background-color: var(--card-bg);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}



.categories-sec .head .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.categories-sec .head .card .left {
    padding: 2rem;
    width: 50%;
    padding-top: 20px;
}

.categories-sec .head .card .left h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.categories-sec .head .card .left p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.categories-sec .head .card .right {
    width: 50%;
}

.categories-sec .head .card .right {
    width: 50%;
    overflow: hidden;
}

.categories-sec .head .card .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-sec .body {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.categories-sec .body .list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    margin-top: 70px;
}

.categories-sec .body .list .card {
    width: 25%;
    background-color: var(--card-bg);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.categories-sec.category-area .body .list .card {
    margin-top: 80px;
}

.categories-sec .body .list .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.categories-sec .body .list .card .image {
    width: 100%;
    height: 250px;
    background-color: var(--bg-color-dark);
    position: relative;
    border-radius: 2rem 2rem 0 0;
}

.categories-sec .body .list .card .image img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.categories-sec .body .list .card .content {
    padding: 5%;
    width: 90%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    overflow: hidden;
}

.categories-sec .body .list .card .content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.categories-sec .body .list .card .content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark-low);
    margin-top: 10px;
}

/* categories Responsive */
@media screen and (max-width: 1500px) {
    .categories-sec .head {
        width: 80%;
    }


    .categories-sec .head .card {
        height: 400px;

    }

    .categories-sec .body .list .card {
        width: 30%;
    }
}

@media screen and (max-width: 1100px) {
    .categories-sec .head {
        width: 90%;
    }

    .categories-sec .head .card {
        height: 450px;
    }

    .categories-sec .body .list .card {
        width: 45%;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 991px) {
    .categories-sec .head .card {
        flex-direction: column;
        height: 500px;
    }

    .categories-sec .head .card .left {
        width: calc(100% - 4rem);
        padding: 2rem;
    }

    .categories-sec .head .card .right {
        width: 100%;
    }

    .categories-sec .head .card .right .image {
        height: 100%;
    }

    .categories-sec .head .card .right img {
        height: 100%;
        object-fit: contain;
    }

    .categories-sec .body .list .card {
        width: 85%;
    }
}

@media screen and (max-width: 767px) {
    .categories-sec .head .card {
        height: 600px;
    }

    .categories-sec .body .list .card {
        width: 90%;
    }
}



.profits {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 80px;
}

.profits .body {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.profits .body .cards {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.profits .body .cards .left {
    width: 35%;
}


.profits .body .cards .right {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.profits .body .cards .card {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.profits .body .cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.profits .body .cards .card .card-inner {
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.profits .body .cards .right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.profits .body .cards .right .card:nth-child(1) {
    height: 200px;
}

.profits .body .cards .right .card:nth-child(1) .image {
    width: 180px;
    position: relative;
    left: -20px;
}

.profits .body .cards .right .card:nth-child(2),
.profits .body .cards .right .card:nth-child(3) {
    width: calc(50% - 0.5rem);
    height: 300px;
}


.profits .body .cards .card .card-inner h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
}

.profits .body .cards .card .card-inner p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark-low);
    margin-top: 10px;
    line-height: 1.4;
}

.profits .body .cards .left .card .image {
    position: absolute;
    width: 100%;
    bottom: -55px;
}

/* Profits Responsive */
@media screen and (max-width: 1500px) {
    .profits .body {
        width: 90%;
    }

    .profits .body .cards .left {
        width: 40%;
    }

    .profits .body .cards .right {
        width: 60%;
    }

    .profits .body .cards .right .card:nth-child(1) {
        height: 230px;
    }
}

@media screen and (max-width: 1200px) {
    .profits .body {
        width: 90%;
    }

    .profits .body .cards .left,
    .profits .body .cards .right {
        width: 100%;
    }

    .profits .body .cards {
        flex-direction: column;
        gap: 2rem;
    }

    .profits .body .cards .right {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .profits .body .cards .left .card {
        width: 100%;
        height: 250px;
    }

    .profits .body .cards .left .card p {
        width: 60%;
    }

    .profits .body .cards .left .card .image {
        bottom: -30px;
        width: 300px;
        left: unset;
        right: 0;
    }

    .profits .body .cards .right .card:nth-child(2),
    .profits .body .cards .right .card:nth-child(3) {
        width: calc(50% - 0.5rem);
        height: 250px;
    }
}

@media screen and (max-width: 991px) {
    .profits .body {
        flex-direction: column;
        align-items: center;
    }

    

    .profits .body .cards .right .card:nth-child(2),
    .profits .body .cards .right .card:nth-child(3) {
        width: 100%;
    }

    .profits .body .cards .left .card {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .profits .body .cards .left .card .image {
        bottom: -30px;
    }

    .profits .body .cards .card .card-inner h2 {
        font-size: 1.2rem;
    }

    .profits .body .cards .card .card-inner p {
        font-size: 1rem;
    }

    .profits .body .cards .right .card:nth-child(2),
    .profits .body .cards .right .card:nth-child(3) {
        height: auto;
    }
}

@media screen and (max-width: 650px) {
    .profits .body .cards .left .card .image {
        position: relative;
        height: 180px;
        margin-top: -50px;
    }

    .profits .body .cards .left .card {
        flex-direction: column;
        height: auto;
    }

    .profits .body .cards .left .card p {
        width: 100%;
    }

    

    .profits .body .cards .card .card-inner h2 {
        font-size: 1.1rem;
    }

    .profits .body .cards .card .card-inner p {
        font-size: 1rem;
    }

    .profits .body .cards .right .card:nth-child(1),
    .profits .body .cards .right .card:nth-child(2),
    .profits .body .cards .right .card:nth-child(3) {
        height: auto;
    }

    .profits .body .cards .right .card:nth-child(1) .image {
        width: 100px;
    }
}


.about-sec {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 80px;
    margin-top: 150px;
}

.about-sec .head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80vh;
    background-color: var(--bg-color-dark);
    position: relative;
}

.about-sec .head .bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: -47%;
    z-index: 1;
    position: absolute;
}

.about-sec .head .bg .inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-sec .head .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 5;
}

.about-sec .head .bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about-sec .head .bg::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, var(--bg-color-dark) 15%, transparent 60%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.3s ease;
}


.about-sec .head .left {
    width: 50%;
    height: 90%;
    align-self: flex-end;
    z-index: 2;
}

.about-sec .head .left .image {
    width: 60%;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.about-sec .head .left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.about-sec .head .right {
    width: 40%;
    margin-right: 8%;
    z-index: 2;
}

.about-sec .head .right .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 10%;
}

.about-sec .head .right h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-sec .head .right p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark-low);
    margin-top: 20px;
}

.about-sec .head .right .btn {
    margin-top: 20px;
}


.about-sec .body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -60px;
    z-index: 2;

}




.about-sec .body .counters {
    width: 80%;
    background-color: var(--card-bg);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}
.about-sec .body .counters:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}


.about-sec .body .counters .counter {
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    position: relative;
    left: 4%;
}

.about-sec .body .counters .counter .icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-color-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-sec .body .counters .counter .icon img {
    width: 65%;
    height: auto;
}

.about-sec .body .counters .counter .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.about-sec .body .counters .counter .content .text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color-dark);
}

.about-sec .body .counters .counter .content .number {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark-low);
    margin-top: 10px;
    position: relative;
}

.about-sec .body .counters .counter .content .number .count {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-sec .body .counters .counter .content .number .base-unit {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    position: relative;
    left: 3px;
}

.about-sec .body .counters .counter .content .number .unit {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    position: relative;
    left: -3px;
}

/*- About Responsive -*/

@media screen and (max-width: 1500px) {
    /* counters */

    .about-sec .body .counters {
        width: 90%;
    }

    .about-sec .body .counters .counter {
        width: 30%;
    }

    .about-sec .body .counters .counter .icon {
        width: 70px;
        height: 70px;
    }

    .about-sec .body .counters .counter .icon img {
        width: 60%;
    }

    .about-sec .body .counters .counter .content .text {
        font-size: 1.3rem;
    }

    .about-sec .body .counters .counter .content .number {
        font-size: 1rem;
    }

    .about-sec .body .counters .counter .content .number .count {
        font-size: 1.5rem;
    }

    .about-sec .body .counters .counter .content .number .base-unit {
        font-size: 1.3rem;
    }

    .about-sec .body .counters .counter .content .number .unit {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 1200px) {

    .about-sec .head .left .image {
        width: 65%;
    }

    /* counters */

    .about-sec .body .counters {
        width: 85%;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem;
    }

    .about-sec .body .counters .counter {
        width: 45%;
        left: 9%;
    }
}

@media screen and (max-width: 991px) {
    .about-sec {
        overflow: hidden;
    }

    .about-sec .head {
        flex-direction: column-reverse;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .about-sec .head .left {
        width:50%;
        align-self: flex-start;
    }

    .about-sec .head .left .image {
        width: 60%;
    }

    .about-sec .head .right {
        width: 80%;
        align-self: flex-end;
        margin-bottom: 50px;
    }

    .about-sec .head .right h2 {
        font-size: 2.2rem;
    }

    .about-sec .head .right p {
        font-size: 1.1rem;
    }

    .about-sec .body .counters .counter {
        width: 100%;
        left: 0;
    }

    .about-sec .body {
        position: absolute;
        width: 40%;
        right: 6%;
        bottom: 3%;
    }

    .about-sec .head .bg {
        height: 60%;
        top: unset;
        bottom: 0;
        width: 200%;
    }

    .about-sec .head .bg::after {
        background: linear-gradient(190deg, var(--bg-color-dark) 40%, transparent 100%);
    }
}


@media screen and (max-width: 770px) {
    .about-sec .body {
        position: unset;
        width: 100%;
    }

    .about-sec .body .counters .counter {
        width: 40%;
        left: 0;
    }

    .about-sec .head .left {
        width: 60%;
        align-self: center;
    }
}

@media screen and (max-width: 770px) {
    .about-sec .body {
        width: 70%;
    }

    .about-sec .body .counters .counter {
        width: 100%;
        left: 65%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 650px) {
    .about-sec .body {
        width: 80%;
    }

    .about-sec .body .counters .counter {
        left: 50%;
    }
}


.blogs-sec {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 80px;
    margin-top: 150px;
}

.blogs-sec .head {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 50px;
}

.blogs-sec .body {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.blogs-sec .body .blog {
    width: 32%;
    background-color: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blogs-sec .body .blog:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.blogs-sec .body .blog .image {
    width: 100%;
    height: 200px;
    background-color: var(--bg-color-dark);
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.blogs-sec .body .blog .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogs-sec .body .blog .content {
    width: calc(100% - 2rem);
    padding: 1rem;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.blogs-sec .body .blog .content .tags {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 10px;
}

.blogs-sec .body .blog .content .tags a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    background-color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 0.5rem;
}

.blogs-sec .body .blog .content .title a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blogs-sec .body .blog .content .text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark-low);
    margin-top: 10px;
    /* max string and ... */
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogs-sec .body .blog .content .writer {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-top: auto;
}

.blogs-sec .body .blog .content .writer .left {
    display: flex;
    justify-content: start;
    align-items: center;
}

.blogs-sec .body .blog .content .writer .left .image {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color-dark);
    border-radius: 50%;
    margin-right: 10px;
}

.blogs-sec .body .blog .content .writer .left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.blogs-sec .body .blog .content .writer .left .name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.blogs-sec .body .blog .content .writer .right .date {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark-low);
    position: relative;
    top: -9px;
}


.blogs-sec .button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 70%;
}




@media screen and (max-width: 1500px) {
    .blogs-sec .body {
        width: 90%;
    }

    .blogs-sec .body .blog {
        width: 40%;
    }
}

@media screen and (max-width: 1200px) {
    .blogs-sec .body {
        width: 95%;
    }

    .blogs-sec .body .blog .content .tags {
        margin-bottom: 5px;
        gap: 0.5rem;
    }

    .blogs-sec .body .blog .content .tags a {
        font-size: 0.9rem;
        padding: 0.2rem 0.8rem;
    }

    .blogs-sec .body .blog .content .title a {
        font-size: 1rem;
    }

    .blogs-sec .body .blog .content .text {
        font-size: 0.9rem;
    }

    .blogs-sec .body .blog .content .writer .left .name {
        font-size: 0.9rem;
    }

    .blogs-sec .body .blog .content .writer .right .date {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 991px) {
    .blogs-sec .body {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    
}

@media screen and (max-width: 768px) {
    .blogs-sec .body .blog {
        width: 60%;
    }
    .blogs-sec .body .blog .content .title {
        margin-top: 10px;
    }
}

@media screen and (max-width: 650px) {
    .blogs-sec .body .blog {
        width: 80%;
    }
}




.faqs-sec {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 80px;
    margin-top: 150px;
}

.faqs-sec .head {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-bottom: 50px;
}

.faqs-sec .body {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.faqs-sec .body .faq {
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 2rem;
    padding-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faqs-sec .body .faq:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.faqs-sec .body .faq .quest {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}



.faqs-sec .body .faq .quest::after {
    background-image: url('../../assets/icon/plus.svg');
    background-size: cover;
    content: '';
    width: 50px;
    height: 50px;
    background-color: var(--bg-color-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.faqs-sec .body .faq.active .quest::after {
    background-image: url('../../assets/icon/minus.png');
    transition: all 0.3s ease;
    transform: rotate(180deg);
}

.faqs-sec .body .faq .quest h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}


.faqs-sec .body .faq .answer {
    width: 100%;
    max-height: 0;
    padding-top: 2rem;
    transition: all 0.5s ease;
}

.faqs-sec .body .faq.active .answer {
    padding-bottom: 2rem;
    transition: all 0.5s ease;
}

.faqs-sec .body .faq .answer p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark-low);
    line-height: 1.5;
}

/* Faqs Responsive */

@media screen and (max-width: 1500px) {
    .faqs-sec .body {
        width: 70%;
    }
}

@media screen and (max-width: 1200px) {
    .faqs-sec .body {
        width: 80%;
    }

    .faqs-sec .body .faq .quest h2 {
        font-size: 1.3rem;
        
    }

    .faqs-sec .body .faq .answer p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 991px) {
    .faqs-sec .body {
        width: 90%;
    }

    .faqs-sec .body .faq .quest::after {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .faqs-sec .body .faq .quest h2 {
        font-size: 1.2rem;
        width: 90%;
    }

    .faqs-sec .body .faq .answer p {
        font-size: 1rem;
    }
    
}

@media screen and (max-width: 650px) {
    

    .faqs-sec .body .faq .answer p {
        font-size: 0.9rem;
    }

    .faqs-sec .body .faq .quest::after {
        width: 35px;
        height: 35px;
    }
}




footer {
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-color: var(--card-bg);
}

footer .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    overflow: hidden;
}

footer .bg .inner {
    width: 100%;
    height: 100%;
    position: relative;
}

footer .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 2;
}

footer .bg svg {
    width: 100%;
    height: 255%;
    top: 50%;
    position: absolute;
    object-fit: fill;
    z-index: 1;
}


.footer {
    width: 85%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    z-index: 2;
    height: 100%;
}

footer .head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .head .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

footer .head .left .logo {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
}

footer .head .left .logo img {
    width: 20%;
    height: auto;
}

footer .head .left .logo span {
    font-size: 1.9rem;
    font-weight: 700;
    color: #4e4d4d;
    margin-left: 10px;
    letter-spacing: 1px;
    position: relative;
    top: -14px;
    left: -10px
}

footer .head .left .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

footer .head .left .content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark-low);
}

footer .head .left .socials {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 20px;
}

footer .head .left .socials a {
    width: 50px;
    height: 50px;
    background-color: var(--bg-color-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

footer .head .left .socials a img {
    width: 30px;
    height: auto;
    opacity: 0.9;
}

footer .head .right {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer .head .right .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    gap: 2rem;
}

footer .head .right .content .item {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-right: 20px;
    padding: 1rem 2rem;
    background-color: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    

}


footer .head .right .content .item .title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-right: 20px;
}

footer .head .right .content .item ul {
    display: flex;
    justify-content: start;
    align-items: center;
}

footer .head .right .content .item ul li {
    margin-right: 20px;
    transition: all 0.3s ease;
}

footer .head .right .content .item ul li:hover {
    transform: translateY(-5px);
}


footer .head .right .content .item ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark-low);
}

footer .head .right .content .item ul li:hover a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

footer .copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    color: var(--text-dark-low);
}

footer .copyright p {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

footer .copyright p a {
    width: 60px;
}

footer .copyright p a img {
    width: 100%;
    height: auto;
}


/* Footer Responsive */

@media screen and (max-width: 1500px) {
    footer .head .left .logo span {
        font-size: 1.7rem;
    }

    footer .head .left .content p {
        font-size: 1rem;
    }

    footer .head .left .socials a {
        width: 40px;
        height: 40px;
    }

    footer .head .left .socials a img {
        width: 25px;
    }

    footer .head .right .content .item .title {
        font-size: 1.1rem;
    }

    footer .head .right .content .item ul li a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1200px) {
    footer .head .left .logo {
        width: 100%;
    }

    footer .head .left .logo span {
        font-size: 1.5rem;
    }

    footer .head .left .content p {
        font-size: 0.9rem;
    }

    footer .head .left .socials a {
        width: 35px;
        height: 35px;
    }

    footer .head .left .socials a img {
        width: 20px;
    }

    .footer {
        width: 95%;
    }

    footer .head  {
        width: 100%;
    }

    footer .head .right .content .item .title {
        font-size: 1rem;
    }

    footer .head .right .content .item ul li a {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 991px) {
    footer {
        height: auto;
        padding-top: 20px;
    }

    footer .head {
        flex-direction: column;
        gap: 2rem;
    }

    footer .head .left {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    footer .head .left .logo {
        width: 100%;
    }

    footer .head .left .logo a {
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    footer .head .left .logo a span {
        margin-top: 12px;
    }

    footer .head .left .content {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    footer .head .right {
        width: 100%;
    }

    footer .head .right .content {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    footer .head .right .content .item {
        padding: 1rem;
    }

    footer .head .right .content .item .title {
        font-size: 1.2rem;
    }

    footer .head .right .content .item ul li a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    
    footer .head .right .content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    footer .head .right .content .item {
        padding: 0.5rem 1rem;
        flex-direction: column;
        width: 25%;
    }

    footer .head .right .content .item .title {
        font-size: 1.3rem;
        margin-right: 0;
        margin-bottom: 10px;
    }

    footer .head .right .content .item ul {
        flex-direction: column;
        justify-content: center;
        align-self: center;
    }

    footer .head .right .content .item ul li {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    footer .head .right .content .item ul li a {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    footer .head .right .content .item ul li a:hover {
        color: var(--primary-color);
    }


    footer .head .left .logo span {
        font-size: 1.3rem;
    }

    footer .head .left .content p {
        font-size: 0.8rem;
    }



    footer .head .right .content .item .title {
        font-size: 1rem;
    }

    footer .head .right .content .item ul li a {
        font-size: 0.8rem;
    }

    footer .copyright {
        padding: 0.5rem 0;
        margin-top: 10px;
    }

    footer .copyright p {
        font-size: 0.9rem;
    }

    footer .copyright p a {
        width: 50px;
    }
}

@media screen and (max-width: 650px) {

    footer .head .right .content .item {
        width: calc(45% - 2rem);
        margin: 0;
    }


    footer .head .right .content .item .title {
        font-size: 1rem;
        
    }

    footer .head .right .content .item ul li a {
        font-size: 0.9rem;
    }

    footer .copyright p {
        font-size: 0.8rem;
    }

    footer .copyright p a {
        width: 40px;
    }
}

@media screen and (max-width: 450px) {

    footer .head .right .content .item {
        width: 30%;
    }

    footer .head .right .content .item .title {
        font-size: 0.8rem;
    }

    footer .head .right .content .item ul li a {
        font-size: 0.6rem;
    }

    

    footer .copyright p {
        font-size: 0.8rem;
    }

    footer .copyright p a {
        width: 30px;
    }
}


.landing-sec.breadcrumb {
    height: 50vh;
}

.landing-sec.breadcrumb .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.landing-sec.breadcrumb .content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.landing-sec.breadcrumb .content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.landing-sec.breadcrumb .content ul li {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark-low);
}

.landing-sec.breadcrumb .content ul li a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}




.landing-sec.breadcrumb .bg {
    height: 100vh;
}


@media screen and (max-width: 991px) {
    .landing-sec.breadcrumb .content h2 {
        font-size: 2.5rem;
    }

    .landing-sec.breadcrumb .content ul li a {
        font-size: 1rem;
    }

    .landing-sec.breadcrumb .content ul li {
        font-size: 1rem;
    }
}

@media screen and (max-width: 650px) {
    .landing-sec.breadcrumb .bg {
        height: 85vh;
    }

    .landing-sec.breadcrumb .content h2 {
        font-size: 1.6rem;
    }

    .landing-sec.breadcrumb .content ul li a {
        font-size: 0.9rem;
    }

    .landing-sec.breadcrumb .content ul li {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 450px) {
    .landing-sec.breadcrumb .bg {
        height: 70vh;
    }

    .landing-sec.breadcrumb .content h2 {
        font-size: 1.5rem;
    }

    .landing-sec.breadcrumb .content ul li a {
        font-size: 0.8rem;
    }

    .landing-sec.breadcrumb .content ul li {
        font-size: 0.8rem;
    }
}

.blog-area {
    width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    margin-bottom: 80px;
    margin-top: 80px;
}

.blog-area .left {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.blog-area .left .blogs {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 2rem;
}

.blog-area .left .blogs .blog {
    width: 45%;
    background-color: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-area .left .blogs .blog.onlyOne {
    width: 95%;
    box-shadow: unset;
    background-color: unset;
}

.blog-area .left .blogs .blog:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.blog-area .left .blogs .blog.onlyOne:hover {
    transform: unset;
    box-shadow: unset;
}

.blog-area .left .blogs .blog .image {
    width: 100%;
    height: 250px;
    background-color: var(--bg-color-dark);
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.blog-area .left .blogs .blog.onlyOne .image {
    height: 450px;
    border-radius: 1rem;
}


.blog-area .left .blogs .blog .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-area .left .blogs .blog .content {
    width: calc(100% - 2rem);
    padding: 1rem;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.blog-area .left .blogs .blog.onlyOne .content {
    height: max-content;
}

.blog-area .left .blogs .blog .content .tags {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 10px;
}

.blog-area .left .blogs .blog .content .tags a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    background-color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 0.5rem;
}

.blog-area .left .blogs .blog .content .title a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-area .left .blogs .blog.onlyOne .content .title a {
    font-size: 2rem;
}

.blog-area .left .blogs .blog .content .text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark-low);
    margin-top: 10px;
    /* max string and ... */
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-area .left .blogs .blog.onlyOne .content .text {
    font-size: 1.2rem;
    line-clamp: none;
    -webkit-line-clamp: none;
    overflow: visible;
    display: block;
    margin-bottom: 20px;
}

.blog-area .left .blogs .blog .content .writer {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-top: auto;
}

.blog-area .left .blogs .blog .content .writer .left {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 0;
}

.blog-area .left .blogs .blog .content .writer .left .image {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color-dark);
    border-radius: 50%;
    margin-right: 10px;
}

.blog-area .left .blogs .blog .content .writer .left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.blog-area .left .blogs .blog .content .writer .left .name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: start;
}

.blog-area .left .blogs .blog .content .writer .right .date {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark-low);
    position: relative;
    top: -9px;
}

.blog-area .left .button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 70%;
}

.blog-area .right {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top: 120px;
}

.blog-area .right .search {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    position: relative;
}

.blog-area .right .search input {
    width: calc(100% - 2rem);
    padding: 1rem 1rem;
    border: 1px solid var(--bg-color-dark);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.blog-area .right .search button {
    width: 10%;
    height: 100%;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-area .right .search button img {
    width: 30px;
    height: auto;
}

.blog-area .right .categories {
    width: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    border-radius: 1rem;
    border: 2px solid var(--bg-color-dark);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.blog-area .right .categories .title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-area .right .categories .list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    margin-top: 10px;
}

.blog-area .right .categories .list a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark-low);
    width: calc(100% - 2rem);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.blog-area .right .categories .list a:hover {
    color: var(--text-light)!important;
    background-color: var(--primary-color);
}

.blog-area .right .categories .list a::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1rem;
    margin-left: 10px;
    margin-right: 2px;
    transition: all 0.3s ease;
}

.blog-area .right .categories .list a:hover::after {
    color: var(--text-light);
    transform: translateX(7px);
}


.blog-area .right .categories .list a:hover {
    color: var(--primary-color);
}

.blog-area .right .tags {
    width: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    border-radius: 1rem;
    background-color: var(--card-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.blog-area .right .tags .title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-area .right .tags .list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-top: 10px;
}

.blog-area .right .tags .list a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark-low);
    background-color: var(--bg-color-dark);
    padding: 0.3rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.blog-area .right .tags .list a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}




/* Blog Area Responsive */

@media screen and (max-width: 1500px) {
    .blog-area {
        width: 95%;
        justify-content: space-evenly;
    }

    
}

@media screen and (max-width: 1250px) {
    .blog-area .left .blogs {
        justify-content: center;
    }

    .blog-area .right {
        width: 35%;
    }

    .blog-area .left .blogs .blog {
        width: 60%;
    }
}


@media screen and (max-width: 1100px) {
    .blog-area .left .blogs .blog {
        width: 70%;
    }
}

@media screen and (max-width: 991px) {
    .blog-area {
        flex-direction: column;
        gap: 2rem;
    }

    .blog-area .left {
        width: 100%;
    }

    .blog-area .left .blogs .blog {
        width: 45%;
    }

    .blog-area .left .blogs .blog .content {
        height: 250px;
    }

    .blog-area .right {
        width: 90%;
        margin: 0 auto;
        position: unset;
    }

    .blog-area .right .search {
        width: 100%;
    }

    .blog-area .right .search input {
        width: calc(100% - 2rem);
    }

    .blog-area .right .categories {
        width: 100%;
    }

    .blog-area .right .tags {
        width: 100%;
    }

    .blog-area .left .blogs .blog.onlyOne .content .title a {
        font-size: 1.5rem;
    }

    .blog-area .left .blogs .blog.onlyOne .content .text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 850px) {
    .blog-area .left .blogs .blog {
        width: 60%;
    }
    .blog-area .left .blogs .blog .content {
        height: 220px;
    }

    .blog-area .left .blogs .blog .content .tags a {
        font-size: 0.9rem;
        padding: 0.2rem 0.8rem;
    }

    .blog-area .left .blogs .blog .content .title a {
        font-size: 1rem;
    }

    .blog-area .left .blogs .blog.onlyOne .content .title a {
        font-size: 1.5rem;
    }

    .blog-area .left .blogs .blog.onlyOne .content .text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .blog-area .left .blogs .blog {
        width: 80%;
    }

    .blog-area .left .blogs .blog .content .tags a {
        font-size: 0.9rem;
        padding: 0.2rem 0.8rem;
    }

    .blog-area .left .blogs .blog .content .title a {
        font-size: 1rem;
    }

    .blog-area .left .blogs .blog .content .text {
        font-size: 0.9rem;
    }

    .blog-area .left .blogs .blog .content .writer .left .name {
        font-size: 0.9rem;
    }

    .blog-area .left .blogs .blog .content .writer .right .date {
        font-size: 0.9rem;
    }

    .blog-area .right .search input {
        font-size: 0.9rem;
    }

    .blog-area .right .categories .title {
        font-size: 1.1rem;
    }

    .blog-area .right .categories .list a {
        font-size: 0.9rem;
    }

    .blog-area .right .tags .title {
        font-size: 1.1rem;
    }

    .blog-area .right .tags .list a {
        font-size: 0.9rem;
    }

    .blog-area .left .blogs .blog.onlyOne .content .title a {
        font-size: 1.5rem;
    }

    .blog-area .left .blogs .blog.onlyOne .content .text {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 650px) {
    .blog-area .left .blogs .blog {
        width: 90%;
    }

    .blog-area .left .blogs .blog .content .tags a {
        font-size: 0.8rem;
        padding: 0.2rem 0.7rem;
    }

    .blog-area .left .blogs .blog .content .title a {
        font-size: 0.9rem;
    }

    .blog-area .left .blogs .blog .content .text {
        font-size: 0.8rem;
    }

    .blog-area .left .blogs .blog .content .writer .left .name {
        font-size: 0.8rem;
    }

    .blog-area .left .blogs .blog .content .writer .right .date {
        font-size: 0.8rem;
    }

    .blog-area .right .search input {
        font-size: 0.8rem;
    }

    .blog-area .right .categories .title {
        font-size: 1rem;
    }

    .blog-area .right .categories .list a {
        font-size: 0.8rem;
    }

    .blog-area .right .tags .title {
        font-size: 1rem;
    }

    .blog-area .right .tags .list a {
        font-size: 0.8rem;
    }

    .blog-area .left .blogs .blog.onlyOne .content .title a {
        font-size: 1.2rem;
    }

    .blog-area .left .blogs .blog.onlyOne .content .text {
        font-size: 1rem;
    }
    
}

@media screen and (max-width: 450px) {
    .blog-area .left .blogs .blog .content .tags a {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .blog-area .left .blogs .blog .content .title a {
        font-size: 0.8rem;
    }

    .blog-area .left .blogs .blog .content .text {
        font-size: 0.7rem;
    }

    .blog-area .left .blogs .blog .content .writer .left .name {
        font-size: 0.7rem;
    }

    .blog-area .left .blogs .blog .content .writer .right .date {
        font-size: 0.7rem;
    }

    .blog-area .right .search input {
        font-size: 0.7rem;
    }

    .blog-area .right .categories .title {
        font-size: 0.9rem;
    }

    .blog-area .right .categories .list a {
        font-size: 0.7rem;
    }

    .blog-area .right .tags .title {
        font-size: 0.9rem;
    }

    .blog-area .right .tags .list a {
        font-size: 0.7rem;
    }
}


.contact-sec {
    width: 100%;
    height: 70vh; 
    padding: 50px 0;
    background-color: var(--bg-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.contact-sec .body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-sec .body form {
    width: 45%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    gap: 1rem;
}

.contact-sec .body form .form-group {  
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 0.5rem;
}

.contact-sec .body form .form-group input,
.contact-sec .body form .form-group textarea {
    width: calc(100% - 2rem);
    padding: 1rem;
    border: 1px solid var(--bg-color-dark);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-sec .body form .form-group.w-100 {
    width: calc(100% - 1rem);
}

.contact-sec .body form .form-group textarea {
    height: 150px;
    resize: none;
}

.contact-sec .body form .checkbox {
    width: 70%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.contact-sec .body form .checkbox input {
    width: 30px;
    height: 30px;
}

.contact-sec .body form .checkbox label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-sec .body form .checkbox label a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-sec .body form .submit {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.contact-sec .body form button {
    padding: 0.8rem 2rem;
    padding-right: 2rem;
    margin-right: 10px;
}

/* Contact Section Responsive */

@media screen and (max-width: 1200px) {
    .contact-sec .body form {
        width: 57%;
    }

    .contact-sec .body form .form-group {
        width: calc(50% - 1rem);
    }

    .contact-sec .body form .form-group.w-100 {
        width: calc(100% - 1rem);
    }

    .contact-sec .body form .checkbox {
        width: 80%;
    }

    .contact-sec .body form .checkbox input {
        width: 25px;
        height: 25px;
    }

    .contact-sec .body form .checkbox label {
        font-size: 0.9rem;
    }

    .contact-sec .body form .checkbox label a {
        font-size: 0.9rem;
    }

    .contact-sec .body form .submit {
        width: 100%;
        justify-content: start;
    }

    .contact-sec .body form button {
        padding: 0.8rem 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .contact-sec .body form {
        width: 60%;
    }

    .contact-sec .body form .form-group {
        width: calc(100% - 1rem);
    }

    .contact-sec .body form .form-group.w-100 {
        width: calc(100% - 1rem);
    }

    .contact-sec .body form .checkbox {
        width: 100%;
    }

    .contact-sec .body form .checkbox input {
        width: 20px;
        height: 20px;
    }

    .contact-sec .body form .checkbox label {
        font-size: 0.9rem;
    }

    .contact-sec .body form .checkbox label a {
        font-size: 0.9rem;
    }

    .contact-sec .body form .submit {
        width: 100%;
        justify-content: center;
    }

    .contact-sec .body form button {
        padding: 0.8rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-sec .body form {
        width: 80%;
    }

    .contact-sec .body form .form-group {
        width: calc(100% - 1rem);
    }

    .contact-sec .body form .form-group.w-100 {
        width: calc(100% - 1rem);
    }

    .contact-sec .body form .checkbox {
        width: 100%;
    }

    .contact-sec .body form .checkbox input {
        width: 20px;
        height: 20px;
    }

    .contact-sec .body form .checkbox label {
        font-size: 0.8rem;
    }

    .contact-sec .body form .checkbox label a {
        font-size: 0.8rem;
    }

    .contact-sec .body form .submit {
        width: 100%;
        justify-content: center;
    }

    .contact-sec .body form button {
        padding: 0.8rem 1.5rem;
    }

    .contact-sec .body form button::after {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 650px) {
    .contact-sec .body form {
        width: 90%;
    }

    .contact-sec .body form .form-group {
        width: calc(100% - 1rem);
    }

    .contact-sec .body form .form-group.w-100 {
        width: calc(100% - 1rem);
    }

    .contact-sec .body form .checkbox {
        width: 100%;
    }

    .contact-sec .body form .checkbox input {
        width: 20px;
        height: 20px;
    }

    .contact-sec .body form .checkbox label {
        font-size: 0.7rem;
    }

    .contact-sec .body form .checkbox label a {
        font-size: 0.7rem;
    }

    .contact-sec .body form .submit {
        width: 100%;
        justify-content: center;
    }

    .contact-sec .body form button {
        padding: 0.5rem 1.5rem;
    }

    .contact-sec .body form button::after {
        font-size: 0.8rem;
    }
}

.wa-me {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 999;
}

.wa-me .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(34, 161, 81, 0.8);

    background-color: #24bd5c;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wa-me .inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(34, 161, 81, 0.8);
}

.wa-me .inner i {
    position: relative;
    top: 3px;
    font-size: 1.8rem;
}

