/* =========================================
   Theme Variables
========================================= */
@font-face {
    font-family: 'MyanmarSanpya';
    src: url('../font/MyanmarSanpya.ttf') format('truetype');
    font-weight: normal;
}


:root {

    /* Brand Colors */

    --primary: #4CAF50;
    --primary-dark: #2E7D32;
    --primary-light: #EAF7EC;

    --secondary: #D62828;
    --secondary-dark: #B71C1C;

    --warning: #F4C542;
    --warning-dark: #D4A017;

    --accent: #8D6E63;

    /* Background */

    --body-bg: #F8F9F5;
    --section-bg: #FFFFFF;
    --soft-bg: #FFFBE8;

    /* Text */

    --text: #222222;
    --text-light: #666666;

    /* Border */

    --border: #E8E8E8;

    /* Shadow */

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, .08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .12);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, .16);

    /* Radius */

    --radius: 18px;

    /* Transition */

    --transition: .35s ease;

}

.fs-14 {
    font-size: 14px;
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'MyanmarSanpya', sans-serif;
    background: #f7f7f7;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'MyanmarSanpya', sans-serif;
    font-weight: 500;
}

a {
    text-decoration: none;
}

.top-bar {
    background: #111111;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 36px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-show-logo {
    display: none;
}

.phone-box {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

.head-btn {
    padding: 6px 14px !important;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400 !important;
    letter-spacing: .3px;
}

.head-btn i {
    margin-right: 2px;
}

.hero {
    padding: 70px 0;
    background: #fff;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    color: #666;
}

.hero-contact p {
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-img {
    width: 92%;
    border-radius: 25px;
}

.hero {
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 60%,
            var(--primary-light) 100%);
}

.hero {
    background:radial-gradient(circle at right, #dff6e8 0%, #ffffff 65%);
}

.hero h1 {
    line-height: 1.2;
}

.hero-img {
    transition: .5s;
}

.hero-img:hover {
    transform: scale(1.03);
}



.services {
    padding: 70px 0;
}

.section-title h2 {

    font-size: 38px;

    font-weight: 700;

    color: var(--text);

}

.section-title p {

    color: var(--muted);

    max-width: 650px;

    margin: auto;

    margin-top: 15px;

}

.section-title {
    margin-bottom: 50px;
}





.pricing-section {
    background: #fff;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    /* height: 100%; */
}

.price-card h5 {
    font-weight: 700;
}

.price-card small {
    color: #777;
}

.price-card h2 {
    color: #d62828;
    margin: 15px 0;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
}

.price-card ul {
    padding-left: 18px;
    min-height: 110px;
}

.price-card ul li {
    margin-bottom: 8px;
}

.filter-btn {
    margin: 3px;
    border-radius: 6px !important;
}

.input-group-text {
    border-right: none;
}

.form-control {
    border-left: none;
}



.footer-section {
    background: #030303;
    padding: 70px 0 50px;
}

.footer-box {
    text-align: center;
}


.footer-box h4,
.social-area h4 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 15px;
    position: relative;
    color: #ffffff;
}

.footer-box h4::before,
.social-area h4::before {
    width: 40px;
    height: 3px;
    content: "";
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-contact i {
    color: #ffffff;
    margin-right: 8px;
}



.social-area {
    text-align: center;
    margin-top: 20px;
}

.social-area h5 {

    margin-bottom: 20px;

}

.social-area a {

    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    margin: 5px;
    transition: .3s;
    font-size: 14px;
}

.copyright-area {
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    background-color: #e7e7e7;
}

.copy-text{
    margin-bottom: 0px;
}

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

#scrollTop {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
}

#scrollTop {
    background: #B71C1C;
    display: none;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
}








.btn {

    border-radius: 6px;
    padding: 10px 24px;
    transition: var(--transition);
    font-weight: 600;
}



.btn-danger {
    border-radius: 6px;
}











.price-card{

    border: 1px solid rgba(0, 0, 0, .06);

    overflow: hidden;

}

.price-card:hover{
    box-shadow: var(--shadow-lg);
}


.price-card {
    position: relative;
}

.price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
}


.form-control {

    height: 50px;

    border-radius: 12px;

}

.input-group-text {

    border-radius: 12px 0 0 12px;

}











.btn {
    position: relative;
    overflow: hidden;
}

.ripple {

    position: absolute;

    width: 20px;
    height: 20px;

    background: rgba(255, 255, 255, .5);

    border-radius: 50%;

    transform: translate(-50%, -50%) scale(0);

    animation: ripple .6s linear;

}

@keyframes ripple {

    to {

        transform: translate(-50%, -50%) scale(15);

        opacity: 0;

    }

}


.filter-success {
    /* border: 1px solid var(--warning) !important;
    background: var(--warning) !important; */
    background-color: #DC3545 !important;
    border: 1px solid #DC3545!important;
    color: #fff !important;
}

.btn-success:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.filter-outline-success {
    border: 1px solid #DC3545 !important;
}

.filter-outline-success:hover {
    background-color: #DC3545 !important;
    color: #fff !important;
}


.btn-danger {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-danger:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}


.marquee-section {
    background-color: #F2F0F0;
}

.marquee-container {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    background-color: #F2F0F0;
    overflow: hidden;

}

.marquee-crawl {
    position: relative;
    color: #000;
    width: 100%;
    margin: 0;
    background-color: transparent;

}

.marquee-box {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    width: max-content;
    height: 100%;
    white-space: nowrap;
    animation: marquee-slide 60s linear infinite;
    line-height: 50px;
}


.marquee-container:hover .marquee-box {
    animation-play-state: paused;
}

.d-flex-g-500 {
    display: flex;
    gap: 150px;
}

.d-flex-g-500 p {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.5px;
}

@keyframes marquee-slide {
    0% {
        left: 100%;
        transform: translateX(0);
    }

    100% {
        left: 0;
        transform: translateX(-100%);
    }
}

.footer-section {
    position: relative;
    overflow: hidden;
}

.footer-section .relative-content {
    position: relative;
    z-index: 10;
}

.footer-bg-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
    animation: floating-wiggle 5s ease-in-out infinite;
}


.icon-1 {
    top: 15%;
    left: 15%;
    font-size: 80px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 10%;
    right: 15%;
    font-size: 70px;
    animation-delay: 1s;
}

.icon-3 {
    top: 25%;
    right: 8%;
    font-size: 80px;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    left: 10%;
    font-size: 90px;
    animation-delay: 3s;
}


@keyframes floating-wiggle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.hero-section {
    background-color: #fcfcfc;
    overflow: hidden;
}

.hero-title {
    font-size: 2.8rem;
    color: #212529;
    line-height: 1.4;
}

.btn-call {
    background-color: #dc3545;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: #b02a37;
    color: #fff;
}

.icon-box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}


.floating-img {
    position: relative;
    z-index: 2;
    max-width: 85%;
    filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.25));
    animation: floatUpDown 4s ease-in-out infinite;
    border-radius: 12px;
}


@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}
