/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL VARIABLES & RESET STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@import url("https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
    --tg-body-font-family: 'Sarabun', sans-serif;
    --tg-heading-font-family: 'Sarabun', sans-serif;
    --tg-icon-font-family: "Font Awesome 5 Free";
    --tg-body-font-size: 16px;
    --tg-body-line-height: 1.75;
    --tg-heading-line-height: 1.2;
    --tg-body-color: #666666;
    --tg-heading-color: #000038;
    --tg-theme-primary: #001B90;
    --tg-theme-primary-two: #d70006;
    --tg-theme-secondary: #29ABE2;
    --tg-color-dark-blue: #0E104B;
    --tg-color-dark-blue-two: #001B31;
    --tg-color-dark-blue-three: #0F2C44;
    --tg-color-yellow-light: #FFB930;
    --tg-color-yellow-light-2: #DED9CE;
    --tg-color-white-default: #ffffff;
    --tg-color-sky-blue: #7EA7C8;
    --tg-color-sky-blue-two: #7E93A4;
    --tg-color-gray-1: #DCDCEC;
    --tg-color-gray-2: #C3C3EC;
    --tg-color-gray-3: #EDF6FA;
    --tg-color-gray-4: #F3F8F9;
    --tg-color-gray-5: #DDE3FF;
    --tg-color-gray-6: #96A1B8;
    --tg-color-gray-7: #4C4C5B;
    --tg-color-gray-8: #a6a6a6;
    --tg-color-gray-9: #fceff0;
    --tg-color-gray-10: #F6F6F6;
    --tg-color-gray-11: #F8F8F8;
    --tg-color-gray-12: #F9F9F9;
    --tg-color-gray-13: #696969;
    --tg-color-dark: #1C1A4A;
    --tg-color-black-1: #06042E;
    --tg-color-black-2: #151515;
    --tg-color-black-3: #00002F;
    --tg-color-black-4: #2d2d2d;
    --tg-color-black-5: #000;
    --tg-border-1: #5A5A8E;
    --tg-border-2: #DCE5E9;
    --tg-border-3: #B2BFC5;
    --tg-border-4: #E8ECED;
    --tg-border-5: #C3C3E1;
    --tg-border-6: #E0E0E0;
    --tg-border-7: #E2E2E2;
    --tg-border-8: #DBDBDB;
    --tg-border-9: #FF755E;
    --tg-fw-extra-bold: 800;
    --tg-fw-bold: 700;
    --tg-fw-semi-bold: 600;
    --tg-fw-medium: 500;
    --tg-fw-regular: 400;
    --tg-fw-light: 300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--tg-body-font-family);
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-fw-regular);
    color: var(--tg-body-color);
    line-height: var(--tg-body-line-height);
    overflow-x: hidden;
    background-color: #ffffff;
}

img, .img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

a, button {
    color: var(--tg-theme-primary);
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease-out 0s;
}

a:hover, button:hover {
    color: var(--tg-theme-primary);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-color);
    margin-top: 0px;
    font-weight: var(--tg-fw-bold);
    line-height: var(--tg-heading-line-height);
}

.list-wrap {
    margin: 0px;
    padding: 0px;
}

.list-wrap li {
    list-style: none;
}

p {
    font-family: var(--tg-body-font-family);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    font-weight: var(--tg-fw-regular);
    color: var(--tg-body-color);
    margin-bottom: 15px;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1250px;
}

.row {
    --bs-gutter-x: 30px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL VARIABLES & RESET ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BUTTON STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.btn {
    user-select: none;
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border: medium none;
    border-radius: 6px;
    color: var(--tg-color-white-default);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 17px 28px;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.3s ease-out 0s;
    font-family: var(--tg-heading-font-family);
    gap: 10px;
}

.btn:focus, .btn:hover {
    color: var(--tg-color-white-default);
    background: var(--tg-theme-secondary);
}

.btn-three {
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary);
}

.btn-three:hover {
    background: var(--tg-color-black-2);
    color: var(--tg-color-white-default);
}

.border-btn {
    border: 1px solid var(--tg-border-5);
    background: transparent;
    color: var(--tg-color-white-default);
    padding: 16px 27px;
}

.border-btn:hover {
    background: var(--tg-theme-secondary);
    border-color: var(--tg-theme-secondary);
}

.white-btn {
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary);
}

.white-btn:hover {
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BUTTON STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SECTION TITLE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.section__title .sub-title {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--tg-theme-primary);
    margin-bottom: 8px;
}

.section__title .title {
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 800;
    text-transform: capitalize;
}

.section__title.white-title .sub-title {
    color: var(--tg-color-white-default);
}

.section__title.white-title .title {
    color: var(--tg-color-white-default);
}

@media (max-width: 1199.98px) {
    .section__title .title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .section__title .title {
        font-size: 32px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SECTION TITLE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 999;
    height: auto;
}

.tg-header__top {
    background: var(--tg-heading-color);
    padding: 10px 25px;
}

.tg-header__top-three {
    background: var(--tg-color-black-2);
    padding: 11px 0;
}

.tg-header__top-info {
    display: flex;
    align-items: center;
    gap: 35px;
}

@media (max-width: 1199.98px) {
    .tg-header__top-info {
        justify-content: center;
        margin-bottom: 8px;
    }
}

.tg-header__top-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tg-color-gray-1);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    line-height: 1.4;
}

.tg-header__top-info li::before {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 14px;
    background: var(--tg-border-1);
}

.tg-header__top-info li:last-child::before {
    display: none;
}

.tg-header__top-info li i {
    color: var(--tg-theme-secondary);
    font-size: 18px;
    line-height: 0;
}

.tg-header__top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

@media (max-width: 991.98px) {
    .tg-header__top-right {
        display: none;
    }
}

.tg-header__top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tg-header__top-social .list-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-header__top-social .list-wrap li a:hover {
    color: var(--tg-theme-secondary);
}

.tg-header__area-three {
    background: transparent;
    box-shadow: none;
}

.tg-header__area-three .tgmenu__navbar-wrap > ul {
    margin: 0 0 0 70px;
}

.tg-header__area-three .tgmenu__navbar-wrap > ul > li > a {
    color: var(--tg-color-white-default);
}

.tgmenu__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767.98px) {
    .tgmenu__wrap {
        justify-content: space-between;
        
    }
}

.tgmenu__wrap .logo {
    max-height: 100%;
    display: flex;
    align-items: center;
}

.tgmenu__wrap .logo img {
    max-height: 100px;
    width: 100px;
}

.tgmenu__navbar-wrap {
    display: flex;
    flex-grow: 1;
}

.tgmenu__navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto;
}

.tgmenu__navbar-wrap ul > li {
    list-style: none;
    display: block;
    position: relative;
}

.tgmenu__navbar-wrap ul > li a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--tg-heading-color);
    padding: 32px 14px;
    display: flex;
    line-height: 1;
    font-family: var(--tg-heading-font-family);
}

.tgmenu__navbar-wrap ul > li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid #f5f5f5;
    background: var(--tg-color-white-default);
    margin: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 6px;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.tgmenu__navbar-wrap ul > li .sub-menu > li a {
    padding: 8px 15px 8px 25px;
    line-height: 1.4;
    display: block;
    color: var(--tg-heading-color);
    text-transform: capitalize;
}

.tgmenu__navbar-wrap ul > li .sub-menu > li:hover > a {
    color: var(--tg-theme-secondary);
}

.tgmenu__navbar-wrap ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.tgmenu__action {
    margin-right: 25px;
}

.tgmenu__action ul {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.tgmenu__action ul li {
    position: relative;
    margin-left: 30px;
}

.tgmenu__action ul .header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tgmenu__action ul .header-contact .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-gray-3);
    border-radius: 50%;
    flex: 0 0 auto;
    color: var(--tg-theme-primary);
    line-height: 0;
    font-size: 20px;
}

.tgmenu__action ul .header-contact .content span {
    display: block;
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
    color: var(--tg-body-color);
    margin-bottom: 8px;
}

.tgmenu__action ul .header-contact .content a {
    display: block;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--tg-heading-color);
}

.mobile-nav-toggler {
    position: relative;
    float: right;
    cursor: pointer;
    line-height: 1;
    display: none;
    font-size: 30px;
    color: var(--tg-theme-primary);
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199.98px) {
    .mobile-nav-toggler {
        display: flex;
        align-items: center;
    }
}

.sticky-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateY(-100%);
    z-index: 99;
    background: var(--tg-color-white-default);
    transition: all 0.4s ease;
    opacity: 0;
}

.sticky-menu.sticky-menu__show {
    transform: unset;
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    opacity: 1;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE MENU STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.tgmobile__menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transform: translateX(101%);
}

.tgmobile__menu.active {
    transform: translateX(0%);
}

.tgmobile__menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.tgmobile__menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.tgmobile__menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 1.5;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--tg-heading-color);
    text-transform: capitalize;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 20px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: var(--tg-heading-color);
    background: var(--tg-color-gray-3);
    cursor: pointer;
    border-radius: 2px;
    z-index: 5;
}

.tgmobile__menu .navigation li ul li > a {
    margin-left: 20px;
}

.tgmobile__menu .navigation li > ul {
    display: none;
}

.tgmobile__menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 14px;
    color: var(--tg-theme-primary);
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.tgmobile__menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.tgmobile__menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.tgmobile__menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-color-white-default);
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .tgmobile__menu {
    transform: translateX(0%);
}

.mobile-menu-visible .tgmobile__menu-backdrop {
    opacity: 1;
    visibility: visible;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE MENU STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.slider__area {
    position: relative;
    overflow: hidden;
}

.slider__single {
    position: relative;
    z-index: 1;
    padding: 370px 0 240px;
    margin-top: -80px;
}

@media (max-width: 1500px) {
    .slider__single {
        padding: 330px 0 240px;
    }
}

@media (max-width: 767.98px) {
    .slider__single {
        padding: 240px 0 200px;
    }
}

.slider__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: all 30s cubic-bezier(0, 0, 0.2, 1);
}

.slider__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tg-heading-color);
    mix-blend-mode: luminosity;
    opacity: 0.2;
}

.slider__content .title {
    margin-bottom: 15px;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tg-color-white-default);
}

@media (max-width: 1199.98px) {
    .slider__content .title {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .slider__content .title {
        font-size: 32px;
    }
}

.slider__content p {
    margin-bottom: 25px;
    color: var(--tg-color-gray-9);
    font-weight: 400;
    text-transform: capitalize;
    width: 90%;
}

.swiper-slide-active .slider__bg {
    transform: scale(1.2);
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide-active .slider__content .title,
.swiper-slide-active .slider__content p,
.swiper-slide-active .slider__content .btn {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-name: fadeInUp2;
}

.swiper-slide-active .slider__content .title {
    animation-delay: 0.3s;
}

.swiper-slide-active .slider__content p {
    animation-delay: 0.6s;
}

.swiper-slide-active .slider__content .btn {
    animation-delay: 0.9s;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--tg-color-white-default);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--tg-theme-primary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--tg-color-white-default);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--tg-theme-primary);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.features__area {
    position: relative;
    padding: 0 0 80px 0;
    margin-top: -150px;
    z-index: 20;
    background: transparent;
}

.features__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 35px 30px 40px 42px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    position: relative;
    margin-bottom: 30px;
    background: var(--tg-color-white-default);
    transition: all 0.3s ease-out 0s;
    min-height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199.98px) {
    .features__item {
        padding: 35px 20px 30px 20px;
        gap: 15px;
    }
}

.features__item::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 0;
    width: 60px;
    height: 6px;
    background: var(--tg-theme-primary);
}

.features__item:hover {
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.1);
    border-color: var(--tg-theme-primary);
}

.features__item:hover .features__icon i {
    transform: rotateY(180deg);
}

.features__icon {
    font-size: 50px;
    color: var(--tg-theme-primary);
    line-height: 0;
    flex-shrink: 0;
}

.features__icon i {
    transition: all 0.4s ease-out 0s;
    display: block;
}

.features__content {
    flex: 1;
}

.features__content .title {
    margin-bottom: 15px;
    font-size: 22px;
    text-transform: capitalize;
    color: var(--tg-heading-color);
}

.features__content p {
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.6;
    color: var(--tg-body-color);
}

.features__content .number {
    margin-bottom: 0;
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 36px;
    color: #ededed;
    line-height: 1;
    z-index: -1;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about__area-three {
    position: relative;
    padding: 100px 0;
    background: var(--tg-color-gray-4);
    z-index: 10;
}

@media (max-width: 767.98px) {
    .about__area-three {
        padding: 70px 0;
    }
}

.about__img-three {
    position: relative;
    padding: 26px 60px 28px 0;
}

@media (max-width: 991.98px) {
    .about__img-three {
        margin-bottom: 50px;
    }
}

.about__img-three::before {
    content: "";
    position: absolute;
    left: 23%;
    top: 0;
    width: 66%;
    height: 100%;
    border-radius: 5px;
    border: 14px solid #F4E5E6;
    z-index: -1;
}

.about__img-three img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.about__img-three img:nth-child(1) {
    border-radius: 8px;
    border: 6px solid var(--tg-color-white-default);
    width: 100%;
    position: relative;
    z-index: 1;
}

.about__img-three img:nth-child(2) {
    border-radius: 10px;
    border: 6px solid var(--tg-color-white-default);
    box-shadow: 0px 23px 34px 0px rgba(0, 0, 0, 0.25);
    position: absolute;
    right: 0;
    top: 10%;
    width: 213px;
    height: 213px;
    object-fit: cover;
    z-index: 2;
}

.about__img-three img:nth-child(3) {
    border-radius: 10px;
    border: 6px solid var(--tg-color-white-default);
    box-shadow: 0px 23px 34px 0px rgba(0, 0, 0, 0.25);
    position: absolute;
    right: 30px;
    bottom: 11%;
    width: 267px;
    height: 213px;
    object-fit: cover;
    z-index: 3;
}

.about__content-three {
    margin-left: 60px;
}

@media (max-width: 1199.98px) {
    .about__content-three {
        margin-left: 0;
    }
}

.about__content-three > p {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 30px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.area__bg {
    background-size: cover;
    background-position: center;
    background-color: var(--tg-theme-secondary);
    position: relative;
    z-index: 1;
}

.section-pt-130 {
    padding-top: 130px;
}

.section-pb-100 {
    padding-bottom: 100px;
}

@media (max-width: 767.98px) {
    .section-pt-130 {
        padding-top: 100px;
    }
    .section-pb-100 {
        padding-bottom: 70px;
    }
}

.project__item-two {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project__item-two:hover .project__thumb-two img {
    transform: scale(1.03) translateX(5px);
}

.project__item-two:hover .project__content-two {
    opacity: 1;
    visibility: visible;
}

.project__thumb-two {
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;
    width: 100%;
}

.project__thumb-two img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transform: scale(1.03);
    transition: 0.4s ease-in-out;
    border-radius: 10px;
}

.project__content-two {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 40px 20px 40px 30px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    border-radius: 0 0 10px 10px;
}

.project__content-two .title {
    margin-bottom: 0;
    color: var(--tg-color-white-default);
    font-size: 24px;
    font-weight: 600;
    background: var(--tg-theme-primary);
    border-radius: 4px 4px 4px 0px;
    padding: 10px 17px 12px;
    display: inline-block;
}

.project__content-two .title a {
    color: var(--tg-color-white-default);
}

.project__content-two .title a:hover {
    color: var(--tg-theme-secondary);
}

.view-all-btn .btn {
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary);
}

.view-all-btn .btn:hover {
    background: var(--tg-color-black-2);
    color: var(--tg-color-white-default);
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CHOOSE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.choose__area-two {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 120px 0;
}

@media (max-width: 767.98px) {
    .choose__area-two {
        padding: 100px 0;
    }
}

.choose__img-two {
    position: relative;
}

@media (max-width: 991.98px) {
    .choose__img-two {
        margin-bottom: 50px;
    }
}

.choose__img-two .main-img img {
    border-radius: 10px;
    width: 100%;
}

.choose__content-two {
    margin-left: 65px;
}

@media (max-width: 1199.98px) {
    .choose__content-two {
        margin-left: 20px;
    }
}

@media (max-width: 991.98px) {
    .choose__content-two {
        margin-left: 0;
    }
}

.choose__content-two > p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
}

.choose__content-inner {
    display: flex;
    align-items: center;
    gap: 20px 50px;
    margin-bottom: 45px;
}

@media (max-width: 767.98px) {
    .choose__content-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.choose__content-inner > p {
    margin-bottom: 0;
    width: 53%;
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .choose__content-inner > p {
        width: 100%;
    }
}

.choose__list-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.choose__list-item .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--tg-color-white-default);
    border-radius: 10px;
    border: 1.5px solid var(--tg-theme-primary);
    color: var(--tg-theme-primary);
    font-size: 50px;
    line-height: 0;
    transition: all 0.5s ease-out 0s;
}

.choose__list-item .content .title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.choose__list-item .content p {
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.5;
}

.choose__list-item:hover .icon {
    transform: rotateY(180deg);
}

.about__list-box .list-wrap li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--tg-heading-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.about__list-box .list-wrap li i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--tg-theme-secondary);
    color: var(--tg-color-white-default);
    border-radius: 50%;
    font-size: 12px;
}

.choose__shape img {
    position: absolute;
    z-index: -1;
    right: -18px;
    bottom: 17%;
    max-width: 248px;
}

@media (max-width: 1500px) {
    .choose__shape img {
        max-width: 180px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CHOOSE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer__area-two {
    background: var(--tg-color-black-2);
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.footer__top {
    padding: 0 0 40px;
}

.footer__widget {
    margin-bottom: 40px;
}

.footer__widget-title {
    margin-bottom: 15px;
    color: var(--tg-color-white-default);
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
}

.footer__widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 29px;
    height: 4px;
    background: var(--tg-theme-secondary);
    border-radius: 4px;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    max-height: 100px;
    width: 100px;
}

.footer__content p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #96A1B8;
    text-transform: capitalize;
}

.footer__link .list-wrap li {
    margin-bottom: 10px;
}

.footer__link .list-wrap li a {
    color: var(--tg-color-gray-6);
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

.footer__link .list-wrap li a:hover {
    color: var(--tg-color-white-default);
}

.footer__info-wrap .list-wrap li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

.footer__info-wrap .list-wrap li a,
.footer__info-wrap .list-wrap li p {
    font-size: 17px;
    font-weight: 500;
    color: var(--tg-color-gray-6);
    margin-bottom: 0;
    line-height: 1.4;
}

.footer__info-wrap .list-wrap li a:hover {
    color: var(--tg-color-white-default);
}

.footer__info-wrap .list-wrap li i {
    flex: 0 0 auto;
    font-size: 22px;
    color: var(--tg-color-white-default);
    line-height: 0;
    transform: translateY(4px);
}

.footer__social .list-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__social .list-wrap li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-dark);
    color: var(--tg-color-white-default);
    border-radius: 50%;
    font-size: 18px;
}

.footer__social .list-wrap li a:hover {
    background: var(--tg-theme-secondary);
}

.text-white {
    color: #ffffff !important;
}

.text-center {
    text-align: center !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    .tgmenu__navbar-wrap {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    .features__area {
        margin-top: -80px;
    }
    .project__thumb-two img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }
    .features__area {
        margin-top: -50px;
        padding: 0 0 50px 0;
    }
    .features__item {
        padding: 25px 20px;
        min-height: auto;
    }
    .project__thumb-two img {
        height: 220px;
    }
    .project__content-two .title {
        font-size: 20px;
        padding: 8px 14px 10px;
    }
    .text-end {
        text-align: center !important;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FLATICON FONT MAPPING STARTS !!!AAAAAAAAAAAAAAAAAAA*/
[class^="flaticon-"]:before, [class*=" flaticon-"]:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.flaticon-location-1:before { content: "\f3c5"; }
.flaticon-envelope:before { content: "\f0e0"; }
.flaticon-telephone:before { content: "\f095"; }
.flaticon-menu-1:before { content: "\f0c9"; }
.flaticon-close-1:before { content: "\f00d"; }
.flaticon-warehouse-1:before { content: "\f1b0"; }
.flaticon-air-freight:before { content: "\f072"; }
.flaticon-ship:before { content: "\f21a"; }
.flaticon-truck:before { content: "\f0d1"; }
.flaticon-check:before { content: "\f00c"; }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FLATICON FONT MAPPING ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.slider__area {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.slider__single {
    position: relative;
    z-index: 1;
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 1500px) {
    .slider__single {
        padding: 150px 0 100px;
    }
}

@media (max-width: 991.98px) {
    .slider__single {
        padding: 120px 0 80px;
        min-height: 80vh;
    }
}

@media (max-width: 767.98px) {
    .slider__single {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
}

.slider__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: all 30s cubic-bezier(0, 0, 0.2, 1);
}

.slider__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slider__bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.slider__content {
    position: relative;
    z-index: 2;
}

.slider__content .title {
    margin-bottom: 20px;
    font-size: 55px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--tg-color-white-default);
    line-height: 1.2;
}

@media (max-width: 1199.98px) {
    .slider__content .title {
        font-size: 48px;
    }
}

@media (max-width: 991.98px) {
    .slider__content .title {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .slider__content .title {
        font-size: 32px;
    }
}

.slider__content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 18px;
    width: 90%;
}

@media (max-width: 767.98px) {
    .slider__content p {
        font-size: 16px;
        width: 100%;
    }
}

.slider__content .btn {
    display: inline-flex;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

.swiper-slide-active .slider__bg {
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide-active .slider__content .title {
    animation-delay: 0.3s;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-name: fadeInUp2;
}

.swiper-slide-active .slider__content p {
    animation-delay: 0.6s;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-name: fadeInUp2;
}

.swiper-slide-active .slider__content .btn {
    animation-delay: 0.9s;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-name: fadeInUp2;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--tg-color-white-default);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--tg-theme-primary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--tg-color-white-default);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--tg-theme-primary);
}

/* Remove extra margin-top from first slide */
.slider__single:first-child {
    margin-top: 0;
}

/* Shape at bottom */
.slider__single .shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/




------------

/* Sticky Header Styles - ADD THIS AT THE END OF HEADER SECTION */
.tg-header__area-three {
    background: transparent;
    transition: all 0.3s ease;
}

.tg-header__area-three.sticky-menu,
.tg-header__area-three.sticky-menu__show {
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Make sure menu links are visible when header is sticky */
.tg-header__area-three.sticky-menu .tgmenu__navbar-wrap > ul > li > a {
    color: var(--tg-heading-color) !important;
}

/* Mobile menu toggler color when sticky */
.tg-header__area-three.sticky-menu .mobile-nav-toggler {
    color: var(--tg-theme-primary) !important;
}

/* Logo visibility when sticky */
.tg-header__area-three.sticky-menu .logo img {
    filter: brightness(1);
}



/* MOBILE STICKY HEADER FIX */
@media (max-width: 1199px) {
    .transparent-header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        background: white !important;
        z-index: 9999 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .tg-header__top {
        display: none !important;
    }
    
    .tg-header__area-three {
        background: white !important;
        padding: 10px 0 !important;
    }
    
    .mobile-nav-toggler {
        color: #001B90 !important;
    }
    
    body {
        padding-top: 80px !important;
    }
}