/* ============================= */
/*         GLOBAL STYLES        */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: linear-gradient(135deg, #f96c00, #f64900);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
    box-shadow: 0 0 20px #f96c00, 0 0 30px #f64900;
    transform: scale(1.1);
}

:root {
    --orange1: #f96c00;
    --orange2: #f64900;
    --bodyC: #ecf0f3;
    --white: #f6f8f9;
    --descC: #666666;
    --titleC: #04000b;
}

body {
    background-color: var(--bodyC);
}

/* ============================= */
/*        Header Code     */
/* ============================= */
nav {
    max-width: 1150px;
    box-shadow: 0px 0 67px 0 rgb(109 117 143 / 13%);
    background-color: var(--white);
    border-radius: 10px;
    margin: auto;
    margin-top: 35px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    font-family: kanitr;
    color: var(--titleC);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.logo::first-letter {
    color: var(--orange1);
    font-size: 50px !important;
}

nav ul {
    list-style: no;
    display: flex;
}

nav ul li {
    position: relative;
    display: block;
}

nav ul li a {
    text-decoration: none;
    color: var(--titleC);
    font-size: 14px;
    font-family: kanitr;
    padding: 0px 10px;
    text-transform: uppercase;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--orange2);
    transition: 0.6s;
}

.nav-btn {
    padding: 11px 30px;
    border-radius: 40px;
    color: var(--white);
    font-family: kanitr;
    border: none;
    background: linear-gradient(45deg, #f96c00, #f64900);
    /* your gradient */
    font-size: 16px;
    cursor: pointer;


}

.nav-btn a {
    color: var(--white);
    text-decoration: none;
}

.nav-btn i {
    margin-left: 10px;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.nav-btn:hover {
    background: linear-gradient(45deg, #666666, #04000b);
    transition: 0.6s !important;
}

#check {
    display: none;
}

label #cancel {
    font-size: 37px;
    font-style: italic;
    opacity: 0;
}

.checkbtn {
    color: var(--blue);
    font-size: 30px;
    cursor: pointer;
    display: none;
}


/* ============================= */
/*        Header Responcive    */
/* ============================= */
@media (max-width:1024px) {
    nav {
        max-width: 1000px;
    }
}

/* Teblate */
@media (max-width:768px) {
    nav {
        max-width: 740px;
    }

    ul {
        /* padding: 30px; */
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin-left: -100%;
        background-color: var(--white);
        height: 100vh;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        transition: 0.6s;
    }

    ul li {
        padding: 16px 20px;
    }

    .nav-btn {
        display: none;
    }

    .checkbtn {
        display: block;
        position: absolute;
        right: 50px;
    }

    #check:checked~ul {
        margin-left: 0;
    }

    #check:checked~label #cancel {
        opacity: 1;
    }

    #cancel {
        position: absolute;
        z-index: 9999;
    }

    #check:checked~label #btn {
        opacity: 0;
        left: 240px;
        pointer-events: none;
        transition: 0.5s;
    }
}

/* mobile */
@media (max-width:600px) {
    nav {
        width: 95%;
    }
}

/* ============================= */
/*        Hero Section   */
/* ============================= */
.hero-section {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;

}

/* Home Content */
.home-content {
    width: 47%;
    height: 500px;

}

.home-content h2 {
    color: var(--titleC);
    font-size: 65px;
    font-weight: 700;
    font-family: tekob;
    text-transform: capitalize;

}

.auto-type {
    font-size: 50px;
    font-family: teko1;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 5px;
    /* Gradient Text */
    background: linear-gradient(90deg, #fb7610, #f64900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 70px;
}

.hero-desc {
    color: var(--descC);
    font-size: 16px;
    font-family: kanitl;
}

.button-content {
    display: flex;
    align-items: center;
    max-width: 400px;
    gap: 30px;
    height: 80px;
    margin-top: 20px;
}

.hero-btn {
    background: linear-gradient(90deg, #fb7610, #f64900);
    padding: 14px 35px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--white);
    font-family: kanitr;
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    border: none;

}

.hero-btn:hover {
    background: linear-gradient(45deg, #666666, #04000b);
    transition: 0.6s;
}

.social-info {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-info li {
    display: inline-block;
    margin-right: 5px;
}

.social-info li a {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 48px;
    background: linear-gradient(0deg, var(--white) 0%, #e1e8ed 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--titleC);
    font-size: 20px;
}

.social-info li a:hover {
    color: var(--orange2);
}

.home-img {
    width: 47%;
    height: 500px;
    /* border: 2px solid red; */
}

.home-img img {
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* responsive */
@media (max-width:1024px) {
    .hero-section {
        max-width: 1000px;
    }
}

/* teblate */
@media (max-width:768px) {
    .hero-section {
        width: 95%;
        padding: 30px;
        margin-top: 30px;
        display: block;
    }

    .home-content {
        width: 100%;
        height: 500px;
        margin: auto;
    }

    .home-img {
        width: 100%;
        margin: auto;
    }

    .home-img img {
        width: 100%;
        margin: auto;
    }
}

/* mobile */
@media (max-width:600px) {
    .home-content h2 {
        color: var(--titleC);
        font-size: 45px;
        font-weight: 700;
        font-family: tekob;
        text-transform: capitalize;
    }

    .auto-type {
        font-size: 34px;
        height: 70px;
    }

    .button-content {
        display: flex;
        max-width: 450px;
        gap: 20px;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* small moble */
@media (max-width:376px) {
    .button-content {
        display: block;
        max-width: 250px;
    }

    .social-info li a {
        display: inline-block;
        height: 50px;
        width: 50px;
        text-align: center;
        line-height: 48px;
        background: linear-gradient(0deg, var(--white) 0%, #e1e8ed 100%);
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.9);
        color: var(--titleC);
        margin-top: 20px;
    }

    .home-img {
        width: 100%;
        height: 300px;
        /* border: 2px solid red; */
    }
}

/* small to small */
@media (max-width:321px) {
    .home-img {
        margin-top: 60px;
        width: 100%;
        height: 300px;
        /* border: 2px solid red; */
    }
}

/* ============================= */
/*        services-section */
/* ============================= */
.services-section {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;

}

/* title-container */
.services-title {
    text-align: center;
    padding: 50px 20px 30px;
}

.title-badge {
    background: linear-gradient(90deg, #fb7610, #f64900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 700;
    color: transparent;
    /* Orange color */
    border: 1px solid #c4c4c4;
    padding: 10px 26px;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: kanitr;
}

.title-heading {
    font-size: 45px;
    margin-top: 15px;
    color: #0f0f0f;
    font-weight: 800;
    font-family: tekob;
}

.service-carContainer {
    max-width: 950px;
    gap: 25px;
    margin: auto;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
    font-size: 50px;
    margin: 0 auto 20px;
}


.service-card h3 {
    font-size: 33px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #1e293b;
    font-family: tekob;
}

.service-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    font-family: kanitl;
}


/* responsive */
@media (max-width:1024px) {
    .services-section {
        max-width: 1000px;
    }
}

/* teblate */
@media (max-width:768px) {
    .services-section {
        width: 95%;

    }

    .service-carContainer {
        grid-template-columns: 1fr 1fr;
    }
}

/* mobile */
@media (max-width:600px) {
    .services-section {
        width: 95%;

    }

    .service-card {
        margin: auto;
        width: 98%;
    }

    .service-carContainer {
        grid-template-columns: 1fr;
    }

    .title-heading {
        font-size: 36px;
        font-family: tekob;
    }

    .service-card .icon {
        font-size: 35px;
        margin: 0 auto 20px;
    }

    .service-card h3 {
        font-size: 24px;
    }
}

/* mobile */
@media (max-width:376px) {
    .title-heading {
        font-size: 30px;
        font-family: tekob;
    }
}

/* ============================= */
/*        Skill-section */
/* ============================= */
.skill-section {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.skill-box {
    background: #ffffff;
    width: 160px;
    padding: 30px 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    background: linear-gradient(130deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 150px;
    box-shadow: 0 0 9px 0 rgb(109 117 143 / 5%);
    transition: all 0.35s ease-in-out;
    position: relative;
    z-index: 1;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.skill-icon {
    height: 90px;
    width: 90px;
    text-align: center;
    background: linear-gradient(130deg, var(--white) 10%, #ECF0F3 40%);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgb(109 117 143 / 15%);
}

.skill-icon img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.skill-box h3 {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    font-family: tekob;
}

.skill-box p {
    font-size: 16px;
    font-family: kanitr;
    color: #444;
}

.skill-box.tall {
    height: 350px;
}

.skill-box.short {
    height: 280px;
}

/* Responsive */
@media (max-width: 768px) {
    .skill-section {
        width: 97%;
    }

    .skill-box {
        width: 140px;
        padding: 20px 10px;
    }

    .skill-box.tall {
        height: 240px;
    }

    .skill-box.short {
        height: 200px;
    }
}



/* ============================= */
/*        portfolio-section */
/* ============================= */
.portfolio-section {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Style the tab */
.tab {
    overflow: hidden;
    max-width: 450px;
    border-radius: 5px;
    padding: 5px;
    margin-left: 20px;
    margin-bottom: 0 !important;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    background: linear-gradient(130deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);

}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    font-family: kanitl;
    color: var(--titleC);
    text-transform: capitalize;
}

/* Change background color of buttons on hover */
.tab button:hover {
    color: var(--orange2);
}

/* Create an active/current tablink class */
.tab button.active {
    color: var(--orange2);
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    margin-top: 20px;
    margin-left: 10px;
}

.project-con {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project1 {
    max-width: 500px;
    height: 350px;
    border-radius: 20px;
    position: relative;

}

.project1 img {
    width: 100%;
    height: 100%;
    border-radius: 20px;

}

.project1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    z-index: 99;
    border-radius: 20px;
    transition: 0.6s;
    background: linear-gradient(-30deg, #000000, #d9d9d93f);

}

.project1:hover::before {
    height: 70%;
}

.project1:hover .project-link i {
    transition: 0.9s;
    display: block;
}

.project-link i {
    z-index: 9999;
    position: absolute;
    bottom: 4px;
    right: 20px;
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 48px;
    background: linear-gradient(0deg, var(--white) 0%, #e1e8ed 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--titleC);
    font-size: 23px;
    padding: 4px 2px;
    transform: translateY(-50%) rotate(-45deg);
    display: none;
}

/* responsive */
@media (max-width:1024px) {
    .portfolio-section {
        max-width: 1000px;
    }

    .portfolio-section {
        width: 95%;
        padding: 30px;
        margin-top: 30px;
    }

}

/* mobile */
@media (max-width:600px) {

    .tab {
        overflow: hidden;
        width: 97%;
        border-radius: 5px;
        padding: 5px;
        margin-left: 4px;

    }

    .tab button {
        padding: 14px 16px;
        font-size: 14px;

    }

    .project-con {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ============================= */
/*        testimonial Section   */
/* ============================= */
.testimonial-section {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;

}




:root {
    --rale: 'Raleway', sans-serif;
    --green: #22c353;
}

.wrapper {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    overflow-x: hidden;
}

.testimonials {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1000px;
    margin: 0 32px;
    padding: 16px;
    border-radius: 4px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 16px;
}

.client-thumbnail img {
    width: 100%;
}

.client-thumbnail {
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    border-radius: 50%;
}

.clients-tabs {
    margin-bottom: 24px;
}

.client-name {
    color: var(--titleC);
    font-family: tekob;
    text-transform: capitalize;
    font-size: 20px;
}

.client-intro .client-name {}

.client-intro .client-designation {
    font-size: 13px;
    color: #b1b1b1;
    font-family: kanitl;
}

.client-description {
    font-family: kanitl;

}

.client-intro .client-description {
    display: none;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.client-item:first-child {
    margin-top: 0;
}

.client-item:last-child {
    margin-bottom: 0;
}

.client-item:hover {
    background-color: var(--orange2);
}

.client-item:hover .client-intro * {
    color: #fff;
}

.client-item:active {
    transform: translateY(3px);
}

.client-item.active {
    background-color: var(--orange2);
}

.client-item.active .client-intro * {
    color: #fff;
}


.show-img img {
    border-radius: 2px;
}

.show-text>div {
    padding: 12px 0;
}

.show-text .show-name {
    font-size: 20px;
    font-family: kanitr;
    color: var(--orange2);
}

.show-text .show-designation {
    color: #929292;
    font-family: kanitr;
}

.show-text .show-description {
    margin: 20px 0;
    font-family: kanitr;
    font-weight: 300;
    color: #686868;
    line-height: 1.4;
}

.show-text a {
    font-family: kanitr;
    background-color: var(--orange2);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    display: inline-block;
    margin-top: 8px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
}

.show-text a:hover {
    background-color: var(--titleC);
}

@media(min-width: 768px) {
    .testimonials {
        padding: 20px 40px;
    }

    .content {
        flex-direction: row;
    }

    .clients-list {
        width: 30%;
    }

    .show-info {
        width: calc(70% - 30px);
        margin-left: 30px;
    }

    .clients-tabs {
        margin-bottom: 0px;
    }
}

@media(min-width: 992px) {
    .show-info {
        display: flex;
        align-items: flex-start;
    }

    .show-img {
        margin-right: 30px;
        height: 100%;
    }

    .show-img img {
        width: 280px;
        object-fit: cover;
        height: 100%;
    }
}

@media(max-width: 768px) {
    .testimonials {
        max-width: 1100px;
    }
}

/* mobile */
@media (max-width:600px) {
    .testimonial-section {
        width: 97%;
        padding: 30px;
        margin: auto;
        box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
        background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        margin-top: 30px;
        margin-bottom: 50px;

    }

}

/* ============================= */
/*        Blog-Section     */
/* ============================= */
.blog-section {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* latest-post */
.latest-post {
    margin-top: 26px !important;
    border-radius: 10px;
    margin: auto;
    max-width: 1150px;
    height: 260px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;

}

.post-img {
    border-radius: 10px;
    width: 35%;
    height: 100%;
}

.post-img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* post-content */
.post-content {
    padding: 12px;
    width: 65%;
    height: 100%;
}

.post-date {
    font-size: 13px;
    color: var(--descC);
    font-family: kanitr;
}

.post-title {
    font-size: 32px;
    color: var(--titleC);
    font-family: tekob;
    text-transform: capitalize;
}

.post-desc {
    color: var(--descC);
    font-size: 14px;
    font-family: kanitr;
}

.read-more {

    background: linear-gradient(90deg, #fb7610, #f64900);
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.read-more a {
    color: var(--white);
    text-transform: capitalize;
    font-size: 15px;
    font-family: kanitr;
    text-decoration: none;
    color: var(--white);
}

.read-more:hover {
    background: linear-gradient(90deg, #000000, #000000);


}

.view-more {
    background: linear-gradient(90deg, #fb7610, #f64900);
    padding: 13px 30px;
    font-size: 17px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    border: none;
    margin-top: 50px;
    margin-left: 450px;
}

.view-more:hover {
    background: linear-gradient(90deg, #000000, #000000);

}

.view-more a {
    text-decoration: none;
    font-family: kanitl;
    color: var(--white);
    margin: auto;
}

/* responsive */
@media (max-width:1024px) {
    .view-more {
        margin-left: 400px;
    }

    .blog-section {
        max-width: 1000px;
    }

    .post-title {
        font-size: 29px;

    }

    .post-desc {
        font-size: 14px;
    }
}

/* mobile */
@media (max-width:600px) {
    .view-more {
        margin-left: 100px;
    }

    /* latest-post */
    .latest-post {
        border-radius: 10px;
        margin: auto;
        width: 97%;
        height: 530px;
        background: #ffffff;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 12px;
        display: block;
    }

    .post-img {
        border-radius: 10px;
        width: 99%;
        height: 250px;
    }

    .post-img img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .post-title {
        font-size: 22px;
    }

    /* post-content */
    .post-content {
        padding: 12px;
        width: 99%;
        height: 100%;
    }
}

/* mobile */
@media (max-width:320px) {
    .view-more {
        margin-left: 50px;
    }

    /* latest-post */
    .latest-post {
        border-radius: 10px;
        margin: auto;
        width: 99%;
        height: 630px;
    }
}


/* ============================= */
/*        Contact-Section     */
/* ============================= */
.contact-section {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.contact-wrapper {
    gap: 12px;
    max-width: 1000px;
    padding: 11px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-img {
    width: 45%;
    height: 500px;
}

.contact-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1),
        -10px -10px 30px rgba(255, 255, 255, 0.6);
    width: 100%;
    max-width: 500px;

}

.contact-form h2 {
    font-family: teko1;
    text-transform: capitalize;
    text-align: center;
    color: #f64900;
    font-size: 35px;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    border-radius: 12px;
    background: #fefefe;
    box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.05),
        inset -5px -5px 15px rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: kanitr;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 8px #f96c00;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    text-transform: capitalize;
    font-family: kanitr;
    width: 100%;
    padding: 14px;
    font-size: 17px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #f96c00, #f64900);
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(246, 76, 0, 0.4);
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(246, 76, 0, 0.5);
}

@media (max-width: 480px) {
    .contact-form {
        padding: 25px;
    }
}

/* responsive */
@media (max-width:1024px) {
    .contact-section {
        max-width: 1000px;
    }
}

/* mobile */
@media (max-width:600px) {
    .contact-wrapper {
        gap: 12px;
        width: 99%;
        padding: 11px;
        margin: auto;
        display: block;
    }

    .contact-img {
        height: 400px;
        margin-top: 20px;
        width: 99%;
    }
}

/* ============================= */
/*        footer-Section     */
/* ============================= */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    background-color: var(--white);
}

footer p {
    font-family: kanitr;
    text-transform: capitalize;
    font-size: 17px;
}

footer p a {
    font-family: kanitr;
    text-transform: capitalize;
    font-size: 17px;
    text-decoration: none;
    color: var(--titleC);
}





/* ============================= */
/*        post hero section     */
/* ============================= */
.post-hero-title {
    padding: 34px;
    margin-top: 40px;
    width: 100%;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.post-hero-title h2 {
    font-size: 55px;
    text-align: center;
    font-family: tekob;
}

div.breadcrumb {
    margin: auto;
    max-width: 150px;
    padding: 10px 16px;
    list-style: none;
}

div.breadcrumb li {
    display: inline;
    font-size: 18px;
    font-family: kanitl;

}

div.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

div.breadcrumb li a {
    font-family: kanitl;
    color: var(--orange2);
    text-decoration: none;
}

div.breadcrumb li a:hover {
    color: var(--orange2);
    text-decoration: underline;
}

@media (max-width:600px) {
    .post-hero-title h2 {
        font-size: 30px;
        text-align: center;
        font-family: tekob;
    }
}

.single-post {
    max-width: 1150px;
    padding: 30px;
    margin: auto;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.single-post img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    margin: auto;
    object-fit: cover;
}

.meta-bar {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    /* space between items */
    font-family: sans-serif;
    color: #555;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    /* space between icon & text */
}

.meta-item span {
    font-size: 16px;
    font-family: kanitr;
}

.meta-item span:hover {
    color: #f96c00;
    cursor: pointer;
}

.meta-item svg {
    width: 1rem;
    height: 1rem;
    fill: #f96c00;
    /* orange accent */
    flex-shrink: 0;
}

.post-description {
    color: var(--descC);
    font-family: kanitl;
    padding-top: 20px;
    line-height: 30px;
}

/* Form container */
.comment-form {
    margin-top: 30px;
    max-width: 1150px;
    margin: 0 auto;
}

.comment-form h2 {
    margin-top: 30px;
    font-family: tekob;
    margin-bottom: 16px;
    font-size: 1.8rem;
    color: var(--descC);
    text-align: center;
}

/* Textarea */
.comment-form textarea {
    width: 100%;
    min-height: 180px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: kanitl;

}

/* Two‑column row */
.row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.row .field {
    flex: 1;
}

/* Inputs */
.comment-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: kanitl;

}

/* Button */
.comment-form button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(to right, #f96c00, #f64900);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: kanitl;
}

.comment-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive stack on small screens */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .meta-bar {
        gap: 1rem;
        font-size: 0.8rem;
    }
}



/* ============================= */
/*        blog-hero    */
/* ============================= */
.blog-hero {
    width: 100%;
    padding: 50px;
    box-shadow: rgba(109, 117, 143, 0.05) 0px 0px 9px 0px;
    background: linear-gradient(0deg, var(--white) 20%, #ECF0F3 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 30px;
    margin-bottom: 50px;
}

.blog-hero h2 {
    font-size: 50px;
    text-align: center;
    font-family: tekob;
    text-transform: capitalize;
}

#last-post {
    margin-bottom: 50px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    /* Optional background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader Container */
.loader {
    display: flex;
    gap: 15px;
}

.loader .ball {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f96c00, #f64900);
    animation: bounce 0.6s infinite alternate;
}

.loader .ball:nth-child(2) {
    animation-delay: 0.2s;
}

.loader .ball:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    to {
        transform: translateY(-25px);
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.4);
    }
}