@charset "UTF-8";

/*---Google Fonts---*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Questrial&family=Rubik:ital,wght@0,300..900;1,300..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --thm-font: 'Poppins', sans-serif;
    /* Headings */
    --thm-b-font:  'Poppins', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /* --thm-icon-font: "Font Awesome 5 Pro"; */
    /*Icon Font*/
    --thm-color-one: #077DAD;
    --thm-color-two: #044560;
    --thm-color-three: #fff;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #000;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-text: #050556;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background: var(--thm-color-one);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 50px 0;
}

.section-padding.section {
    padding-bottom: 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: disc;
    margin-bottom: 20px;
    padding-left: 25px;
}

ul li {
    margin-bottom: 0px;
    position: relative;
    color: #000;
    font-size: 16px;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}
select.form-control {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    max-width: 550px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 30px;
    padding-top: 0;
    border-left: 4px solid var(--thm-color-one);
    border-radius: 10px;
    border-bottom: 2px solid #e2dcdc;
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 16px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}
.slick-arrow.slick-prev:before {
    content: "\f053";
}
.slick-arrow {
    background: var(--thm-color-one);
    position: absolute;
    top: 48%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 50%;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev.slick-arrow {
    left: 0;
}
.slick-next.slick-arrow {
    right: 0;
/*    left: 0;*/
}



.slick-arrow.slick-prev:hover {
    border: 2px solid var(--thm-color-one);
    background-color:transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-prev:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-prev:focus:before {
    color: var(--thm-color-one);
}

.slick-arrow.slick-next:hover {
    border: 2px solid var(--thm-color-one);
    background-color: transparent;
    color: var(--thm-color-one) !important;
}
.slick-arrow.slick-next:hover:before {
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus {
    border: 2px solid var(--thm-color-one);
    background-color: #fff;
    color: var(--thm-color-one);
}
.slick-arrow.slick-next:focus:before {
    color: var(--thm-color-one);
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}

.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 2px solid ;
    color: #000;
    border-radius: 5px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    color: var(--thm-color-four);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
    font-weight: 700;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 16px;
}
p {
    margin-bottom: 25px;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}
a {
    color: var(--thm-body-color);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px 40px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-two);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}
.whislist-table {
    overflow: auto;
}
.order-title {
    color: #000;
}

/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}
/*Buttons*/
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
.btn:hover {
    background-color: transparent;
}
/* .thm-btn:hover i, .thm-btn:focus i {
    color: var(--thm-color-one);
    font-size: 26px;
} */
.thm-btn:hover, .thm-btn:focus {
    color: #fff !important;
    background-color: #000 !important;
    justify-content: center;
}
.thm-btn {
    color: #fff;
    background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    transition: 0.5s all;
    font-weight: 400;
    border-radius: 7px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    gap: 7px;
    /* overflow: hidden; */
}
.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}
.thm-btn.light-btn {
background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
}
.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}
.thm-btn i {
    font-size: 19px;
    line-height: normal;
    color: #050556;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 4px 15px;
}
.thm-btn-two {
    background: #FFE0D0;
    padding: 2px 15px;
    border-radius: 6px;
    color: #FF7A33;
    border: 1px solid;
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s all;
}
.thm-btn-two:hover  {
    background-color: #000;
    color: #fff;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    background: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-wrap h1 {
    letter-spacing: 15px;
    font-size: 65px;
    font-weight: 600;
    color: #fff;
}

/*---------------------------------------*/
/*------header start------*/
/* .menu-item a:hover {
    transform: translateX(5px);
} */
.active {
    color: var(--thm-color-one) !important;
}
.header-logo {
    padding: 10px 0;
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-icon {
    display: flex;
    justify-content: end;
    align-items: center;
}
.btn.btn-primary {
    width: 50px;
    height: 35px;
    /* margin-right: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

.btn.btn-primary i {
    transition: 0.5s all;
}

.btn.btn-primary i:hover {
    color: var(--thm-color-one);
}

/*------header end------*/

.main-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    align-items: center;
}
.menu-item a {
    color: #000;
    padding: 18px 14px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.header .menu-item a:hover {
    color: var(--thm-color-one) !important;
}
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
    list-style: none;
    padding-left: 0;
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item a {
    padding: 0;
    width: 100%;
    padding: 12px 10px;
    /*border-bottom: 1px solid;*/
    transition: 0.5s all;
    background-color: #000;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item a:hover {
    /*background-color: var(--thm-color-one);*/
    color: var(--thm-color-one) !important;
    font-size: 16px;
    font-weight: 500;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(182deg,rgba(29, 62, 79, 1) 0%, rgba(68, 151, 184, 1) 99%);
    border-radius: 0;
    opacity: 0;
    transition: 0.5s all;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a:hover:before {
    opacity: 1;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0;
}
.header .header_action {
    margin-left: 15px;
}
li.menu-item.contact-menu a {
    background: var(--thm-color-one);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
}
li.menu-item.contact-menu a:hover {
    background: #000 !important;
    color: #fff !important;
}
.header.sticky li.menu-item.contact-menu a {
    background: var(--thm-color-one);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
}
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/
.header-search {
    position: relative;
    width: 85%;
}
.header-search i {
    position: absolute;
    left: 14px;
    top: 29%;
}
.header-search input {
    padding: 10px 10px;
    padding-left: 40px;
    border-radius: 30px;
    border-color: #8E8E93;
}
.header {
    background: #fff;
    position: relative;
    z-index: 99;
    /* border-bottom: 1px solid #A3131366; */
    width: 100%;
    top: 0;
    box-shadow: 0px -4px 4px 0px #00000040;
}
/* .logo img {
    width: 205px;
} */
.stat-select {
    color: #4C8EFF;
    font-size: 14px;
    margin-bottom: 15px;
}
.header-profile .profile-icon {
    background: var(--thm-color-one) !important;
    color: #fff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
}
.header-profile .profile-icon:hover {
    background-color: #000;
}
.header-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
a.profile-icon {
    color: #fff;
}
.profile-main {
    position: relative;
    padding: 16px 0;
    transition: 0.5s all;
}
.profile-main:hover .profile-dropdown {
    display: block;
    width: 200px;
    transition: 0.5s all;
    display: block;
}
.header-right .thm-btn {
    background: var(--thm-color-two);
    border-color: transparent;
    color: #fff;
}
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0%;
    background: #fff;
    border-radius: 0;
    width: 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
    transition: 0.5s all;
}
ul.user-list-header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
ul.user-list-header li a {
    color: #696B67;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: 0.5s all;
}
ul.user-list-header li a i {
    color: #F1624B;
}
.user-list-header li a:hover {
    color: var(--thm-color-one);
}
.user-name {
    display: flex;
    align-items: center;
    padding: 15px 14px;
    background: var(--thm-color-one);
    color: #fff;
    gap: 15px;
    border-radius: 15px 15px 0 0;
}
.user-full-name {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}
.user-sort-name {
    background: #fff;
    color: var(--thm-color-one);
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-right {
    /* padding-top: 25px; */
    display: flex;
    align-items: center;
    gap: 15px;
}
.banner-form-body textarea.form-control {
    min-height: 70px !important;
}
.banner-form-body .form-group {
    position: relative;
    margin-bottom: 10px;
}
/*--------banner start------*/
.banner-bg {
    height: 650px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    z-index: 0;
    /* display: flex !important; */
    align-items: center;
    padding: 30px 0;
}
.thm-btn.thm-one-btn {
    background: var(--thm-color-one);
}
.banner-title {
    font-size: 60px;
    color: #fff;
    padding-top: 20px;
}
.overlay:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}
.banner-text p {
    color: #fff;
    font-size: 23px;
}
.banner-sm {
    background-color: #fff !important;
}
.banner-sm:before {
    background-color: var(--thm-color-one) !important; 
    outline: 4px solid #f7efca !important;
}
.heading-top-sm {
    background: #FEF3D7;
    color: #1E1600;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: Lora;
    position: relative;
    padding-left: 40px;

}
.heading-top-sm:before {
    position: absolute;
    content: '';
    top: 39%;
    background-color: var(--thm-color-two);
    left: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: 4px solid #cacbf7;
}
.banner-btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.thm-text {
    color: var(--thm-text);
}
.banner-text p:first-child {
    font-size: 16px;
    text-decoration: underline;
}
.header-banner {
    background: #0C80B0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.header-banner i {
    color: #fff;
    font-size: 36px;
}
.header-banner p {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
.banner-form-body {
    background: #fff;
    padding: 15px;
    margin-top: 0;
    border-radius: 10px 10px;
    text-align: center;
}
.banner-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35%;
}
.banner-content h1 {
    color: #fff;
    font-size: 32px;
}

ul.ft-items {
    padding-left: 0;
    list-style: none;
}
.banner-text.slick-slide.slick-current.slick-active h2 {
    display: block;
}
@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
    border-top: 1px solid #fff;
    background: #FFF9EB;
    margin-top: 90px;
}
.marquee-text {
    color: #B58203;
    font-size: 18px;
    font-weight: 500;
    margin: 0 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 28px;
}
.banner-title h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 500;
}
.banner-slider {
    padding: 80px 0;
}
.banner-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: 0;
}
.banner-slider .slick-dots li button {
    background-color: #fff;
    width: 40px;
    height: 3px;
    border-radius: 0px;
    border: 1px solid  #fff;
}
.banner-slider .slick-dots li.slick-active button {
    background-color: #fff;
    width: 70px;
    border: 1px solid  #fff;
}
.banner-slider .slick-dots li.slick-active button:before {
    width: 25px;
    height: 25px;
    opacity: 0;
}
.btn-sm {
    padding: 4px 16px;
    font-size: 14px;
}
/*--------banner end------*/
.subscribe-box {
    padding:  20px 40px;
    border-radius: 20px;
    background: var(--thm-color-one);
    margin-bottom: -149px;
    z-index: 2;
    position: relative;
    text-align: center;
}
/*--------footer start-----*/
.footer {
    padding-bottom: 0px;
    padding-top: 220px;
}
.subscribe-box h2 {
    color: #fff;
}
.subscribe-box p {
    color: #fff;
    margin-bottom: 0;
    font-weight: 200;
}
.subscribe-mail {
    display: flex;
    align-items: center;
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 5px;
}
.subscribe-mail input {
    border: 0;
}

.ft-logo img {
    /* width: 160px; */
    margin-bottom: 20px;
}
.ft-left p {
    color: #000;
}
.follow-icon i {
    color: #fff;
    transition: 0.5s all;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
}
.follow-icon i:hover {
    color: var(--thm-color-one);
}
.ft-left p {
    font-size: 14px;
}
.ft-list li {
    line-height: 1.3;
    padding-bottom: 15px;
    font-size: 14px;
}
.ft-title p {
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    /* border-bottom: 1px solid; */
    display: inline-block;
    /* font-family: 'Poppins'; */
}
.ft-item li:hover {
    color: var(--thm-color-one);
}
.ft-item li {
    transition: 0.5s all;
    cursor: pointer;
    font-weight: 500;
    color: #b7b7b7;
}
.custom-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-title {
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
}
.copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #141310;
    font-size: 15px;
    font-weight: 500;
}
.copyright p a {
    color: #141310;
}
.copyright {
    padding: 20px 0;
    border-top: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    margin-top: 20px;
}
.ft-list li a {
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}
.ft-list li a:hover {
    color: var(--thm-color-one);
}
.ft-mail-box {
    border: 1px solid #8E8E93;
    border-radius: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px;
    width: 75%;
}
.ft-mail-box input {
    border: 0;
    width: 100%;
    padding-left: 15px;
    border-radius: 30px;
}

.ft-social-icon li a {
    transition: 0.5s all;
}
.ft-left {
   padding-right: 50px;
}
.ft-social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    background: var(--thm-color-one);
    padding: 10px;
    border-radius: 10px 10px 0 0;
}
.ft-social-icon li i {
    color: #fff;
    width: 33px;
    height: 33px;
    background: var(--thm-color-one);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.5s all;
}
.ft-social-icon li:hover i {
    color: #fff;
    background: var(--thm-color-two);
}
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.ft-payment-image {
    width: 58%;
}
.ft-payment-image ul {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.ft-bottom-list {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 15px 25px;
    border-radius: 20px 20px 0 0;
    margin-top: 20px;
    background: var(--thm-color-one);
    flex-wrap: wrap;
}
ul.ft-bottom-list li a {
    color: #fff;
    transition: 0.5s all;
    font-size: 15px;
}
ul.ft-bottom-list li:hover a {
    color: #000;
}


/*--------footer end-----*/

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #ffffff;
     background: var(--thm-color-one);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: #fff;
    color: var(--thm-color-one);
    /* transform: rotate(360deg); */
}

/*----subheader star----*/
.subheader {
    position: relative;
    background-image: url(../images/subheader.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 0;
}
.subheader:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* background-color: #000; */
    opacity: 0.5;
}
.subheader-title {
    text-align: center;
    display: inline;
    /* background: #fff; */
    padding: 10px 26px;
    /* border-radius: 10px; */
    justify-content: center;
    display: inline-flex;
    align-items: center;
    color: #fff;
}
.subheader-title h1 {
    color: #fff;
    margin-bottom: 5px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    justify-content: left;
}

.form-group .form-control {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 0px;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 14px;
    color: #000;
}
textarea.form-control {
    min-height: calc(1.5em + 5.75rem + 2px);
}
 input:focus {
    border-color: var(--thm-color-one);
}
.form-control:focus {
    border-color: var(--thm-color-one);
}

 textarea:focus {
    border-color: var(--thm-color-one);
}

/*----------cart start----------*/
tbody tr td:hover {
    background-color: #f7f7f7;
}

/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
.section-heading {
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.seeall-btn {
    position: absolute;
    right: 0;
    bottom: 0;
}
.section-heading a:hover {
    color: #000;
}
.section-heading h2 {
    color: #000;
    margin-bottom: 7px;
    font-size: 36px;
    font-weight: 600;
    text-align: left;
}

.color-one {
    color: var(--thm-color-one);
}
.color-two {
    color: #F1624B !important; 
}
.breadcrumb li {
    margin: 0 5px;
    color: #fff;
}

.breadcrumb li a {
    text-decoration: none;
    color: #fff;
}

.breadcrumb li a:hover {
    text-decoration: underline;
    color: var(--thm-color-one);
}

.breadcrumb li::after {
    content: "/";
    margin-left: 5px;
    color: #fff;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li:last-child a {
    color: #fff;
    pointer-events: none;
    cursor: default;
}

/* --------------inner page css------------------------------- */
.section-hedding h2 {
    color: var(--thm-color-one);
    font-weight: 500;
    font-style: italic;
}
/* ------------------css inner page------------------------------------ */

/* Popup Box */
.popup-content {
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.login-title {
    position: relative;
    text-align: center;
    padding-bottom: 10px;
    font-size: 25px;
    color: #000;
    display: inline-block;
    border-bottom: 2px solid #696B6766;
}

.thm-btn.bg-light {
    color: #000;
    background: #fff;
    border: 1px solid #fff;
}
.bg-light:hover {
    color: #fff;
}
.details-add-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    height: 490px;
    object-fit: cover;
}
.product-info h3 {
    margin-bottom: 0;
}
.product-info p {
    margin-bottom: 0;
}
.product-info {
  text-align: center;
  margin-top: 10px;
  background: #ffe4d1;
  padding: 15px;
  border-radius: 10px;
}
.thumb-slider {
    width: 100%;
    margin-top: 20px;
}
.thumb-slider .swiper-slide {
    width: 123px !important;
    height: 123px;
    margin-right: 0 !important;
    cursor: pointer;
}
.thumb-slider .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #E7E7E7;
    transition: border 0.3s;
}
.product-details-image {
    position: relative;
    border: 2px solid #EFEFEF;
    border-radius: 20px;
}
.thumb-slider .swiper-slide-thumb-active .thumb {
  border-color: var(--thm-color-one);
}

.product-slider-wrapper {
    /* display: flex; */
    flex-direction: row-reverse;
    gap: 20px;
}
.thumb-slider .swiper-wrapper {
    flex-direction: row;
    /* width: 147px; */
    gap: 10px;
}

.product-details {
  /* max-width: 600px; */
  margin: auto;
}

.category {
  font-size: 14px;
  margin-bottom: 5px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.brand {
    font-size: 14px;
    margin-bottom: 5px;
}
.brand-name {
  font-weight: bold;
}
.rating i {
color: var(--thm-color-one);
}
.share-btn i {
    background: #FFE4D6;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    flex-wrap: wrap;
}
.share-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.price-box {
  margin-top: 10px;
  font-size: 18px;
}
.current-price {
    color: #000;
}
.old-price {
    text-decoration: line-through;
    margin: 0 8px;
    color: #888;
    font-size: 14px;
}
.discount {
    font-size: 14px;
    margin: 0 10px;
    color: #F1624B;
}
.tax-info {
  font-size: 14px;
}
.offers h6 {
    margin-bottom: 10px;
}
.offers p {
    margin-bottom: 8px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 10px;
}
.offers {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 14px;
}
.qty-cart {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.box-list {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #B0B0B0;
    border-radius: 10px;
    width: fit-content;
}
.qty-btn {
    background: #eee;
    border: none;
    color: #696B67;
    padding: 5px 13px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
}
.quantity input {
    width: 46px;
    text-align: center;
    border: 0px solid #ccc;
    margin: 0 5px;
    color: var(--thm-color-one);
    font-size: 16px;
}
.qty-btn.border-raduis {
    border-radius: 0 10px 10px 0;
}
.add-to-cart, .buy-now {
    padding: 8px 50px;
    border: none;
    cursor: pointer;
}

.buy-now {
  background: var(--thm-color-one);
  color: #fff;
}
.details-add-btn .thm-btn {
    font-weight: 400;
}
.weight-flower {
  margin: 20px 0;
}
.weight-flower .label {
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
 .option {
    padding: 6px 12px;
    border: 1px solid #ccc;
    /* background: #f2f2f2; */
    border-radius: 10px;
    cursor: pointer;
    color: #B0B0B0;
}
 .option.active {
  background: #ffeadf;
  color: #F1624B !important;
  border-color: #F1624B;
}
.delivery-box {
    /* background: #f4f4f4;
    padding: 15px;
    border-radius: 10px; */
    margin-bottom: 25px;
}
.delivery-type {
    padding: 0;
    background: #fff;
    border-radius: 10px;
    /* border: 1px solid #A31313; */
    display: flex;
    margin-bottom: 25px;
}
.delivery-type input {
    width: 90%;
    border: 0px solid #ccc;
    border-radius: 20px;
}
.check-btn {
    padding: 6px 30px;
    margin-left: 0;
    border: none;
    /* background: #A31313; */
    color: #F1624B;
    cursor: pointer;
    border-radius: 0 7px 7px 0;
}
.delivery-service-list {
    list-style: disc !important;
    margin: 15px 0 0;
    font-size: 14px;
    color: #000;
    padding-left: 30px;
}
.delivery-service-list li {
    padding-bottom: 8px;
    color: #696B67;
}
.dashboard {
  display: flex;
}
.tab-left-side.edit-form-open {
    width: 300px;
}
.sidebar {
    width: 300px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: #C9FFE9;
    height: fit-content;
    border: 2px solid #E7E7E7;
}
.tab-btn {
    padding: 8px 12px;
    text-align: left;
    color: #696B67;
    border: none;
    background: #fff;
    border-left: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}
.tab-btn.active {
    color: var(--thm-color-one) !important;
    background: #C9FFE9;
    /* border-left: 3px solid var(--thm-color-two); */
}

.tab-btn.logout {
  color: #F1624B;
}

.tab-content-body {
    padding: 20px;
}
.tab-title {
    border-bottom: 1px solid #E7E7E7;
    padding: 20px;
    font-size: 20px;
    margin-bottom: 0;
}
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.profile-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.profile-box .info {
    color: #696B67;
}
.cart-items p {
    display: flex;
    align-items: center;
    gap: 5px;
}
.profile-box .avatar {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #ff6f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid;
}
.editBtn {
   transition: 0.5s all;
}
.editBtn:hover {
    color: #000;
}
.edit-link {
  margin-left: auto;
  color: var(--thm-color-one);
  font-size: 14px;
  text-decoration: none;
}
.edit-form-box {
  display: none;
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px #ccc;
}
.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
}
.toggle-password {
    position: absolute;
    top: 38px;
    right: 25px;
    cursor: pointer;
    color: #888;
}
.order-card {
    background: #fff;
    border-radius: 15px;
    /* box-shadow: 0 0 4px #ddd; */
    display: flex;
    padding: 15px;
    margin-bottom: 15px;
    gap: 15px;
    border: 1px solid #DBDCDB;
}
.edit-form-box .form-group {
    margin-bottom: 0;
}
.edit-form-box .form-group label {
    font-weight: 400;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.order-details {
  flex: 1;
}
.user-sort {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: var(--thm-color-two);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.product-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #222222;
    line-height: 1.3;
}
.price {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
}
.product-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.qty-control button {
  padding: 4px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.qty-control input {
  width: 30px;
  text-align: center;
  padding: 4px;
}

.order-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 13px;
  margin-bottom: 8px;
}
.track {
    color: #006038;
    text-decoration: none;
    white-space: nowrap;
}
.reorder {
    color: #F1624B;
    text-decoration: none;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.product-img {
    width: 20%;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 7px; */
}

.delivered {
  color: #00BF5B;
  /* font-weight: bold; */
  font-size: 16px;
}

.cancelled {
    color: #D8000C;
    /* font-weight: bold; */
    font-size: 16px;
}

.delivery-status {
  font-size: 13px;
  color: var(--thm-color-one);
}
.address-header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #E7E7E7;
    padding: 15px;
}

.add-address {
    color: #F1624B;
    padding: 0 15px;
}

.address-list {
    /* display: flex; */
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px;
}
.saved-addresses {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}
.address-card p {
    margin-bottom: 10px;
    font-size: 14px;
}
.address-card {
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 15px;
    /* width: calc(50% - 10px); */
    /* box-shadow: 0 0 5px rgba(0,0,0,0.05); */
    position: relative;
    margin-bottom: 20px;
}

.address-card.selected {
  border: 2px solid var(--thm-color-one);
}
.edit-form-box .form-group label {
    color: #696B67;
}
.color-red {
    color: red;
}
.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rating span {
    font-size: 16px;
    color: #696B67;
}
.select-btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  background: #B0B0B0;
  color: #fff;
  cursor: pointer;
}

.selected-btn {
  background: var(--thm-color-one);
  color: #fff;
}
.rating i {
    color: #F1624B;
}

/* ------------cart css------------------ */

.address-card.checkout-address.selected {
    background: #FFF4EE;
    border-color: #FF7A33;
}
.select-add.selected-check {
    color: #FF7A33;
}
 .offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%); /* start off-screen */
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 20px;
}

.offcanvas.show {
    transform: translateX(0); /* slide in */
}

.backdrop {
    position: fixed;
    inset: 0;
    background-color: #918c8c5c;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 998;
}

.backdrop.show {
    opacity: 1;
    visibility: visible;
}
.coupon-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #918c8c5c;
  justify-content: center;
  align-items: center;
}
.coupon-modal-content {
    background: white;
    padding: 20px 30px;
    width: 450px;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
.text-left {
    text-align: left;
}
/* -------loader------------------------ */
.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--thm-color-one);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}.pl {
	display: block;
	width: 6.25em;
	height: 6.25em;
}
.pl__ring, .pl__ball {
	animation: ring 2s ease-out infinite;
}
.pl__ball {
	animation-name: ball;
}

/* Animation */
@keyframes ring {
	from {
		stroke-dasharray: 0 257 0 0 1 0 0 258;
	}
	25% {
		stroke-dasharray: 0 0 0 0 257 0 258 0;
	}
	50%, to {
		stroke-dasharray: 0 0 0 0 0 515 0 0;
	}
}
@keyframes ball {
	from, 50% {
		animation-timing-function: ease-in;
		stroke-dashoffset: 1;
	}
	64% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -109;
	}
	78% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -145;
	}
	92% {
		animation-timing-function: ease-in;
		stroke-dashoffset: -157;
	}
	57%, 71%, 85%, 99%, to {
		animation-timing-function: ease-out;
		stroke-dashoffset: -163;
	}
}
.custom-accordion .accordion-button {
  background: #fff;
  color: #000;
  font-weight: 600;
  box-shadow: none;
  border: none;
  padding: 12px 0;
}

.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .icon {
  transition: transform 0.3s;
}
.accordion-item {
    border: 0;
    border-top: 1px solid #EFEFEF !important;
    border-radius: 0 !important;
    padding-top: 8px;
}
.accordion-collapse.collapse.show {
    background: #EFEFEF;
}
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    justify-content: center;
    align-items: center;
  }
  
  /* Modal Content */
  .modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    width: 400px;
    max-width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: relative;
    animation: fadeIn 0.2s;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  
.close-btn {
    position: absolute;
    top: 0;
    right: 18px;
    background: none;
    border: none;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}
  
  .modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    justify-content: left;
}
  
.modal-label {
    font-weight: 400;
    font-size: 17px;
    margin-right: 0;
    margin-bottom: 0;
}
  
  .stars {
    display: flex;
    gap: 2px;
    font-size: 16px;
    color: #F1624B;
    cursor: pointer;
  }
  .stars i {
    color: #F1624B;
    transition: color 0.2s;
  }
  .stars i.inactive {
    color: #ccc;
  }
  
.testi-content {
    width: 100%;
}
.testimonial-card p {
    color: #000;
    font-size: 14px;
    margin-bottom: 0;
}
.testimonial-card.slick-slide.slick-current.slick-active {
    transform: scale(1.2);
}
.about-image img {
    border-radius: 10px;
}
.about-image {
    position: relative;
    margin-right: 100px;
    display: grid;
    gap: 10px;
}
.about-sm-image {
    position: absolute;
    top: 55px;
    right: 33%;
}
.about-sm-image img {
    width: 100%;
    height: 208px;
}
.about-text-box {
    position: absolute;
    right: -50px;
    top: 28%;
    width: 165px;
    height: 165px;
    background: var(--thm-color-one);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    text-align: center;
    border-radius: 20px;
    border: 4px solid #fff;
}
.about-text-box h4 {
    color: #fff;
    margin-bottom: 0;
    font-size: 21px;
}
.about-perra p {
    font-size: 16px;
    color: #000;
    text-align: justify;
}
ul.about-highlights {
    font-size: 16px;
    list-style: disc;
    padding-left: 30px;
    color: #637390;
}
.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
}

.stat-box {
    position: relative;
    text-align: center;
    padding: 40px 10px;
    color: var(--thm-color-two);
    background: #fff;
    border-radius: 6px;
}
.counter.stat-box h6 {
    font-size: 22px;
    margin-bottom: 0;
}
.stat-box h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 10px;
  color: var(--thm-color-one);
}

.stat-box p {
  margin: 0;
  font-size: 14px;
  color: var(--thm-color-two);
}
.testimonial-image {
    position: relative;
    margin-right: 84px;
}
.play-btn i {
    color: #fff;
}
.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--thm-color-one);
    border-color: var(--thm-color-one);
    width: 55px;
    height: 55px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-image img {
    border-radius: 10px;
    width: 100%;
}
.customer-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customer-box.costomer-slider {
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    margin-top: 45px;
}
.costomer-slider ul.slick-dots {
    position: absolute;
    bottom: -58px;
    left: 45%;
}
.ft-top-box {
    margin-top: -102px;
    margin-right: 40px;
}
ul.ft-address-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-address-list li a i {
    color: var(--thm-color-one);
}
ul.ft-address-list li {
    padding-bottom: 7px;
}
.ft-list p {
    color: #000;
}
.about-vission-box {
    background: var(--thm-color-one);
    height: 48%;
    display: flex;
    align-items: end;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.about-vission-box.bg-two-color {
 background: var(--thm-color-two);
}
.vision-list {
    list-style: disc;
    padding-left: 30px;
    font-size: 14px;
}
.about-section-bg-image {
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}
.about-section-bg-image:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #04456099;
    z-index: -1;
}
.about-bg-content  {
   text-align: center;
}
.about-bg-content h2 {
    color: #fff;
}
.about-bg-content p {
    color: #fff;
    font-size: 20px;
}
.gallery-card  {
    position: relative;
    z-index: 0;
}
.gallery-card img {
    border-radius: 10px;
    width: 100%;
    height: 312px;
    
}
.gallery-content {
    position: absolute;
    top: 20px;
    left: 20px;
}
.gallery-content p {
    color: #fff;
    margin-bottom: 0;
    cursor: pointer;
    transition: 0.5s all;
}
.gallery-content:hover p {
    color: var(--thm-color-one);
}
.gallery-card:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #0000004D;
    z-index: 0;
}
/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
}
.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 20px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
.slider button {
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#prev { left: 10px; }
#next { right: 10px; }
#modal-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}
.contact-image img {
    border-radius: 10px;
}

.contact-card {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 0px 6px 0px #00000026;
    border-radius: 10px;
    min-height: 250px;
    margin-top: 0;
    box-shadow: 0px 0px 10px 0px #00000026;
}
.address-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--thm-color-one);
    display: flex;
    border: 1px solid;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    font-size: 20px;
    margin: auto;
    margin-top: 0;
    margin-bottom: 25px;
}
.contact-card p {
    margin-bottom: 0;
    color: #000;
    text-align: center;
}
.contact-card h2 {
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 15px;
}
.contact-wrapper {
    border: 2px solid #0C80B01A;
    border-radius: 10px;
}
.contact-wrapper .contact-image {
    height: 100%;
}
.contact-wrapper .contact-image img {
    border-radius: 0 10px 10px 0;
    height: 100%;
}
.login-sec {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box{
    background: #fff;
    border-radius: 10px;
    padding: 25px 35px;
}
.login-box label {
    color: #323232;
}
.login-box h3 {
    font-weight: 500;
}
/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000B2;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.header.sticky .menu-item a {
    color: #000;
    padding: 30px 9px;
    font-size: 14px;
}
.header.sticky {
    background: #fff;
}
.header.sticky .logo {
    display: none;
}
.header.sticky .logo.scroll {
    display: block;
}
.header.sticky .logo.scroll img {
   width: 250px;
}
.logo-responsive {
    display: none;
}
.logo.scroll {
    display: none;
}
.logo-responsive img {
    width: 260px;
}

.header-banner:before {
    position: absolute;
    content: '';
    bottom: -30px;
    left: 0;
    border: 15px solid transparent;
    border-right: 15px solid #4FB8E4;
    border-top: 15px solid #4FB8E4;
    z-index: -1;
}
.header-banner:after {
    position: absolute;
    content: '';
    bottom: -30px;
    right: 0;
    border: 15px solid transparent;
    border-left: 15px solid #4FB8E4;
    border-top: 15px solid #4FB8E4;
    z-index: -1;
}

.service-image img {
    border-radius: 10px;
}
.service-image {
   margin-bottom: 20px;
}
.advanced-card {
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--thm-color-one);
    text-align: center;
    /* display: flex; */
    flex-direction: column;
    padding: 20px;
}

.services-slider .offer-card {
    margin: 12px;
}

.services-slider .slick-arrow {
    top: -50px;
}
.services-slider .slick-prev.slick-arrow {
    left: auto;
    right: 6%;
}
.services-slider .slick-next.slick-arrow {
    right: 2%;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}
.partner-card {
    /* padding: 15px; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1.72px solid #077DAD80;
    border-radius: 5px;
    min-height: 165px;
    margin: 10px;
}
.partner-card img {
    width: 120px;
    margin: auto;
}
.customer-image {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 170px;
}
.topbar-list {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
ul.top-contact-items {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 0;
}
ul.top-contact-items li {
    display: flex;
    align-items: center;
    gap: 10px;
}
ul.top-contact-items li i {
    width: 35px;
    height: 35px;
    border: 1px solid var(--thm-color-one);
    border-radius: 10px;
    display: flex;
    color: var(--thm-color-one);
    font-size: 16px;
    align-items: center;
    justify-content: center;
    /* background: var(--thm-color-one); */
    transition: 0.5s all;
}

.top-contact-items li:hover i {
    background: #000;
}
.logo img {
    width: 325px;
}
.contact-content {
    width: 100%;
    padding-left: 0;
}
.contact-content h6 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.contact-content p {
    margin-bottom: 0;
}
.contact-content a {
    line-height: 1.3;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
.topbar-sec {
    padding: 15px 0;
    background: var(--thm-color-one);
    position: relative;
    z-index: 0;
}
.topbar-sec:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 90px;
    height: 50px;
    background: #fff;
}
.topbar-sec:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 30px;
    border: 30px solid transparent;
    border-top: 30px solid var(--thm-color-one);
    border-right: 30px solid var(--thm-color-one);
}
ul.social-item li a {
    color: #fff;
    transition: 0.5s all;
}
.social-item li:hover a {
    color: #000;
}
ul.social-item {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.topbar-btn {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 3px 10px;
    border-radius: 5px;
}
.banner-form-body .form-control {
    background: #E9E4E4;
    border-color: #E9E4E4;
    border-radius: 0;
}
.category-card.one {
    background: #077DAD;
}
.category-card {
    padding: 20px;
    text-align: center;
    display: grid;
    gap: 20px;
    margin-top: 40px;
}
.category-image {
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -66px;
    box-shadow: 0px 0px 10px 0px #00000040;
}
.category-title {
    color: #fff;
    font-size: 26px;
    font-family: 'Sansation';
    line-height: 1.2;
}
.category-title:hover {
    color: #000;
}
.choose-image {
    position: relative;
    z-index: 0;
}
.choose-image:before {
    position: absolute;
    content: '';
    top: 8px;
    right: -9px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: var(--thm-color-one);
    z-index: -1;
}
.choose-image img {
    border-radius: 30px;
    /* border: 7px solid var(--thm-color-one); */
    border-left: 0;
    width: 100%;
    border-top: 0;
}
ul.choose-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
}
.choose-list li p {
    margin-bottom: 0;
}
.choose-list li i {
    color: var(--thm-color-one);
}
.choose-content {
    padding-left: 35px;
}
.partner-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--thm-color-one);
    height: 100%;
    z-index: 0;
    border-radius: 10px;
}
.partner-vector {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-radius: 10px;
}
.labs-image img {
    border-radius: 10px;
    border: 2px solid var(--thm-color-one);
}
.parner-logo {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
.campus-box {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    padding: 15px;
    background: #fff;
    width: fit-content;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px #025D024D;
}
.customer-section.overlay:before {
    background-color: #1487C8;
}
/* Basic styles for the popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  background: #000;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #000;
    font-size: 24px;
    padding: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.testi-name h5 {
    margin-bottom: 6px;
    color: #000;
}
.testimonial-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: left;
}
.galler-image img {
    height: 230px;
    object-fit: cover;
    border-radius: 7px;
}
.gallery-vidio iframe {
    border-radius: 7px;
}
.ft-list li a i {
    color: var(--thm-color-one);
    font-size: 8px;
}
.about-left {
    padding: 30px;
    border-radius: 50px;
    position: relative;
    z-index: 0;
}
.about-left img {
    border-radius: 100px;
}
.about-sm-top {
    border-radius: 60px;
    position: absolute;
    top: 0;
    right: 15%;
    background: #fff;
    padding: 12px 30px;
    border: 2px dashed;
    outline: 4px solid var(--thm-color-one);
}
.about-sm-bottom {
    border-radius: 50% !important;
    position: absolute;
    bottom: 18%;
    right: 0;
    border: 5px solid var(--thm-color-one);
    width: 200px;
}
.about-left:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: #025D021A;
    border-radius: 50px;
    z-index: -1;
}
.about-left:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-image: url(../images/about/vector1.png);
    border-radius: 0;
    z-index: -1;
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: cover;
}
.about-content-right ul {
    list-style: disc;
    padding-left: 25px;
    font-size: 14px;
    color: #637390;
}
.programe-select label {
    color: #fff;
}
.programe-select .form-control {
    color: #fff;
    border: 1px solid;
}
.programe-select .form-control option {
    color: #000;
    border: 1px solid;
}
.program-detail-item {
    background: #025D021A;
    padding: 15px;
    border-radius: 5px;
    height: 100%;
}
.program-detail-item p {
    color: #000;
    margin-bottom: 5px;
    
}
.program-detail-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.program-sm-image img {
    border-radius: 10px;
    box-shadow: 0px 0px 3.68px 0px #00000040;
}


.table-container {
    width: 100%;
    /* background: white; */
    /* padding: 20px; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    overflow: auto;
}
.tab-content table th {
    background-color: var(--thm-color-one);
    color: white;
    padding: 7px;
    text-align: left;
    border: 1px solid #000000;
    font-size: 14px;
}

.tab-content table td {
    border: 1px solid #ccc;
    padding: 6px;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    color: #333333;
}
.tab-content table td ul {
    list-style: disc;
    padding-left: 25px;
}
.tab-content table tr:nth-child(even) td {
  background-color: #f4f4f4;
}
.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    margin-bottom: 0;
    /* border-bottom: 2px solid #ccc; */
}

.tab {
    padding: 6px 15px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    margin-right: 5px;
    background: #fff;
    color: #637390;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid #637390;
}

.tab:hover,
.tab.active {
  background-color: #fff;
  border: 1px solid transparent;
}

.parogram-table .tab-content {
    display: none;
    background: #fff;
    padding: 50px;
}

.tab-content.active {
  display: block;
}

.common-table {
  margin-top: 30px;
}
.rounded img{
    border-radius: 10px;
}
.about-image.square-border:before {
    position: absolute;
    content: '';
    top: 13px;
    left: 25px;
    width: 90%;
    height: 90%;
    border: 10px solid #FFFFFF66;
    border-radius: 30px;
}
.about-section {
    display: flex;
    position: relative;
    margin: auto;
    background-color: #fff;
    flex-wrap: wrap;
}
.home-about-sec .about-image {
    height: 100%;
    margin: 0 !important;
}
.about-left-vision {
    background-color: #000;
    color: #fff;
    flex: 1;
    padding: 50px;
    border-radius: 0;
    padding-top: 100px;
}
.about-left-vision h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.4;
}

.about-left-vision p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    padding-right: 100px;
}
.about-right {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #F7F7F7;
    padding: 52px;
    padding-left: 0;
}

.about-box {
  background: #fff;
  padding: 20px 25px;
  border-radius: 0 10px 10px 0;
}

.vision-box {
    background-color: #fff;
    box-shadow: 0px 0px 14px 0px #00000040;
    /* margin-right: 169px; */
    width: 850px;
    padding-left: 70px;
}
.about-box ul {
    list-style: disc;
}
.mission-box {
    padding-left: 120px;
    background: #025D021A;

}

.values-box {
    background-color: #fff;
    box-shadow: 0px 0px 14px 0px #00000040;
    padding-left: 100px;
    margin-right: 65px;
}

.about-box h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}
ul.about-highlights li {
    margin-bottom: 10px;
}
.about-box p, .about-box ul {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-box ul {
    list-style: disc;
    padding-left: 0;
    padding-left: 30px;
}

.about-box ul li {
  margin-bottom: 10px;
}

.about-icon {
    position: absolute;
    left: 28%;
    top: 46%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.about-icon img {
    width: 250px;
    height: 250px;
}
.join-sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #077DADE5;
    z-index: -1;
}
.join-sec {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.join-warapper {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 0px 11px 0px #FFFFFF66;
}
.placement-sec .about-sm-bottom {
    border-radius: 80px !important;
    border-color: #fff;
    bottom: 40px;
}
.placement-sec .about-sm-top {
    border-radius: 60px;
    position: absolute;
    top: 0;
    right: 15%;
    background: #fff;
    padding: 12px 30px;
    border: 2px dashed #fff;
    outline: 4px solid var(--thm-color-one);
    background: var(--thm-color-one);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 200px;
}
.placement-sec .about-sm-top h2 {
    margin-bottom: 0;
    color: #fff;
}
.placement-sec .about-sm-top p {
    margin-bottom: 0;
    color: #fff;
}
ul.Record-item li {
    box-shadow: 0px 0px 9px 0px #00000033;
    background: #fff;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 10px;
}
ul.Record-item {
    list-style: none;
    padding: 0;
}
.about-sm-top.about-support {
    display: block;
    text-align: center;
    width: auto;
    border-radius: 50%;
    padding: 20px;
    outline: 4px solid #fff;
    border: 0;
    right: 36%;
}
img.vector3 {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    background-position: center;
    z-index: -1;
}
.stage-section {
    border-top: 2px solid #D9D9D9;
}

 .nav-pills .nav-link {
    border-radius: 0;
    color: #000;
    font-weight: 500;
    text-align: left;
}

    .nav-pills .nav-link.active {
      color: var(--thm-color-one);
      background-color: transparent;
      border-right: 3px solid var(--thm-color-one);
    }

    .stage-section .tab-content>.tab-pane {
    background: #025D020D;
    padding: 20px;
    border-radius: 10px;
    /* margin-top: 30px; */
}

    .tab-header {
      background-color: var(--thm-color-one);
      color: white;
      padding: 10px 15px;
      border-radius: 8px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 15px;
    }
  div#v-pills-tab {
    border-right: 1px solid #D9D9D9;
    padding: 25px 0;
}
.academic-box {
    margin-left: 11%;
    border-radius: 0px;
    padding: 50px !important;
}
.growth-image {
    position: absolute;
    top: -81px;
    left: 30%;
}
ul.Record-item {
    color: #637390;
    font-size: 14px;
}
.process-wrapper {
  padding: 40px 20px;
  text-align: center;
}

.process-title {
    background-color: var(--thm-color-one);
    color: #fff;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 22px;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.phase-card {
  background: #F7F7F7;
  box-shadow: 0px 2px 0px 0px #2dabca;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  position: relative;
  text-align: center;
  border-bottom: 2px solid var(--thm-color-one);
}

.phase-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.phase-tag {
  display: inline-block;
  background-color: var(--thm-color-one);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 15px;
}

.phase-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.vector-process {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 40%;
}
.phase-card.second-phase {
    margin-top: 50px;
}
.traning-image {
    position: absolute;
    right: 0;
    /* bottom: 12%; */
    border-radius: 200px 0 0px 300px;
    background: var(--thm-color-one);
    padding: 0 0 32px 8px;
    width: 550px;
}

.traning-image img {
    border-radius: 200px 0 100px 300px;
    border: 8px solid #fff;
}
.experience-box {
    background: var(--thm-color-one);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.experience-border {
    width: 600px;
    padding: 100px 50px;
    border: 3px solid #FFFFFF80;
}
.hostel-bg-section {
    border-radius: 0 100px 0 100px;
}
.hostel-card {
    text-align: center;
    box-shadow: 0px 0px 8px 0px #0000004D;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
}
.hostel-image img {
    border-radius: 10px 10px 0 0;
}
.hostel-content {
    padding: 20px 10px;
    
}
.hostel-content h4 {
    margin-bottom: 10px;
}
.hostel-content p {
    margin-bottom: 0px;
}
.bg-color-left:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: #000;
    width: 35%;
    height: 100%;
    z-index: -1;
}
ul.hostel-list li {
    background: #025D0233;
    padding: 7px 14px;
    margin-bottom: 15px;
    font-size: 14px;
}
ul.hostel-list {
    columns: 2;
    margin-bottom: 20px;
}
.download-card {
    background: var(--thm-color-one);
    padding: 40px;
    border-radius: 10px;
    padding-top: 100px;
}
.pdf-title {
    margin-bottom: 4px;
    color: #fff;
}
.pdf-meta {
    color: #fff;
    font-size: 14px;
}
.download-image {
    text-align: center;
    margin-bottom: -74px;
}
.download-image img {
    border-radius: 10px;
}
.download-box {
    background: #F5F5F5;
    padding: 40px;
    border-radius: 10px;
}
.download-card .thm-btn:hover {
    color: #fff !important;
}
.bg-color-left.collaboration-left:before {
    width: 45%;
    background: var(--thm-color-one);
}
.z-0 {
    z-index: 0;
}
.future-collaborations {
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fee-table table th {
    background: #000;
    color: #fff;
}
.fee-table table tbody td {
    background: #a3dcf5;
    color: #000;
    border: 0;
}
.fee-table table tfoot td {
    background: #077dad;
    color: #fff;
    border: 0;
}
.contact-rounded:before {
    border-radius: 0 20px 20px 0;
}
.contact-bg-image {
    bottom: 0;
     width: 18%;
}
.traning-image.contact-bg-image img {
    width: 100%;
}
.main-wrapper {
    box-shadow: 0px 0px 8px 0px #00000040;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: 580px;
    overflow: auto;
}
.main-wrapper .form-group .form-control {
    border: 1px solid #F7F7F7;
    background: #F7F7F7;
}
.bg-section {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
}
.ragister-img img {
    border-radius: 10px;
}
.speak-item {
    position: relative;
    z-index: 0;
    background: #025D021A;
    padding: 20px;
    border-radius: 10px;
    margin: 50px 0;
}
.speak-image img {
    border-radius: 10px;
}
.speak-image {
    position: absolute;
    bottom: 0;
    left: 0;
}
.speak-item p {
    font-size: 16px;
}
.flex-diraction {
    flex-direction: row-reverse !important;
    display: flex;
}
.flex-diraction .speak-image {
    left: auto;
    right: 0;
}
.help-header {
    background: var(--thm-color-one);
    color: #fff;
    padding: 10px;
    margin-bottom: 0;
}
.help-body {
    background: #f5f5f5;
    padding: 30px;
}
.help-body p {
    font-size: 18px;
}
.help-search {
    box-shadow: 0px 0px 8px 0px #00000040;
    padding-left: 15px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 10px 15px;
    background-color: #fff;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 7px 0px #00000033;
    font-size: 14px;
}

.faq-answer {
    padding: 15px 20px;
    display: none;
    color: #444;
    border-top: 1px solid #eee;
    color: #000;
}
.faq-item.active .faq-question {
    box-shadow: none;
    color: #000;
}
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(180deg);
  content: "-";
}
.faq-question .icon {
    font-size: 20px;
    transition: transform 0.2s;
    width: 30px;
    height: 30px;
    background: var(--thm-color-one);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.home-about-sec .about-perra {
    height: 100%;
    background: var(--thm-color-one);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.home-about-sec .about-perra h4 {
    color: #fff;
}
.home-about-sec .about-perra p{
    color: #fff;
}
.home-about-sec .about-image img {
    border-radius: 0px;
}
.home-about-sec .about-image {
    height: 100%;
}
.labs-image {
    margin: 12px;
}
.choose-content ul {
    padding: 0;
    margin-bottom: 15px;
    padding-left: 30px;
}
.about-content-right ul li {
    color: #fff;
}
ul.Record-item li {
    color: #637390;
}

.blog-card {
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  padding: 0 0 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-image {
  background-color: #bbb;
  height: 250px;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.blog-image {
    position: relative;
    /* overflow: hidden; */
    border-radius: 8px 8px;
    margin-bottom: 20px;
}
span.comments {
    background: transparent !important;
    color: #000 !important;
}
.blog-meta {
    position: absolute;
    bottom: -15px;
    left: 10px;
    /* display: flex; */
    gap: 5px;
    z-index: 0;
    /* background: #bbb; */
    /* border-radius: 30px; */
}

.blog-meta span {
  display: flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 20px;
}

.blog-meta i {
  margin-right: 5px;
}
.blog-detail-image img {
    height: 450px;
    border-radius: 10px;
    object-fit: cover;
}
.blog-detail-box {
    background: #f8f8f8;
    border: 1px solid #000;
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
}

.blog-card .blog-title {
    font-size: 17px;
    /*font-weight: bold;*/
    padding: 20px 15px 10px;
    line-height: 1.3;
    margin-bottom: 0;
}
.blog-card p {
    padding: 0 15px 20px;
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
}
.read-more {
  display: inline-block;
  padding: 0 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  position: relative;
}

.read-more::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  margin-top: 2px;
}
ul.social-item.details a {
    color: #000;
}
.blog-auther img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.about-perra h5 {
    font-size: 25px;
    color: #000;
    font-weight: 700;
}

.lab-gallery-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
      transition: transform 0.3s;
}

.lab-gallery-image img:hover {
  transform: scale(1.05);
}
    
.gallery-grid-section .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      padding-top: 50px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
    }
 .gallery-grid-section .modal-content {
    margin: 8% auto;
    display: block;
    width: 700px;
    height: 500px;
    border-radius: 0;
    padding: 3px;
    object-fit: cover;
}
    .gallery-grid-section .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #fff;
      font-size: 35px;
      font-weight: bold;
      cursor: pointer;
    }
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 30px;
      transition: 0.3s;
      user-select: none;
    }
    .prev { left: 20px; }
    .next { right: 20px; }
    .prev:hover, .next:hover { color: #f1f1f1; }
    
    
.choose-text {
  max-height: 435px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}
.choose-text.expanded {
  max-height: 5000px; /* enough to show all text */
}
.choose-text p {
    margin-bottom: 10px !important;
}

.choose-content .thm-btn:focus {
    background: var(--thm-color-one) !important;
}



/*-------------------end css------------------------*/

