











* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;

    /* background-color: #F4F0E1; */
}


a{
    color: inherit;
    text-decoration: none;
}

/* Header */
.nav_hm_header {
    width: 100%;
    background: #f6f1e5;
    padding: 14px 0;
    position: relative;
    z-index: 1000;
}

/* Container */
.nav_hm_container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav_hm_logo img {
    height: 60px;
}

/* Nav */
.nav_hm_nav {
    flex: 1;
    text-align: center;
}

.nav_hm_menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav_hm_menu li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav_hm_menu li a:hover {
    color: #6a8f3a;
}

/* Button */
.nav_hm_contact {
    padding: 8px 18px;
    border: 1px solid #cfcfcf;
    border-radius: 25px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}

.nav_hm_contact:hover {
    background: #6a8f3a;
    color: #fff;
}

/* Toggle */
.nav_hm_toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav_hm_toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.4s;
}

/* Toggle animation */
.nav_hm_open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav_hm_open span:nth-child(2) {
    opacity: 0;
}
.nav_hm_open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {

    .nav_hm_toggle {
        display: flex;
    }

    .nav_hm_btn {
        display: none;
    }

    .nav_hm_nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f6f1e5;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav_hm_nav.nav_hm_active {
        max-height: 400px;
    }

    .nav_hm_menu {
        flex-direction: column;
        padding: 25px 0;
        gap: 20px;
    }

    .nav_mobile_btn {
        display: block !important;
    }
}

/* Hide mobile button on desktop */
.nav_mobile_btn {
    display: none;
}




/* ====================================== */




.home_sec_hero1 {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.home_slider {
    position: relative;
}

.home_slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    /* border-radius: 30px; */
}

.home_slide.active {
    display: flex;
}

.home_sec_hero_content {
    max-width: 600px;
    color: #fff;
    text-align: left;
}

.home_sec_hero_content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.home_sec_hero_content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #f1f1f1;
}

.home_sec_btn_wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.home_sec_btn {
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s ease;
}

.home_sec_btn_primary {
    background: #fff;
    color: #000;
}

.home_sec_btn_primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.home_sec_btn_outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.home_sec_btn_outline:hover {
    background: #fff;
    color: #000;
}

/* Slider Controls */
.home_slider_controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.home_slider_controls span {
    pointer-events: all;
    cursor: pointer;
    font-size: 50px;
    color: #fff;
    transition: 0.3s;
}

.home_slider_controls span:hover {
    color: #ff7f32;
}

/* Responsive */



@media (max-width: 768px) {

    .home_slide {
        height: 220px;                 /* fixed height */
        padding: 20px 16px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .home_sec_hero_content {
        max-width: 100%;
        text-align: center;
    }

    .home_sec_hero_content h1 {
        font-size: 26px;               /* reduced heading */
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .home_sec_hero_content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .home_sec_btn_wrap {
        justify-content: center;
        gap: 10px;
    }

    .home_sec_btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 22px;
    }
}


@media (max-width: 480px) {
    .home_sec_hero_content h1 {
        font-size: 28px;
    }
    .home_sec_hero_content p {
        font-size: 14px;
    }
    .home_sec_btn_wrap {
        flex-direction: column;
    }
}



        /* =========================
    FEATURES SECTION
        ========================= */

        /* FEATURES SECTION */

.container-fluid
    {
     background-color: #F4F0E1;
     margin: auto;
    }


        .home_sec_features {
            width: 90%;
            padding: 70px 5%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: auto;
        }

        .home_sec_feature_card {
            background: #F4F0E1;
            padding: 32px 24px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s ease;
            border: 1px solid #D3B676;
        }

        .home_sec_feature_card:hover {
            transform: translateY(-6px);
        }

        .home_sec_feature_card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .home_sec_feature_card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .home_sec_hero_content h1 {
                font-size: 42px;
            }

            .home_sec_features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {

            .home_sec_btn {
    padding: 6px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
            }

            .home_sec_btn_wrap {
        gap: 10px;
        flex-wrap: nowrap;            }

            .home_sec_hero {
                padding: 50px 6%;
                min-height: 85vh;
            }

            .home_sec_hero_content h1 {
                font-size: 22px;
            }

            .home_sec_hero_content p {
                font-size: 12px;
            }

            .home_sec_features {
                grid-template-columns: 1fr;
                padding: 50px 6%;
            }

            .home_sec_btn {
                width: 50%;
                text-align: center;
            }
        }



        /* ============================================ */

/* =========================
   OUR MARKETS
========================= */
.home_makers_section {
    padding: 70px 0 40px;
}

.home_makers_container {
    width: 90%;
    margin: auto;
}

.home_makers_title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.home_makers_card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.home_makers_card img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    display: block;
}

.home_makers_label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

/* =========================
   WHY PARTNER
========================= */
.home_why_section {
    padding: 60px 0 80px;
}

.home_why_container {
    width: 90%;
    margin: auto;
}

.home_why_title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.home_why_desc {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #555;
}

.home_why_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.home_why_card {
    background: transparent;
    border: 1px solid #e2c98d;
    padding: 22px;
    border-radius: 10px;
}

.home_why_card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.home_why_card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

    .home_makers_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home_why_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .home_makers_grid {
        grid-template-columns: 1fr;
    }

    .home_makers_card img {
        height: 180px;
    }

    .home_why_title,
    .home_makers_title {
        font-size: 22px;
    }
}



/* ================================== */


/* =========================
   SECTION
========================= */
.home_getTouch_section {
    padding: 80px 0 60px;
}

.home_getTouch_container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.home_getTouch_title {
    font-size: 28px;
    margin-bottom: 12px;
}

.home_getTouch_subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    max-width: 420px;
}

.home_getTouch_info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.home_getTouch_item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.home_getTouch_icon {
    width: 42px;
    height: 42px;
    background: #0b5c50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.home_getTouch_item strong {
    font-size: 14px;
}

.home_getTouch_item p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* RIGHT FORM */
.home_getTouch_right {
    background: transparent;
}

.home_getTouch_form {
    border: 1px solid #e1c785;
    padding: 28px;
    border-radius: 10px;
}

.home_getTouch_form label {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
}

.home_getTouch_form input,
.home_getTouch_form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid #e1c785;
    border-radius: 6px;
    background: transparent;
    font-size: 13px;
}

.home_getTouch_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.home_getTouch_btn {
    width: 100%;
    background: #0b5c50;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

/* CTA */
.home_getTouch_cta {
    width: 90%;
    margin: 70px auto 0;
}

.home_getTouch_cta h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.home_getTouch_cta p {
    font-size: 14px;
    color: #555;
    max-width: 520px;
    margin-bottom: 18px;
}

.home_getTouch_ctaBtn {
    display: inline-block;
    padding: 10px 18px;
    background: #0b5c50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

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

    .home_getTouch_cta {
        text-align: left;
    }
}

@media (max-width: 576px) {

    .home_getTouch_title {
        font-size: 24px;
    }

    .home_getTouch_row {
        grid-template-columns: 1fr;
    }
}



/* ============================== */




/* FOOTER WRAPPER */
.footer_main {
    padding: 60px 5% 30px;
    background: linear-gradient(180deg, #000 0%, #0b0b0b 100%);
    border-radius: 30px 30px 0 0;
    color: #ccc;
}

/* FOOTER GRID */
.footer_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 35px;
}

/* FOOTER COLUMN */
.footer_col h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

/* BRAND */
.footer_brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 14px;
}

.footer_brand_icon img {
height: 80px;
}

/* TEXT */
.footer_text {
    font-size: 14px;
    line-height: 1.6;
    color: #bcbcbc;
}

/* LINKS */
.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 10px;
}

.footer_links a {
    text-decoration: none;
    color: #bcbcbc;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer_links a:hover {
    color: #fff;
}

/* CONTACT */
.footer_contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #bcbcbc;
}

/* DIVIDER */
.footer_divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

/* COPYRIGHT */
.footer_bottom {
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer_grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_brand {
        justify-content: center;
    }
}






/* ================================== */

/* ==================================About page===================== */


/* WRAPPER */
.about_head_wrapper {
    width: 100%;
    background: #f7f3e8;
}

/* HERO */
.about_head_hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.about_head_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY CONTENT */
.about_head_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.about_head_overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.about_head_overlay p {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.about_head_btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.about_head_btn:hover {
    background: #fff;
    color: #000;
}

/* PRINCIPLES SECTION */
.about_head_principles {
    padding: 70px 20px;
    text-align: center;
}

.about_head_principles h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.about_head_intro {
    max-width: 780px;
    margin: 0 auto 45px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* CARDS */
.about_head_cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.about_head_card {
    background: #fff8e6;
    border: 1px solid #ead7a1;
    border-radius: 10px;
    padding: 30px;
    max-width: 420px;
    width: 100%;
    text-align: left;
}

.about_head_icon {
    font-size: 22px;
    display: inline-block;
    margin-bottom: 15px;
    color: #c9a24d;
}

.about_head_card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.about_head_card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about_head_overlay h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about_head_hero {
        /* height: 70vh; */
        height: 220px;
    }

    .about_head_overlay p {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    }

    .about_head_overlay h1 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .about_head_overlay p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about_head_overlay h1 {
        font-size: 24px;
    }

    .about_head_btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .about_head_principles h2 {
        font-size: 26px;
    }
}



/* =========================
===================== */


/* =========================
ABOUT STORY SECTION
========================= */
.about_story_section {
    background: #f9f4e8;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Header */
.about_story_header {
    text-align: center;
    margin-bottom: 60px;
}

.about_story_header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    position: relative;
    animation: fadeInUp 1s ease forwards;
}

.about_story_header p {
    font-size: 16px;
    color: #777;
    animation: fadeInUp 1.2s ease forwards;
}

/* Timeline Layout */
.about_story_timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
        width: 90%;
    margin: auto;
}

.about_story_line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #d4af37;
    transform: translateX(-50%);
}

/* Timeline Items */
.about_story_item {
    width: 50%;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.about_story_left {
    align-self: flex-start;
    text-align: right;
    padding-right: 40px;
}

.about_story_right {
    align-self: flex-end;
    padding-left: 40px;
}

.about_story_item.story_item_ani.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Cards */
.about_story_card {
    background: #F4F0E1;
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #f1d48c;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about_story_card.story_card_ani:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about_story_card h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #333;
}

.about_story_card span {
    font-size: 13px;
    font-weight: 600;
    color: #d4af37;
}

.about_story_card p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.6;
}

/* Icons */
.about_story_icon {
    width: 38px;
    height: 38px;
    background: #fff3d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 10px;
}

/* Timeline Dots */
.about_story_item::after {
    content: "";
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
}

.about_story_left::after { right: -6px; }
.about_story_right::after { left: -6px; }

/* Floating Graphics */
.story_graphics .floating_circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    animation: floatUpDown 6s ease-in-out infinite alternate;
    z-index: 1;
}
.story_graphics .floating_circle.small {
    width: 50px; height: 50px;
    top: 200px; left: 80px;
    animation-delay: 0.2s;
}
.story_graphics .floating_circle.medium {
    width: 80px; height: 80px;
    top: 400px; left: 300px;
    animation-delay: 0.5s;
}
.story_graphics .floating_circle {
    width: 100px; height: 100px;
    top: 100px; left: 600px;
}

/* Cursor */
.custom_cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    z-index: 9999;
}

/* Animations */
@keyframes floatUpDown {
    0% { transform: translateY(0) }
    100% { transform: translateY(-30px) }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .about_story_line { left: 20px; }
    .about_story_item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left; }
    .about_story_left, .about_story_right { align-self: stretch; padding: 0 0 0 50px; }
    .about_story_item::after { left: 14px; }
}


/* ================================== */



.service_hero_section {
    position: relative;
    width: 100%;
    /* height: 80vh; */
    height: 100vh;
    /* background: url('silk-banner.jpg') center/cover no-repeat; */
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
color: #fff;
}

/* Dark Overlay */
.service_hero_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content */
.service_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.service_hero_content h1 {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Button */
.service_hero_btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service_hero_btn:hover {
    background: #ffffff;
    color: #000;
}

/* Tablet */
@media (max-width: 992px) {
    .service_hero_section {
        /* height: 70vh; */
        height: 220px;
    }

    .service_hero_content h1 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .service_hero_content p {
        font-size: 14px;
    }   

}

/* Mobile */
@media (max-width: 576px) {

    .service_hero_btn {
        padding: 6px 26px;
        font-size: 14px;
    }
}




/* ========================== */

/* MAIN SECTION */
.our_service_section {
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

/* Animated background dots */
.our_service_section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveDots 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

/* Dots Animation */
@keyframes moveDots {
    0% { transform: translate(0,0); }
    100% { transform: translate(50px,50px); }
}

/* SECTION TITLES */
.our_service_title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #0b5c4a;
}

/* SERVICE GRID */
.our_service_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.our_service_card {
    background: #fff7e3;
    border: 1px solid #f0d89b;
    border-radius: 10px;
    padding: 26px 22px;
    transition: 0.4s ease, transform 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.our_service_card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(11, 92, 74, 0.15) 0%, transparent 80%);
    transform: translate(-50%, -50%) scale(0);
    transition: 0.5s ease;
    border-radius: 50%;
    pointer-events: none;
}

.our_service_card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.our_service_card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.08);
}

.our_service_card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.our_service_card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ADVANTAGE SECTION */
.our_service_adv_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.our_service_adv_item {
    background: #eaf6f0;
    padding: 20px;
    border-radius: 8px;
    transition: 0.4s ease, transform 0.5s ease;
    cursor: pointer;
    position: relative;
}

.our_service_adv_item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.06);
}

.our_service_adv_item h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.our_service_adv_item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* CTA BOX */
.our_service_cta {
    margin-top: 80px;
    background: #fff7e3;
    border: 1px solid #f0d89b;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.our_service_cta h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.our_service_cta p {
    font-size: 13px;
    color: #666;
    margin-bottom: 22px;
}

.our_service_cta_btn {
    background: #0b5c4a;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.our_service_cta_btn:hover {
    background: #084a3c;
    transform: scale(1.05);
}

/* CUSTOM CURSOR */
body {
    cursor: none;
}

body::before {
    content: '';
    position: fixed;
    width: 16px;
    height: 16px;
    background: #0b5c4a;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .our_service_grid,
    .our_service_adv_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .our_service_section {
        padding: 60px 6%;
    }

    .our_service_grid,
    .our_service_adv_grid {
        grid-template-columns: 1fr;
    }

    .our_service_title {
        font-size: 22px;
    }
}





/* Hide default cursor */
body {
    cursor: none;
}

/* Main cursor dot */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #0b5c4a;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
    z-index: 9999;
}

/* Trailing cursor */
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid #0b5c4a;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    z-index: 9998;
    opacity: 0.3;
}

/* Cursor hover effect on interactive elements */
button:hover ~ .cursor-dot,
.our_service_card:hover ~ .cursor-dot,
.our_service_adv_item:hover ~ .cursor-dot {
    width: 24px;
    height: 24px;
    background: rgba(11, 92, 74, 0.8);
}

button:hover ~ .cursor-trail,
.our_service_card:hover ~ .cursor-trail,
.our_service_adv_item:hover ~ .cursor-trail {
    border-color: rgba(11, 92, 74, 0.6);
    width: 60px;
    height: 60px;
}



/* ================================== */


/* ====================================PARTENR SERVICE================== */

/* ========================================= */

/* SECTION */
.partner_section {
    width: 100%;
    padding: 80px 20px;
}

/* CONTAINER */
.partner_container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.partner_heading {
    text-align: center;
    margin-bottom: 60px;
}

.partner_heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.partner_heading p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* CARDS GRID */
.partner_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.partner_card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #D4AF37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.partner_card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.partner_card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
    .partner_cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner_heading h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .partner_section {
        padding: 60px 16px;
    }

    .partner_cards {
        grid-template-columns: 1fr;
    }

    .partner_heading h2 {
        font-size: 24px;
    }

    .partner_heading p {
        font-size: 14px;
    }

    .partner_card {
        padding: 24px 20px;
    }
}



/* ================================== */


/* =========================
   PARTNER GROWTH SECTION
========================= */

.partner_growth_section {
    width: 100%;
    padding: 80px 5%;
    /* background: linear-gradient(120deg, #ffffff 50%, #eef2ff 50%); */
    font-family: "Segoe UI", sans-serif;
}

.partner_growth_container {
    max-width: 1200px;
    margin: auto;
}

.partner_growth_header {
    text-align: center;
    margin-bottom: 60px;
}

.partner_growth_header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.partner_growth_header p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #666;
}

/* ===== Content Layout ===== */

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

/* ===== Left Content ===== */

.partner_growth_left {
    width: 50%;
}

.partner_growth_left h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
}

.partner_growth_left p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.partner_growth_features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.partner_growth_feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.partner_growth_icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner_growth_feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.partner_growth_feature p {
    font-size: 14px;
    color: #666;
}

/* ===== Right Diagram ===== */

.partner_growth_right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.partner_growth_diagram {
    position: relative;
    width: 360px;
    height: 360px;
}

.partner_growth_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===== Nodes ===== */

.partner_growth_node {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #3f5efb;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(63,94,251,0.35);
}

.partner_growth_node.gold {
    background: #e7c66b;
    color: #111;
}

/* Node Positions */
.partner_growth_top {
    top: 0;
    /* left: 50%; */
    left: 35%;
    transform: translateX(-50%);
}

.partner_growth_left_node {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.partner_growth_right_node {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.partner_growth_bottom_left {
    bottom: 0;
    left: 20%;
}

.partner_growth_bottom_right {
    bottom: 0;
    right: 20%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .partner_growth_content {
        flex-direction: column;
        gap: 50px;
    }

    .partner_growth_left,
    .partner_growth_right {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .partner_growth_header h2 {
        font-size: 28px;
    }

    .partner_growth_diagram {
        width: 280px;
        height: 280px;
    }

    .partner_growth_node {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }

    .partner_growth_center {
        font-size: 13px;
        padding: 10px 18px;
    }
}



/* ============================================ */


/* =========================
   MOTION & ANIMATION ONLY
========================= */

/* Section fade-in */
.partner_growth_section {
    animation: pg_fadeUp 1s ease forwards;
}

/* Header animation */
.partner_growth_header h2,
.partner_growth_header p {
    animation: pg_fadeUp 1.2s ease forwards;
}

/* Content animation */
.partner_growth_left {
    animation: pg_slideLeft 1.3s ease forwards;
}

.partner_growth_right {
    animation: pg_slideRight 1.3s ease forwards;
}

/* Diagram floating */
.partner_growth_diagram {
    animation: pg_float 6s ease-in-out infinite;
}

/* Center glow */
.partner_growth_center {
    animation: pg_pulse 2.8s ease-in-out infinite;
}

/* Node pulse */
.partner_growth_node {
    animation: pg_nodePulse 3s ease-in-out infinite;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover lift */
.partner_growth_node:hover {
    transform: scale(1.12);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* =========================
   KEYFRAMES
========================= */

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

@keyframes pg_slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pg_slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pg_float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}

@keyframes pg_nodePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes pg_pulse {
    0% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    50% {
        box-shadow: 0 12px 40px rgba(63,94,251,0.45);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 600px) {
    .partner_growth_diagram {
        animation-duration: 8s;
    }

    .partner_growth_node {
        animation-duration: 4s;
    }
}


/* ================================== */


/* =========================
   PARTNER FAQ SECTION
========================= */
.partner_faq_wrap {
    padding: 80px 0 60px;
    text-align: center;
}

.partner_faq_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.partner_faq_desc {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.partner_faq_list {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.partner_faq_item {
border: 1px solid #D4AF37;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.partner_faq_question {
    padding: 18px 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner_faq_icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.partner_faq_answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.partner_faq_item.active .partner_faq_answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.partner_faq_item.active .partner_faq_icon {
    transform: rotate(180deg);
}

/* =========================
   PARTNER FORM SECTION
========================= */
.pertner_frm_wrap {
    padding: 60px 0 80px;
}

.pertner_frm_box {
    display: flex;
    gap: 40px;
    background: #F4F0E1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #D4AF37;
}

.pertner_frm_left {
    width: 55%;
    padding: 40px;
}

.pertner_frm_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pertner_frm_desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.pertner_frm_group {
    margin-bottom: 16px;
}

.pertner_frm_group label {
    font-size: 13px;
    display: block;
    margin-bottom: 6px;
    color: #444;
}

.pertner_frm_group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #D4AF37;
    font-size: 14px;
    background-color: #F4F0E1;
}



.pertner_frm_btn {
    margin-top: 10px;
    padding: 12px 26px;
    background: #0A5854;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}

.pertner_frm_btn:hover {
    border: 1px solid #0A5854;
    background-color: transparent;
    color: #0A5854;
}

.pertner_frm_right {
    width: 45%;
}

.pertner_frm_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .pertner_frm_box {
        flex-direction: column;
    }

    .pertner_frm_left,
    .pertner_frm_right {
        width: 100%;
    }

    .pertner_frm_right {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .partner_faq_title {
        font-size: 26px;
    }

    .pertner_frm_title {
        font-size: 22px;
    }

    .pertner_frm_left {
        padding: 25px;
    }
}



/* ============================================ */


.product_section {
    padding: 80px 20px;
}

.product_container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.product_heading {
    text-align: center;
    margin-bottom: 50px;
}

.product_heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.product_heading p {
    font-size: 16px;
    color: #666;
}

/* Grid */
.product_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Card */
.product_card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    min-height: 360px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Large card */
.product_card_large {
    grid-column: span 2;
    min-height: 360px;
}

/* Overlay */
.product_overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product_overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product_overlay p {
    font-size: 14px;
    line-height: 1.5;
}

/* Button */
.product_btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #ffffff;
    color: #111;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .product_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product_card_large {
        grid-column: span 2;
    }

    .product_heading h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product_grid {
        grid-template-columns: 1fr;
    }

    .product_card_large {
        grid-column: span 1;
    }

    .product_heading h2 {
        font-size: 24px;
    }

    .product_overlay h3 {
        font-size: 18px;
    }
}



/* ================================== */



/* ===============================
   PRODUCT TRADITIONAL SECTION
================================ */

.product_traditionalo_section {
    width: 100%;
    padding: 80px 5%;
    font-family: "Segoe UI", sans-serif;
}

/* ===== Card ===== */

.product_traditionalo_card {
    max-width: 1100px;
    margin: auto;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
border: 1px solid #D4AF37;
}

/* Left Image Block */
.product_traditionalo_image {
    width: 45%;
}

/* Right Content */
.product_traditionalo_content {
    width: 55%;
    padding: 50px 50px;
}

.product_traditionalo_content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.product_traditionalo_content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ===== Middle Heading ===== */

.product_traditionalo_middle {
    text-align: center;
    margin: 70px auto 50px;
    max-width: 750px;
}

.product_traditionalo_middle h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product_traditionalo_middle p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ===== Features ===== */

.product_traditionalo_features {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product_traditionalo_feature {
    text-align: center;
    padding: 20px;
}

.product_traditionalo_icon {
    width: 46px;
    height: 46px;
    margin: auto;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #D4AF37;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_traditionalo_feature h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.product_traditionalo_feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}



/* ================= RESPONSIVE ================= */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {

    .product_traditionalo_card {
        flex-direction: column;
    }

    .product_traditionalo_image,
    .product_traditionalo_content {
        width: 100%;
    }

    .product_traditionalo_content {
        padding: 40px 35px;
    }

    .product_traditionalo_middle h3 {
        font-size: 24px;
    }

    .product_traditionalo_features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .product_traditionalo_section {
        padding: 60px 4%;
    }

    .product_traditionalo_content {
        padding: 30px 25px;
    }

    .product_traditionalo_content h2 {
        font-size: 22px;
    }

    .product_traditionalo_content p {
        font-size: 14px;
    }

    .product_traditionalo_middle {
        margin: 50px auto 40px;
        padding: 0 10px;
    }

    .product_traditionalo_middle h3 {
        font-size: 22px;
    }

    .product_traditionalo_middle p {
        font-size: 14px;
    }

    .product_traditionalo_features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    .product_traditionalo_content {
        padding: 25px 20px;
    }

    .product_traditionalo_content h2 {
        font-size: 20px;
    }

    .product_traditionalo_feature h4 {
        font-size: 15px;
    }

    .product_traditionalo_feature p {
        font-size: 13px;
    }

    .product_traditionalo_icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}




/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .product_traditionalo_card {
        flex-direction: column;
    }

    .product_traditionalo_image,
    .product_traditionalo_content {
        width: 100%;
    }


      .product_traditionalo_image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .product_traditionalo_content {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .product_traditionalo_features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product_traditionalo_middle h3 {
        font-size: 24px;
    }

    .product_traditionalo_content h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .product_traditionalo_content {
        padding: 28px 22px;
    }

    .product_traditionalo_middle {
        margin: 50px auto 35px;
    }
}



/* ========================= CONTACT PAGE ======================== */

.contct_content_sec
{
    width: 90% ;
    margin: auto ;
}



.contct_head {
    text-align: center;
    padding: 80px 0 50px;
}

.contct_head h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contct_head p {
    font-size: 15px;
    color: #777;
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

/* =========================
   MAIN WRAP
========================= */
.contct_wrap {
    display: flex;
    gap: 40px;
    padding-bottom: 80px;
}

/* =========================
   FORM BOX
========================= */
.contct_formBox {
    width: 60%;
    border: 1px solid #D4AF37;
    border-radius: 16px;
    padding: 30px;
}

.contct_formBox h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contct_row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contct_group {
    width: 100%;
}

.contct_group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}

.contct_group input,
.contct_group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #D4AF37;
    background-color: transparent;
    font-size: 14px;
}

.contct_group textarea {
    resize: none;
    height: 120px;
}

.contct_btn {
    margin-top: 15px;
    width: 100%;
    padding: 13px;
    background: #0A5854;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.contct_btn:hover {
    background: #222;
}

/* =========================
   INFO BOX
========================= */
.contct_info {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contct_infoCard {
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contct_icon {
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contct_infoText h4 {
    font-size: 15px;
    margin: 0 0 6px;
}

.contct_infoText p,
.contct_infoText a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .contct_wrap {
        flex-direction: column;
    }

    .contct_formBox,
    .contct_info {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contct_head h1 {
        font-size: 28px;
    }

    .contct_row {
        flex-direction: column;
    }
}


/* ============================================ */


.footer_bottom_ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
    flex-wrap: wrap;
}

.footer_copy_ {
    margin: 0;
    line-height: 1.6;
}

.footer_designer_ a {
    color: #FF7F32;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer_bottom_ {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}




/* ===================================================== */
/* =========================
  

added animatins

========================= */


/* ================================
   HOME MAKERS – MOTION GRAPHICS
================================ */

/* Floating background particles */
.home_makers_section::before,
.home_makers_section::after {
    content: "";
    position: absolute;
    /* width: 220px; */
    /* height: 220px; */
    background: radial-gradient(circle, rgba(255,127,50,0.25), transparent 70%);
    border-radius: 50%;
    animation: hm_float_bg 12s infinite alternate ease-in-out;
    pointer-events: none;
}

.home_makers_section::before {
    top: -60px;
    /* left: -60px; */
}

.home_makers_section::after {
    bottom: -60px;
    /* right: -60px; */
    animation-delay: 4s;
}

/* Floating animation */
@keyframes hm_float_bg {
    from { transform: translateY(0) translateX(0); }
    to   { transform: translateY(-40px) translateX(30px); }
}

/* ================================
   CARD FLOATING MOTION
================================ */
.home_makers_card {
    position: relative;
    overflow: hidden;
    animation: hm_card_float 6s ease-in-out infinite;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.home_makers_card:nth-child(2) {
    animation-delay: 1.5s;
}

.home_makers_card:nth-child(3) {
    animation-delay: 3s;
}

@keyframes hm_card_float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ================================
   MOUSE CURSOR TILT EFFECT
================================ */
.home_makers_card:hover {
    transform: scale(1.06) rotateX(6deg) rotateY(-6deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* ================================
   IMAGE ZOOM + SOFT PARALLAX
================================ */
.home_makers_card img {
    transition: transform 0.8s ease;
}

.home_makers_card:hover img {
    transform: scale(1.15);
}

/* ================================
   SHINE SWEEP ANIMATION
================================ */
.home_makers_card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: skewX(-25deg);
}

.home_makers_card:hover::after {
    animation: hm_shine 1.1s ease;
}

@keyframes hm_shine {
    from { left: -120%; }
    to { left: 160%; }
}

/* ================================
   LABEL SLIDE & GLOW
================================ */
.home_makers_label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: all 0.5s ease;
    box-shadow: 0 0 0 rgba(255,127,50,0);
}

.home_makers_card:hover .home_makers_label {
    bottom: 20px;
    box-shadow: 0 0 25px rgba(255,127,50,0.7);
}

/* ================================
   TITLE ENTRANCE MOTION
================================ */
.home_makers_title {
    animation: hm_title_reveal 1.2s ease forwards;
}

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

/* ================================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
    .home_makers_card {
        animation: none;
    }
}




/* =================================== */





.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Button Colors */
.whatsapp { background: #25D366; }
.call     { background: #007bff; }
.email    { background: #dc3545; }

