@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Open Sans:400,700|Montserrat');

@font-face {
    font-family: "Righteous";
    src: url("../fonts/BalooChettan-Regular.ttf");
    src: url("../fonts/BalooChettan-Regular.ttf");
}


@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(meanmenu.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);


:root {
    /* Primary Colors */
    --primary-color: #f78907;
    --primary-color-950: #441f06;
    --primary-color-900: #7e4210;
    --primary-color-800: #9d4e0f;
    --primary-color-700: #c66508;
    --primary-color-500: #fea111;
    --primary-color-400: #ffba38;
    --primary-color-300: #ffd671;
    --primary-color-200: #ffe8a8;
    --primary-color-100: #fff6d4;
    --primary-color-50: #fffbed;

    --secondary-color: #28A745;
    --secondary-color-light: #71D88B;
    --secondary-color-dark: #1C7430;

    --accent-color: #FFC107;
    --accent-color-light: #FFDC73;
    --accent-color-dark: #CC8F00;

    --neutral-light: #F5F5F5;
    --neutral-dark: #333333;

    --background-color: #FFFFFF;
    --text-color: #212529;

    --cta-color: #FF5733;
    --cta-color-light: #FF7F55;
    --cta-color-dark: #D14F1F;

    /* Border Radius */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 16px;
    --border-radius-circle: 50%;

    /* Box Shadow */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 6px 16px rgba(0, 0, 0, 0.2);
    --shadow-inset: inset 0 2px 6px rgba(0, 0, 0, 0.1);
}


* {
    box-sizing: border-box !important;
    transition: ease all 0.5s;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    font-size: 14px;
    line-height: normal;
    font-weight: normal;
    font-family: 'Source Sans Pro', arial, sans-serif;
}

.text-primary-950 {
    color: var(--primary-color-950) !important;
}

.text-xs { font-size: 12px !important; }
.text-sm { font-size: 14px !important; }
.text-md { font-size: 16px !important; }
.text-lg { font-size: 18px !important; }
.text-xl { font-size: 20px !important; }
.text-2xl { font-size: 24px !important; }



/* Buttons */
.btn {
    height: fit-content;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-color-500) !important;
    border-color: var(--primary-color-500) !important;
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 .1rem var(--primary-color-200);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color-dark);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--secondary-color-light);
    border-color: var(--secondary-color-dark);
}

/* Alerts */
.alert-primary {
    background-color: var(--primary-color-50);
    color: var(--text-color);
    border-color: var(--primary-color-300);
}

.alert-secondary {
    background-color: var(--secondary-color-light);
    color: var(--text-color);
    border-color: var(--secondary-color-dark);
}

/* Cards */
.card {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: normal;
    line-height: normal;
    color: #111111;
    margin: 0
}

h1 {
    font-size: 24px
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 13px
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none !important;
    opacity: 1
}

button:focus {
    outline: none;
}

ul,
li,
ol {
    margin: 0px;
    padding: 0px;
}

p {
    margin: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}

a {
    color: #222222;
    text-decoration: none;
    outline: none !important;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

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

:focus {
    outline: 0;
}

.padding_bottom_0 {
    padding-bottom: 0 !important;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

.form-control {
    min-height: 45px;
}

.form-control:focus {
    border-color: var(--primary-color-200);
    box-shadow: 0 0 0 .1rem var(--primary-color-200);
}

.navbar-form input {
    border: none !important;
}

.badge {
    font-weight: 500;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full {
    float: left;
    width: 100%;
}

.layout_padding {
    padding-top: 50px;
    padding-bottom: 0px;
}

.padding_0 {
    padding: 0px;
}


/* header section start */
.header_section {
    width: 100%;
    background-image: url(../assets/images/banner-bg.jpg);
    height: auto;
    background-size: 100%;
    padding: 10px 0px;
    background-repeat: no-repeat;
}

.bg-light {
    background-color: transparent !important;
}

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

.logo {
    padding: 10px 0px;
}

.logo img {
    max-width: 150px;
    /* Adjust based on your design */
    height: auto;
    /* Maintain aspect ratio */
}

.logo_mobile {
    width: max-content;
    height: 50px !important;
}

.logo_mobile img {
    max-width: 100px;
    /* Adjust based on your design */
    height: 50px;
    /* Maintain aspect ratio */
}

.mobile_menu {
    width: 100%;
    display: none;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
}

.navbar-nav {
    align-items: center;
}

.btn {
    cursor: pointer;
    border-radius: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px;
}

.nav-item {
    position: relative;
}

.menu_main {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

.menu_main ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: inline-flex;
}

.menu_main li {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    border-radius: 40px;
}

.menu_main li a {
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 10px;
}

.menu_main li a:hover {
    color: var(--text-color);
    background-color: var(--primary-color);
}

.mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
    width: 20%;
    float: left;
}

.header_main {
    width: 100%;
}

/* .auth_buttons {
    position: absolute;
    top: 45px;
    right: 20px;
} */

.auth_buttons>.btn {
    border: 2px solid #fff;
    color: #fff;
}

.navigation {
    position: absolute;
    top: 17px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    background: transparent;
    border-radius: 5px;
    overflow: hidden;
    transition: height 0.5s, width 0.5s;
    transition-delay: 0s, 0.75s;
    z-index: 9;
}

.navigation .user-box {
    position: relative;
    display: block !important;
    width: 100%;
    height: 60px;
    display: flex !important;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
    transition-delay: 0.5s;
    cursor: pointer;
    padding: 0 1rem;
}

.navigation .user-box .username {
    font-size: 1.2rem;
    white-space: nowrap;
    color: var(--text-color);
    margin: 0 !important;
    margin-left: 10px !important;
    display: none;
}

.navigation .user-box .image-box {
    position: relative;
    min-width: 45px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.navigation .user-box .image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu {
    position: absolute;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 60px !important;
    padding: 20px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: block !important;
}

.menu li {
    list-style: none;
    width: 100% !important;
    margin: 10px 0 !important;
    padding: 0 !important;
}

.menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 0 !important;
}

.menu li a ion-icon {
    font-size: 1.5rem;
}

.menu li:hover,
.menu li a:hover {
    color: var(--primary-color);
    background: transparent !important;
}

.navigation.active .menu-toggle::before {
    transform: translateY(0px) rotate(45deg);
    box-shadow: none;
}

.navigation.active .menu-toggle::after {
    transform: translateY(0px) rotate(-45deg);
}

.navigation.active {
    width: 300px;
    height: 200px;
    transition: width 0.5s, height 0.5s;
    transition-delay: 0s, 0.75s;
    background: var(--white) !important;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
}

.navigation.active .user-box {
    transition-delay: 0s;
}


.navigation.active .user-box .username {
    display: block;
    transition-delay: 0s;
}

/* header section end */


/* banner section start */

.banner_section {
    width: 100%;
    float: left;
    padding-bottom: 100px;
}

.banner_taital {
    width: 100%;
    font-size: 80px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.banner_text {
    width: 63%;
    margin: 0 auto;
    text-align: justify;
    font-size: 18px;
}

.read_bt {
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.read_bt a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #141414;
    background-color: #ffffff;
    text-align: center;
    padding: 10px 0px;
    border-radius: 30px;
    margin-top: 50px;
    font-weight: 400;
}

.read_bt a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}


/* banner section end */


/* services section start */

.services_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
}

.services_taital {
    width: 100%;
    font-size: 40px;
    color: #1f1f1f;
    font-weight: bold;
}

.services_text {
    width: 100%;
    font-size: 16px;
    color: #1f1f1f;
    margin: 0px;
}

.services_section_2 {
    width: 100%;
    float: left;
    margin-top: 45px;
}

.services_img {
    width: 100%;
    float: left;
    text-align: center;
}

.btn_main {
    width: 170px;
    margin: 0 auto;
    text-align: center;
}

.btn_main a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    background-color: var(--primary-color);
    text-align: center;
    padding: 10px 0px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 40px;
    text-transform: uppercase;
}

.btn_main a:hover {
    color: #ffffff;
    background-color: #000d10;
}

.btn_main.active a {
    color: #ffffff;
    background-color: #000d10;
}


/* services section end */


/* about section start */

.about_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
}

.about_taital_main {
    width: 100%;
    padding-left: 100px;
    padding-top: 70px;
}

.padding_right_0 {
    padding-right: 0px;
}

.about_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #1f1f1f;
    font-weight: bold;
}

.about_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #1f1f1f;
    margin: 0px;
    padding-top: 1rem;
}

.readmore_bt {
    width: 170px;
    float: left;
    margin-top: 50px;
}

.readmore_bt a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    background-color: #000d10;
    text-align: center;
    padding: 10px 0px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.readmore_bt a:hover {
    color: #ffffff;
    background-color: var(--primary-color);
}

.about_img {
    width: 100%;
    float: left;
}


/* contact section end */


/* blog section start */

.blog_section {
    width: 100%;
    float: left;
    background-image: url(../assets/images/blog-bg.png);
    height: auto;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-bottom: 345px;
    padding-top: 200px;
    background-repeat: no-repeat;
}

.blog_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
    padding-top: 30px;
    text-align: center;
}

.blog_text {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    color: #ffffff;
    padding-top: 40px;
    text-align: center;
}

.play_icon_main {
    width: 100%;
    margin-top: 150px;
    float: left;
}

.play_icon {
    width: 200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.play_icon::before {
    content: '';
    position: absolute;
    top: 49%;
    left: 70px;
    width: 130px;
    height: 130px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 100%;
    z-index: -1;
    animation: fadeEffect 1.3s infinite ease;
    box-shadow: 0px 0px 10px 0px;
    right: inherit;
}

@keyframes fadeEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.margin_top_90 {
    margin-top: 90px;
}

/* blog section end */


/* client section start */

.client_section {
    width: 100%;
    float: left;
    padding-bottom: 160px;
}

.client_taital {
    width: 100%;
    font-size: 40px;
    color: #131313;
    font-weight: bold;
    padding-top: 30px;
    text-align: center;
}

.client_section_2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0px 1px 16px -6px;
    border-radius: 30px;
    padding: 50px 70px;
    margin-top: 50px;
}

.client_main {
    width: 100%;
    display: flex;
}

.box_left {
    width: 48%;
}

.box_right {
    width: 48%;
    float: right;
    padding-top: 65px;
    margin-left: 30px;
}

.lorem_text {
    width: 100%;
    font-size: 16px;
    text-align: center;
    margin: 0px;
    color: #0d0d0d;
    border: 1px solid #0d0d0d;
    padding: 90px 30px;
    border-radius: 30px;
}

.client_taital_left {
    width: 40%;
    float: left;
}

.client_taital_right {
    width: 60%;
    float: left;
}

.client_img {
    width: 100%;
    float: left;
    text-align: left;
}

.quick_icon {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 30px;
}

.client_name {
    width: 100%;
    float: left;
    font-size: 24px;
    color: #012628;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding-top: 53px;
    padding-bottom: 0px;
}

.customer_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #085a57;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    margin: 0px;
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #8781bd;
    bottom: -130px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}


/* client section end */


/* choose section start */

.choose_section {
    width: 100%;
    float: left;
    padding-bottom: 50px;
}

.choose_taital {
    width: 100%;
    font-size: 40px;
    color: #1f1f1f;
    font-weight: bold;
    text-align: center;
}

.choose_text {
    width: 70%;
    margin: 0 auto;
    font-size: 16px;
    color: #1f1f1f;
    padding-top: 30px;
    text-align: center;
}

.read_bt_1 {
    width: 170px;
    margin: 0 auto;
    text-align: center;
}

.read_bt_1 a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    background-color: #000d10;
    text-align: center;
    padding: 10px 0px;
    border-radius: 30px;
    margin-top: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

.read_bt_1 a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.newsletter_box {
    width: 100%;
    background-color: var(--primary-color-50);
    border: 1px solid var(--primary-color-300);
    border-radius: 25px;
    padding: 20px 30px;
    display: flex;
    margin-top: 90px !important;
    justify-content: space-between;
}

.let_text {
    font-size: 35px;
    color: #1f1f1f;
    font-weight: bold;
    padding-bottom: 0px;
}

ul.features-list {
    padding-left: 50px;
    list-style-type: disc; /* Standard bullet */
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    ul.features-list {
        width: 60%;
    }

    ul.features-list.normal-version {
        width: 100%;
    }
}

ul.features-list > li {
    font-size: 16px;
    line-height: 20px;
    padding-left: 0px; /* No extra left padding needed now */
    position: relative;
    margin-bottom: 5px;
}

ul.features-list.normal-version li {
    margin-top: 10px;
    padding: 0;
}

strong {
    color: #292929;
}

ul.features-list li::marker {
    color: var(--primary-color-700); /* Change bullet color */
    font-weight: bold; /* Make bullet bold */
}


/* ul.features-list {
    padding-left: 50px;
    counter-reset: list-counter;
    width: 100%;
    margin: 0 auto;
}



@media (min-width: 768px) {
    ul.features-list {
        width: 60%;
    }

    ul.features-list.normal-version {
        width: 100%;
    }
}

ul.features-list>li {
    color: #4f4f4f;
    padding-left: 16px;
    margin-top: 30px;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    counter-increment: list-counter;
}

ul.features-list>li:before {
    content: counter(list-counter);
    display: block;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 2px solid #ddd;
    position: absolute;
    top: -12px;
    left: -46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color-700);
}

ul.features-list.normal-version li {
    margin-top: 10px;
    padding: 0px;
}

ul.features-list.normal-version li:before {
    height: 20px;
    width: 20px;
    font-size: 12px;
    top: 0px;
    left: -32px;
}

strong {
    color: #292929;
}

ul.features-list.alternating-colors li:nth-child(odd):before {
    border-color: var(--primary-color);
}

ul.features-list.alternating-colors li:nth-child(even):before {
    border-color: var(--primary-color);
} */

.getquote_bt {
    width: 200px;
    padding-top: 6px;
}

.getquote_bt a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: var(--primary-color-700);
    background-color: var(--primary-color-50);
    text-align: center;
    padding: 10px 0px;
    border-radius: 30px;
    font-weight: bold;
    border: 1px solid var(--primary-color-300);
}

.getquote_bt a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* choose section end */


/* contact section start */
.contact_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
}

.contact_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #363636;
    text-align: center;
    font-weight: bold;
}

.email_text {
    width: 70%;
    margin: 0 auto;
    padding-top: 120px;
}

.email-bt {
    width: 100%;
    float: left;
    font-size: 1rem;
    color: #393838;
    padding: 10px 15px;
    border: 0px;
    border: 1px solid #2b2278 !important;
}

.massage-bt {
    width: 100%;
    float: left;
    font-size: 1rem;
    color: #393838;
    padding: 10px 15px;
    border: 0px;
    border: 1px solid #2b2278 !important;
}

.send_btn {
    width: 170px;
    margin: 0 auto;
    text-align: center;
}

.send_btn a,
.send_btn button {
    width: 100%;
    float: right;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    border-radius: 30px;
    background-color: #000d10;
    padding: 7px;
}

.send_btn a:hover,
.send_btn button:hover {
    color: #ffffff;
    background-color: var(--primary-color);
}

/* contact section end */



/* footer section start */

.footer_section {
    width: 100%;
    float: left;
    background-image: url(../assets/images/footer-bg.png);
    height: auto;
    padding-top: 250px;
    background-size: 100% 100%;
    padding-bottom: 30px;
    background-repeat: no-repeat;
}

.input_btn_main {
    width: 50%;
    display: flex;
    background-color: #ffffff;
    border-radius: 40px;
    padding: 8px 0px;
    margin: 0 auto;
}

.mail_text {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #2b2c2c;
    background-color: #ffffff;
    height: auto;
    padding: 5px 20px;
    border-radius: 20px;
    border: 0px;
}

.subscribe_bt {
    float: right;
}

.subscribe_bt a {
    width: 170px;
    float: left;
    font-size: 18px;
    color: var(--primary-color);
    background-color: transparent;
    padding: 5px 0px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.subscribe_bt a:hover {
    color: #000;
    background-color: transparent;
}

.social_icon {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.social_icon ul {
    margin: 0px;
    padding: 0px;
    display: inline-block;
    text-align: center;
}

.social_icon li {
    float: left;
    padding: 30px 5px;
}

.location_main {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.call_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    padding-top: 10px
}

.call_text a {
    color: #ffffff;
}

.call_text a:hover {
    color: #e27141;
}


/* footer section end */

.copyright_section {
    width: 100%;
    float: left;
    background-color: #122c2d;
    height: auto;
}

.copyright_text {
    width: 100%;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    margin-left: 0px;
}

.copyright_text a {
    color: #ffffff;
}

.copyright_text a:hover {
    color: #e27141;
}

.w-200 {
    width: 200px !important;
}


/* Table section start */
.table-container {
    border-radius: 10px;
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on mobile devices */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.table {
    border-collapse: separate;
    border-spacing: 0;
}

/* Table Header */
.table thead {
    background: linear-gradient(135deg, var(--primary-color-500), var(--primary-color));
}

.table th,
.table th a {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    border: none;
}

.table .table thead,
.table .table th {
    background: transparent !important;
    color: var(--text-color) !important;
}

/* Table Cells */
.table td {
    border: none;
    padding: 12px 10px;
    font-size: 13px;
    vertical-align: middle;
}

/* Row Hover Effect */
.table-hover tbody tr:hover {
    background-color: #e8f0ff;
    transition: background-color 0.3s ease;
}

/* Toggle Icon */
.toggle-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #333;
}

.toggle-icon.open {
    transform: rotate(90deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .table {
        font-size: 12px;
    }

    .table th,
    .table td {
        padding: 10px;
    }

    .slider-wrapper {
        width: 95% !important;
    }
}

.table th {
    white-space: nowrap;
}

.table .table th,
.table  .table td {
    white-space: wrap;
}


.even-row {
    background: var(--primary-color-50) !important;
}

.even-row:hover {
    background: var(--primary-color-200) !important;
}

/* Table section end */

.mw-200 {
    min-width: 200px !important;
}

.gap-2 {
    gap: 0.75rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.25rem !important;
}

.circular-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    background-color: #F3F4F8;
    cursor: pointer;
    color: #333;
    font-size: 18px;
    transition: background-color 0.3s;
}

.circular-button:hover {
    background-color: #c0c0c0;
}

.circle-increase {
    border: 2px solid #2DBB20;
    color: #2DBB20;
    background-color: transparent !important;
}

.circle-increase:hover,
.circle-increase:focus {
    background-color: #2DBB20 !important;
    color: #fff;
}

.circle-decrease {
    border: 2px solid #F86767;
    color: #F86767;
    background-color: transparent !important;
}

.circle-decrease:hover,
.circle-decrease:focus {
    background-color: #F86767 !important;
    color: #fff;
}

.opacity-0 {
    opacity: 0;
}

.iziToast:after {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.form-label {
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    color: var(--text-color);
    white-space: nowrap;
    gap: 3px;
}

.visuallyhidden,
.tooltip-content {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.showvisuallyhidden,
.btn-tooltip:focus .tooltip-content,
.btn-tooltip:hover .tooltip-content,
.btn-tooltip.active .tooltip-content {
    clip: auto;
    overflow: visible;
}

.btn-tooltip {
    border: none;
    background: none;
    position: relative;
    text-align: left !important;
}

.tooltip-content {
    height: auto;
    display: block;
    position: absolute;
    bottom: 130%;
    left: 0%;
    z-index: 200;
    width: 240px;
    margin: 0 0 5px -90px;
    padding: 0.75em 1em;
    text-align: left;
    color: var(--text-color);
    font-size: 12px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1),
        0px 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transform: rotateX(20deg) scale(0.8);
    transform-origin: center 120%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    white-space: normal;
}

.btn-tooltip {
    display: inline-block;
    text-align: center;
    min-width: 40px;
    cursor: help;
}

.btn-tooltip:focus .tooltip-content,
.btn-tooltip:hover .tooltip-content {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
}

/* Apply styles to custom class 'email-bt' */
.was-validated .email-bt:invalid,
.email-bt.is-invalid,
.was-validated .email-bt:invalid,
.email-bt.is-invalid,
.parsley-error,
.email-bt.dropify.is-invalid {
    border-color: #e23e3d !important;
}

.was-validated .email-bt:invalid:focus,
.email-bt.is-invalid:focus,
.was-validated .email-bt:invalid:focus,
.email-bt.is-invalid:focus,
.email-bt.dropify.is-invalid::-moz-focus-outer {
    border-color: #e23e3d !important;
    box-shadow: none;
}

.was-validated .email-bt:invalid~.invalid-feedback,
.was-validated .email-bt:invalid~.invalid-tooltip,
.email-bt.dropify.is-invalid~.invalid-feedback {
    display: block;
}

.email-bt.is-invalid~.invalid-feedback,
.email-bt.is-invalid~.invalid-tooltip,
.email-bt.dropify.is-invalid~.invalid-feedback {
    display: block;
}

/* Add validation for form-select, checkboxes, and custom controls */
.was-validated .form-check-input:invalid~.form-check-label,
.form-check-input.is-invalid~.form-check-label,
.was-validated .custom-control-input:invalid~.custom-control-label,
.custom-control-input.is-invalid~.custom-control-label {
    color: #e23e3d;
}

.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip,
.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip {
    display: block;
}

/* Modal alert start */
/* Popup styles */
.popup {
    position: fixed;
    /* Fixed to screen for better centering */
    left: 50%;
    top: 50%;
    /* Center vertically */
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: max-content;
    max-width: 75%;
    min-width: 500px;
    opacity: 0;
    pointer-events: none;
    /* Prevent interaction when hidden */
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) scale(1.2);
    /* Start with slight scale */
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    z-index: 1001;
    /* Above the overlay */
}

.max-width-480 {
    max-width: 480px !important;
}

.min-width-480 {
    min-width: 480px !important;
}

.popup.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    max-height: 85vh;
    overflow: auto;
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 1000;
    color: var(--text-color);
}

.overlay.show {
    opacity: 1;
    pointer-events: auto;
    overflow: auto;
}

.popup :is(header, .icons, .field) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup header {
    padding-bottom: 15px;
    border-bottom: 1px solid #ebedf9;
}

.popup header span {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
}

.popup header .close {
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.popup header .close {
    color: var(--text-color);
    font-size: 17px;
    background: #e0e0e0;
    height: 33px;
    width: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.popup header .close:hover {
    background: #e0e0e0;
    color: var(--text-color);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


.popup .content {
    margin: 20px 0;
    color: var(--text-color);
}

.popup .content > p {
    font-size: 16px;
    color: var(--text-color);
}

/* Modal alert end */

/* Range slider start */
.slider-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0px;
    margin: 2.2rem auto;
}

#slider-js {
    width: 100%;
    height: 7px;
    background-color: #c9c9c9;
    position: relative;
    border-radius: 3px;
    cursor: pointer;
}

#slider-handle {
    position: absolute;
    left: 0px;
    height: 30px;
    width: 30px;
    box-shadow: 0px 2px 10px rgba(48, 56, 77, 0.5);
    border-radius: 50%;
    background-color: white;
    top: -12px;
    transition: 0.2s;
    transform: translateX(-50%);
}

#slider-handle:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: 10px;
    left: 10px;
}

#slider-counter {
    position: absolute;
    left: 0px;
    height: 30px;
    min-width: 30px;
    padding: 0 10px;
    width: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    top: -50px;
    transition: 0.2s;
    transform: translateX(-50%);
}

/* Range slider end */

.provide-cords {
    margin-top: 8px;
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
    text-align: left !important;
}

.provide-cords:hover, .provide-cords:focus, .provide-cords:active {
    color: #0056b3;
    text-decoration: underline;
}

.provide-cords:visited {
    color: #551a8b;
}

#tabs {
    display: flex;
    position: relative;
    margin: 0 auto;
    height: auto;
    min-height: 200px;
    max-height: 600px;
    overflow: hidden;
}

#tabs ul {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style-type: none;
    vertical-align: top;
    width: 50%;
}

#tabs ul li a {
    position: relative;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #3b3b3b;
    border-top: solid 2px #e9e9e9;
    padding: 20px 5px;
    z-index: 1;
    opacity: .5;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

#tabs ul li:focus,
a:focus {
    outline: none;
}

#tabs ul li:nth-child(1) a {
    border-top: none;
}

#tabs ul li a.active {
    opacity: 1;
}

.para-a {
    font-weight: bold;
    margin-top: 10px;
    padding: 0;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border: none;
    color: #2b2b2b;
}

.tag {
    position: relative;
    width: 100%;
}

.tag .icon {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 100%;
    vertical-align: middle;
    color: #fff;
}

.tag .block {
    position: absolute;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    border: solid 2px #fff;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.circle {
    position: absolute;
    padding: 2px;
    border: solid 2px #7b7b7b;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tag .title {
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0 10px;
    vertical-align: middle;
    color: var(--text-color);
    font-size: 1.1rem;
}

.addon {
    position: relative;
    width: 80%;
    top: -25px;
    margin-left: 70px;
    letter-spacing: 0;
    font-size: .9rem;
    color: var(--text-color);
    opacity: 0;
}

.addon.fadein {
    opacity: 1;
}

.browser {
    width: 45%;
    height: 95%;
    position: absolute;
    border-style: solid;
    border-width: 2px 0 2px 2px;
    border-color: #7b7b7b transparent #7b7b7b #7b7b7b;
    right: 0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    line-height: 20px;
    background: #fff;
    border-bottom: solid 2px #7b7b7b;
    z-index: 2;
}

.dot {
    position: relative;
    display: inline-block;
    padding: 4px;
    background: #c7c7c7;
    border-radius: 100%;
}

.dot:nth-child(1) {
    margin-left: 7px;
}

#tabs-1,
#tabs-2,
#tabs-3,
#tabs-4 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#tabs-1 {
    background: url(../assets/images/timeline_slider.jpeg) no-repeat center center;
    background-size: cover;
}

#tabs-2 {
    background: url(../assets/images/fan_community.png) no-repeat center center;
    background-size: cover;
}

#tabs-3 {
    background: url(../assets/images/migrations.png) no-repeat center center;
    background-size: contain;
}

#tabs-4 {
    background: url(../assets/images/connections.png) no-repeat center center;
    background-size: contain;
}

.hidden {
    display: none !important;
}

.page-link {
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid var(--primary-color);
}

.page-link:hover {
    color: #FFF;
    background-color: var(--primary-color-500);
    border-color: var(--primary-color-500);
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem var(--primary-color-100);
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: var(--primary-color);
}

.invalid-feedback {
    font-size: inherit !important;
}

.mw-185 {
    min-width: 185px !important;
}

.text-wrap {
    text-wrap: auto !important;
}

.no-hover:hover {
    background-color: initial !important;
}

.text-color {
    color: var(--text-color) !important;
}

.spinner-border {
    width: 2rem;
    height: 2rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;

    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentcolor;
        border-top-width: 0.25em;
        border-right-width: 0.25em;
        border-right-color: currentcolor;
        border-bottom-width: 0.25em;
        border-left-width: 0.25em;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em;
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}

.spinner-grow {
    width: 2rem;
    height: 2rem;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow 0.75s linear infinite;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


.visually-hidden {
    opacity: 0;
}

.text-primary {
    color: var(--primary-color) !important;
}

.me-2 {
    margin-right: 10px;
}

.primary-light-section {
    background-color: var(--primary-color-200);
    border: 1px solid var(--primary-color-200);
    border-radius: 10px;
    padding: 1rem;
}

.shadow-md {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 
        0 4px 8px rgba(0, 0, 0, 0.04), 
        0 0 2px rgba(0, 0, 0, 0.02);
}

.nice-select.form-control  {
    width: 100% !important;
}

.nice-select-dropdown {
    width: inherit !important;
}

/* Change nice select div border to danger if invalid class is added to original select field */
.form-group .form-control.is-invalid ~ .nice-select {
    border-color: #dc3545;
}

.form-group .form-control.parsley-error ~ .nice-select {
    border-color: #dc3545;
}

.nice-select,
.nice-select .current {
    font-size: initial !important;
    line-height: inherit !important;
}

.nice-select .option {
    white-space: normal !important
}

.w-15-p {
    width: 15% !important;
}

.w-30-p {
    width: 30% !important;
}

.w-30-p > .w-15-p {
    width: 47% !important;
}

@media (max-width: 768px) {
    .address-input-field-group {
        margin-top: 18px;
    }
    
    .w-15-p {
        width: 100% !important;
    }

    .w-30-p {
        width: 100% !important;
    }

    .w-30-p > .w-15-p {
        width: 100% !important;
    }

    .address-section .date-field {
        width: 47.5% !important;
    }
}


.bg-fcf0e3 {
    background-color: #fcf0e3 !important;
}

.text-f78907 {
    color: #f78907 !important;
}


.searchbar {
    height: 50px;
    width: 60px;
    border: 1px solid;
    border-radius: 30px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: inherit;
}

.search_input {
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    line-height: 40px;
    transition: width 0.4s linear;
    display: none;
}

.searchbar:hover,
.searchbar.active {
    padding: 0 10px;
    width: 100%;
    max-width: 450px;
    transition: width 0.4s linear;
}

.searchbar:hover > .search_input,
.searchbar.active > .search_input {
    padding: 0 10px;
    width: 100%;
    max-width: 450px;
    transition: width 0.4s linear;
    display: block;
}

.searchbar:hover > .search_icon,
.searchbar.active > .search_icon {
    background: var(--text-color);
    color: #fff;
}

.search_icon {
    height: 35px;
    width: 35px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent;
}

/* Styles for small screens */
@media (max-width: 768px) {
    .searchbar {
        width: 100%;
        max-width: 450px;
    }

    .search_input {
        padding: 0 10px;
        width: 100%;
        max-width: 450px;
        display: block;
    }

    .search_icon {
        background: var(--text-color);
        color: #fff;
    }
}

.breadcrumb {
    font-size: 1rem; /* Adjust as needed */
    font-weight: 500;
    color: #6c757d; /* Default muted color */
}

/* Custom separator › using primary color */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--primary-color);
    padding: 0 0.5rem;
}

/* Breadcrumb links default state */
.breadcrumb-item a {
    color: #6c757d; /* Optional: change to something closer to your palette */
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Breadcrumb links on hover use --primary-color */
.breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* Optional: make the active breadcrumb bold or darker */
.breadcrumb-item.active {
    color: #343a40;
    font-weight: 600;
}
.breadcrumb-item a:hover {
    color: var(--primary-color) !important;
}