 * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* outline: none;
    border: none; */
    text-decoration: none;
    list-style: none;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    /* font-family: 'Lato', sans-serif; */
    /* font-family: 'Rubik', sans-serif; */
    font-family: 'Cairo', sans-serif;
    /* font-family: 'Kanit', sans-serif; */
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}



:root {
    --primary-dark: #012035;
    --primary-accent: #FF6404;
    --color-green: #07AC7E;
    --secondary-light: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --shadow-box: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    --transition-all: all 0.2s ease-in-out;
}


/*---- Make design to whatsapp icone ----*/
/* for desktop */
.whatsapp_float {
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 70px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-green);
    color: #f1f1f1;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    cursor: pointer;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

/* 
.whatsapp_float:hover {
    background-color: #fff;
    color: #0b9f11;
} */

.whatsapp-icon {
    margin: 0 auto;
}

.btn-up {
    height: 35px;
    width: 35px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 55px;
    bottom: 10px;
    transition: var(--transition-all);
    cursor: pointer;
    z-index: 1000;
}

.icone {
    width: 50px;
}

.btn-up i {
    color: #fff;
    font-size: 22px;
}

/* for mobile */
@media screen and (max-width: 767px) {
    .whatsapp_float {
        width: 45px;
        height: 45px;

        right: 20px;
        font-size: 25px;
    }

    .btn-up {
        height: 35px;
        width: 35px;
        right: 25px;
        bottom: 10px;
    }

    .btn-up i {
        font-size: 18px;
    }
}

/*---- Utility classes ----*/
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

li {
    list-style: none;
}

a {
    text-decoration: none;
}


.content-section {
    padding: 0;
}

.pad-top-3 {
    padding-top: 3rem;
}

.pad-top-4 {
    padding-top: 4rem;
}

.pad-bot-4 {
    padding-bottom: 4rem;
}

.pad-bot-4 {
    padding-bottom: 4rem;
}

.px {
    padding-left: 5rem;
    padding-right: 5rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.text .btn {
    display: inline-block;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 1.5rem;
    background-color: var(--primary-accent);
    font-family: 'Lato', sans-serif;
    border-radius: 50px;
    padding: 15px 25px;
    letter-spacing: 1px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-all);
}

.btn:hover {
    background-color: var(--primary-dark);

}

.main-title {
    position: relative;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    color: var(--primary-accent);
    font-size: 2.7rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.main-title span {
    color: var(--text-light);
}

@media (max-width:768px) {
    .main-title {
        font-size: 2.2rem;

    }

    .px {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.title {
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-family: 'Kanit', sans-serif;
    /* font-family: 'Lato', sans-serif; */
    /* color: rgba(55, 176, 192, 0.5); */
    color: #012035;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    padding-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.5;
}

.title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #FF6404;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}



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

.section-title h2 {
    font-size: 32px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/*-------------- Header Section Start ------------------*/
header {
    background-color: #f1f1f1;
    color: var(--text-light);
    padding: 10px 25px;
    position: fixed;
    width: 100%;
    height: 150px;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    margin-top: -25px;
    margin-left: -25px;
}

.logo img {
    max-width: 100%;
    width: 200px;
    margin-left: -22px;
    margin-top: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    padding-bottom: 45px;

}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 1.1rem;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 32px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 150px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        transition: left 0.3s;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        color: var(--text-light);
    }

    .mobile-menu-btn {
        display: block;
        margin-bottom: 45px;
    }
}

/*-------------- Header Section End ------------------*/
/*-------------- Footer Section Start ------------------*/

footer {
    position: relative;
    background-color: #012035;
    /*#04142a*/
    /*#757575*/
    max-width: 100%;
    left: 0;
    bottom: 0;
    margin: 0;
    color: #fff;
}

.myFooter {
    width: 100%;
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 55px;
    gap: 2.5rem;
}

/* .myFooter .footer-center, */
.myFooter .footer-right,
.myFooter .footer-left {
    text-align: left;
    /* flex: 1; */
}

.footer-center {
    display: flex;
    flex-basis: 30%;
    flex-direction: column;
}

.footer-center h2 {
    font-size: 2rem;
    line-height: 1.2;
    padding-bottom: 1rem;
    color: var(--primary-accent);
}

.footer-center h2 span {

    color: var(--text-light);
}

/* 
.footer-center span {
    color: var(--color-common);
} */

.footer-center p {
    display: block;
}

.footer-right li {
    list-style: none;
    margin: 0 auto 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.footer-right li i {
    font-size: 22px;
    color: var(--primary-accent);
}

.footer-right li a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}


.footer-left .links-boxes {
    display: flex;
    flex-direction: column;
    margin-bottom: 72px;
    /* justify-content: flex-end;
}

.footer-left .links-boxes li {
    display: flex;
    justify-content: flex-end; */
}

.footer-left .links-boxes li a {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
    color: #fff;
    opacity: .6;
    text-align: left;
    margin-right: 0.5rem;
    margin-bottom: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.links-boxes li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.soc-icon {
    margin: 1rem auto;
    text-align: center;
}

.soc-icon i {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 50%;
    margin: 1rem .2rem;
    background-color: #33383b;
    text-decoration: none;
}

.soc-icon i:hover {
    color: #33383b;
    background-color: #777;
}

.footer-bot {
    background-color: #182c3a;
    display: block;
    text-align: center;
    padding: .5rem;
}

.footer-bot p {
    padding-top: .95rem;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
}

.footer-bot h3 {
    text-align: left;
}

.footer-bot span {
    font-weight: 800;
    color: var(--primary-accent);
}

@media (max-width:500px) {
    .myFooter {
        /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width:767px) {
    .myFooter {
        flex-direction: column;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 1rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;

    }

    .footer-right {
        margin-top: 20px;
    }

    .footer-center {
        text-align: center;
    }

    .footer-right li {
        justify-content: center;
        font-size: 0.85rem;
    }

    .footer-center img {
        width: 120px;
    }

    .footer-center p {
        font-size: 0.9rem;
    }

    .links-boxes li a {
        font-size: .85rem;
    }

    .links-boxes li {
        display: flex;
        justify-content: center;
        font-size: 0.9rem;
    }

    .footer-right .soc-icon i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 15px;
        margin: 1rem .2rem;
    }

    .footer-bot .trst-link a img {
        width: 40px;
        height: 30px;
    }
    .footer-left .links-boxes {
        margin-bottom: 0;
    }
}

/*-------------- Footer Section End ------------------*