@charset "utf-8";
/* CSS Document */

/******* import fonts *********/

@import url('../fonts/roboto_stylesheet.css');
@import url('../fonts/poppins_stylesheet.css');

/******* import fonts *********/

/*======= root variables ========== */

:root {
    /* ===== Brand Colors ===== */
    --color-primary: #032854;
    --color-secondary: #E8602C;
    --color-light: #ffffff;

    /* brand light colors */
    --color-primary-light: #EAF6FB;
    --color-secondary-light: #FDF3EC;

    /* font colors */
    --main-heading-color: #032854;
    --sub-heading-color: #323232;
    --highlight-color: #E8602C;
    --paragraph-color: #333333;
    --mute-text-color: #616161;
    --text-light: #ffffff;


    /* ===== Font Families ===== */
    --font-heading: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    --font-paragraph: 'Poppins', sans-serif;
}

/******************************/
/*******common css*************/
/******************************/

html {
    overflow-x: hidden;
}

.float_badge{
    position: fixed; 
    bottom: 40px; 
    right: 20px; 
    z-index: 9999999999;
}

.float_badge img{
    height: 130px;
    width: 130px;
}

body {
    font-family: var(--font-paragraph);
    color: var(--paragraph-color);
    overflow-x: hidden;
}

h1,
h2 {
    font-family: 'Roboto Condensed';
    color: var(--main-heading-color);
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
}

h3 {
    font-size: 26px;
    font-weight: 600;
}

h4 {
    font-family: 'Roboto Condensed';
    font-size: 24px;
}

h5 {
    font-family: var(--font-paragraph);
    font-size: 18px;
}

p {
    font-family: var(--font-paragraph);
    color: var(--paragraph-color);
    font-size: 15px;
}

a {
    text-decoration: none;
    color: var(--paragraph-color);
    transition: all 0.3s ease;
}

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

.sec_padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

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

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

.Large_heading {
    font-size: 50px;
}

.intro_div p {
    font-size: 15px;
    font-weight: 500;
}

.secondary_link {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: 0.2s ease-in-out all;
}

.secondary_link:hover {
    color: var(--color-primary);
}

.heading_font {
    font-family: 'Roboto Condensed';
}

/* ============================== */
/* ============================== */
/* common css*/

.light_org_bg {
    background-color: var(--color-secondary-light);
}

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

.shadow_card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: none;
}

.border_box {
    padding: 20px;
    border-radius: 10px;
}

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

.gray_box {
    background-color: #F1F1F1;
    padding: 40px;
    border-radius: 10px;
}

.gray_right_bg {
    background-image: linear-gradient(to left, #F8F5F0 30%, rgba(0, 0, 0, 0) 20%);
    background-size: cover;
    background-repeat: no-repeat;
}

.blue-orange-bg {
    background-image: linear-gradient(to left, var(--color-secondary) 25%, var(--color-primary) 25%);
    color: #ffffff !important;
}

.dark-blue-card {
    background-color: #002147;
    color: #ffffff !important;
    padding: 20px;
    border-radius: 10px;
    transition: .3s ease-in-out all;
}

.dark-blue-card.icon_card h4 {
    font-size: 18px;
}

.dark-blue-card h4 {
    font-size: 20px;
}

.dark-blue-card .icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

.dark-blue-card:hover {
    background-color: var(--color-secondary);
}

.dark-blue-card.description_card p {
    font-size: 14px;
    margin-bottom: 0;
    color: #ffffffcb !important;
}

.dark-blue-card.description_card:hover {
    background-color: var(--color-primary);
}

.dark-blue-card.description_card:hover h4::before {
    background-color: var(--color-secondary);
}

.dark-blue-card:hover .btn--primary .btn__icon-wrapper {
    background-color: #ffffff !important;
    color: var(--color-secondary);
    border: transparent;
}

.dark-blue-card:hover .btn--primary .btn__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(180%, -180%);
}

.dark-blue-card:hover .btn--primary .btn__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.btn--primary {
    transition: all 0.3s ease;
}

.dark-blue-card:hover .before_line::before {
    background-color: var(--color-primary);
}

.custom_list {
    list-style: none;
}

.custom_list li {
    margin-bottom: 12px;
    position: relative;
}

.custom_list li::before {
    position: absolute;
    content: "•";
    color: var(--color-secondary);
    font-size: 40px;
    line-height: 0;
    left: -22px;
    top: 9px
}

.custom_list .heading_font {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
}

.custom_list.list_primary_heading li::before {
    top: 14px !important;
}

.link_list a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--paragraph-color);
    transition: all 0.3s ease;
}

.link_list a span i {
    font-size: 14px;
    margin-left: 5px;
    color: var(--color-secondary);
}

.orange_tag {
    font-size: 12px;
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 6px;
    display: inline-block;
}

.link_list a:hover {
    color: var(--color-secondary);
}

.link_list li::before {
    top: 12px;
}

.link_list li {
    padding: 0;
}

.secondory-list {
    list-style: none;
}

.secondory-list li::before {
    position: absolute;
    content: "•";
    color: var(--color-primary);
    font-size: 22px;
    line-height: 0;
    left: -14px;
    top: 10px
}

/* Form CSS */
.form-control,
.form-select {
    font-size: 13px;
    height: 50px;
    box-shadow: none !important;
    border-radius: 6px;
}

.form-select option:selected {
    background-color: red;
}

.form-label {
    color: #616161;
    font-size: 14px;
    margin-bottom: 2px;
}

.form-check-label {
    font-size: 14px;
    color: #616161;
}

.form-check-input{
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.htasl_div .logo_div img {
    width: 80px;
}

.htasl_div span {
    font-size: 14px;
    color: var(--sub-heading-color);
    font-weight: 500;
}

.htasl_div h6 {
    font-weight: 800;
    color: #65a736;
}

.siba_div .logo_div img {
    width: 110px;
}

.siba_div span {
    font-size: 14px;
    color: var(--sub-heading-color);
    font-weight: 500;
}

.siba_div h6 {
    font-weight: 800;
    color: #401f4e;
}

/* Radio Button */
.radio-wrapper {
    position: relative;
}

.radio-wrapper input[type=radio] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    appearance: none;
}

.radio-wrapper input[type=radio]+label:before {
    content: "";
    background: #ffffff;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    top: -0.1em;
    margin-right: .6em;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.radio-wrapper input[type=radio]:checked+label:before {
    background-color: #00C940;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio-wrapper input[type=radio]:focus+label:before {
    outline: none;
    border-color: #00C940;
}

.radio-wrapper input[type=radio]:disabled+label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.radio-wrapper input[type=radio]+label:empty:before {
    margin-right: 0;
}

.radio-wrapper label {
    font-size: 14px;
}

/* =========================== */

.before_line {
    position: relative;
    padding-left: 10px;
    margin-bottom: 0;
}

.before_line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    max-height: 24px;
    background-color: var(--color-secondary);
}

/* button styles */

.btn {
    font-family: var(--font-paragraph, sans-serif);
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    border-radius: 10rem;
    padding: 5px;
    padding-left: 19px;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s;
}

.btn__icon-wrapper {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    position: relative;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.btn__icon-svg--copy {
    position: absolute;
    transform: translate(-180%, 180%);
}

/* Shared Animation */
.btn:hover .btn__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(180%, -180%);
}

.btn:hover .btn__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

/* --- Variant 1: Original (Primary) --- */
.btn--primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn--primary .btn__icon-wrapper {
    color: #fff;
    background-color: var(--color-secondary);
}

.btn--primary:hover {
    color: var(--text-light);
    background-color: var(--color-secondary);
}

.btn--primary:hover .btn__icon-wrapper {
    color: var(--color-secondary);
    background-color: var(--color-light);
}

/* --- Variant 2: New (Outline/Transparent) --- */
.btn--outline {
    background-color: transparent;
    color: #43474F;
    padding: 0;
}

.btn--outline .btn__icon-wrapper {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn--outline:hover {
    color: var(--color-secondary);
    /* Optional: highlight color on hover */
}

.btn--outline:hover .btn__icon-wrapper {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn--gray {
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 5px;
    padding-left: 19px;
}



/* ============================== */
/* ============================== */
/* ============================== */

/* header css */

header {
    height: 102px;
}

.nav_con {
    position: fixed;
    background-color: #ffffff;
    z-index: 9;
    width: 100%;
}

.logo_col {
    background-color: var(--color-light);
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
}

.navbar-brand {
    width: 160px;
    display: block;
}

.top_nav {
    /* padding: 10px 15px; */
    padding: 10px 57px 10px 15px;
}

.nav_contact a {
    color: var(--paragraph-color);
    font-size: 13px;
}

.nav_contact a:hover {
    color: var(--highlight-color);
}

.social_link {
    color: var(--paragraph-color);
    font-size: 13px;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #EEEEEE;
}

.social_link:hover {
    background-color: var(--color-secondary);
    color: var(--text-light);
}

.btm_nav_btn {
    padding: 20px 35px;
    background-color: var(--color-secondary);
    color: var(--text-light);
    border: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-radius: 0;
    height: 100%;
}

.btm_nav_btn:hover {
    background-color: #f84904;
}

.bottom_nav {
    background-color: var(--color-primary);
}

.nav-link {
    font-size: 13px;
    color: var(--text-light) !important;
}

.nav-link:hover {
    color: var(--color-secondary-light) !important;
}

.navbar-nav {
    gap: 22px;
    margin-right: 22px;
}

.nav-link.active {
    font-weight: 700;
}

/* ideas sec */

.idea_heading {
    font-size: 26px;
    color: var(--sub-heading-color);
    font-weight: normal;
    margin-bottom: 0;
}

.idea_heading span {
    color: var(--color-secondary);
}

.idea_right_col {
    background-image: url(../images/dark_skyline.webp);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 345px;
}

/* swiper */

.quick_links_sec {
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 600px;
    background-position: left center;
}

.quick_links_swiper,
.fourslide_swiper {
    width: 100%;
}

.quick_links_swiper .swiper-slide,
.fourslide_swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    height: 350px;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.quick_links_swiper .swiper-pagination-bullet-active,
.fourslide_swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}


.custom-card {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 1s ease-in-out;
}

.custom-card:after {
    position: absolute;
    content: '';
    bottom: -20px;
    width: 150%;
    left: -20px;
    height: 400px;
    background-image: linear-gradient(rgba(251, 0, 0, 0) 65%, rgba(0, 0, 0, 0.8) 75%);
    transition: 1s ease-in-out;
}

.custom-card:hover:after {
    height: 800px;
}

.light_pagi_swiper .swiper-pagination-bullet {
    width: 20px;
    border-radius: 3px;
    height: 3px;
    background-color: #ffffff;
}

.light_pagi_swiper .swiper-pagination-bullet-active {
    background-color: var(--color-secondary);
    width: 30px;
}

.light_pagi_swiper {
    text-align: end;
    padding-right: 30px;
}

.fourslide_swiper {
    padding-bottom: 45px;
}

/* Container for all text */
.content-container {
    transition: transform 0.4s ease;
    width: 100%;
    position: relative;
    z-index: 9;
}

/* Initially hide the P tag and Button */
.reveal-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
}

.custom-card:hover .reveal-content {
    max-height: 200px;
    /* Adjust based on content size */
    opacity: 1;
}

/* Text Fade Animation */
.carousel-item.active .animate-fade-in {
    animation: fadeInUp 0.8s ease-in-out forwards;
}

.carousel-item .light_org_bg{
    height: 100%;
}

/* Ensure the carousel container is the reference for the absolute button */
#ideaCarousel {
    position: relative;
}

.btn-close-carousel {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1050;
    /* Higher than carousel content */
    background: rgba(0, 0, 0, 0.2);
    /* Semi-transparent background */
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.btn-close-carousel:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #ffedda;
    /* Or any highlight color */
}

/* about us sec */

.about_con {
    background-color: #031D3D;
    border-radius: 0 0 150px 0;
    padding-top: 80px;
    padding-bottom: 200px;
    background-image: url(../images/white_skyline.webp);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 700px;
}

.about_left_col p {
    font-size: 22px;
}

/* accordion */

.bordered_accordion .accordion-button {
    box-shadow: none !important;
    padding: 15px 20px;
    font-size: 19px;
    font-weight: 500;
    background-color: var(--color-light);
    border: none;
    color: var(--sub-heading-color);
}

/* 1. Default State: Closed (Plus Icon) */
.bordered_accordion .accordion-button.collapsed::after {
    background-image: url(../images/plus.png);
    padding: 10px;
    width: 36px;
    height: 36px;
    background-position: center;
    border-radius: 50px;
    background-size: 16px;
}

/* 2. Active State: Open (Minus Icon) */
.bordered_accordion .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus_dark.png);
    padding: 10px;
    width: 36px;
    height: 36px;
    background-position: center;
    border-radius: 50px;
    background-size: 16px;
}

.bordered_accordion .accordion-body {
    padding-top: 0;
    padding-right: 50px;
}

.bordered_accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #d4d4d4;
    border-radius: 0;
}

.top_border_accordion .accordion-button {
    box-shadow: none !important;
    padding: 25px 30px 25px 190px;
    font-size: 26px;
    font-weight: 500;
    background-color: var(--color-light);
    border: none;
    color: var(--sub-heading-color);
}

.top_border_accordion .accordion-button .item-number {
    font-size: 18px;
    margin-right: 20px;
}

.top_border_accordion .accordion-item {
    border: none;
    border-top: 1px solid #d4d4d4;
    border-radius: 0;
}

.top_border_accordion .accordion-body {
    padding-top: 0;
}

.accordion-body p {
    font-size: 14px;
}

.accor_img img {
    border-radius: 10px;
}

/* 1. Default State: Closed (Plus Icon) */
.top_border_accordion .accordion-button.collapsed::after {
    background-image: url(../images/plus.png);
    border: 1px solid #032854;
    padding: 10px;
    width: 36px;
    height: 36px;
    background-position: center;
    border-radius: 50px;
    background-size: 16px;
}

/* 2. Active State: Open (Minus Icon) */
.top_border_accordion .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
    background-color: var(--color-primary);
    padding: 10px;
    width: 36px;
    height: 36px;
    background-position: center;
    border-radius: 50px;
    background-size: 16px;
}

/* who we work with sec start */

.work_with_con {
    background-image: url(../images/who_wrok_bg.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    border-radius: 0 0 150px 0;
}

.light_hover_card {
    background-color: var(--color-secondary-light);
    padding: 30px 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in-out all;
    height: 100%;
}

.light_hover_card .icon {
    width: 65px;
    height: 65px;
    padding: 15px;
    background-color: #FDE8DC;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.light_hover_card h5 {
    font-family: 'Roboto Condensed';
    text-align: center;
    margin-bottom: 0;
    color: var(--paragraph-color);
}

.light_hover_card:hover {
    background-color: var(--color-secondary);
}

.light_hover_card:hover h5 {
    color: var(--text-light);
}

/* contact us sec */

.contact_con {
    background-image: url(../images/map.png);
    background-position: left bottom;
    background-size: 730px;
    background-repeat: no-repeat;
}

.contact_form {
    background-color: var(--color-primary-light);
    padding: 50px;
    border-radius: 10px;
}

.form-floating input {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #666666;
    border-radius: 0;
    font-size: 13px;
    box-shadow: none !important;
}

.form-floating textarea {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #666666;
    border-radius: 0;
    font-size: 13px;
    box-shadow: none !important;
}

.form-floating>label {
    font-size: 13px;
    color: #333333;
}

.form-floating>textarea:focus~label::after,
.form-floating>textarea:not(:placeholder-shown)~label::after {
    background-color: var(--color-primary-light);
}

.send_btn {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 17px 20px;
}

.send_btn:hover {
    background-color: #E8602C;
    color: var(--text-light);
}

.form-control:focus {
    border-color: var(--color-secondary);
}

/* news sec */

.news_card h5 {
    font-family: 'Roboto Condensed';
    color: #032854;
    font-size: 20px;
}

.news_card .date {
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--color-primary);
}

.news_detail_date {
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--color-primary);
    margin-left: 10px;
}

.news_detail_box div img {
    border-radius: 5px 5px 0 0;
}

.news_detail_box {
    padding: 20px;
    border: 1px solid rgba(195, 198, 209, 0.2);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border-top: 0;
    border-radius: 0 0 7px 7px;
}

.news_img img {
    border-radius: 7px 7px 0 0;
}

.news_img {
    position: relative;
}

.news_img .tag {
    position: absolute;
    color: #ffffff;
    background-color: var(--color-primary);
    padding: 5px 10px;
    top: 10px;
    left: 10px;
    border-radius: 3px;
    font-family: 'Roboto Condensed';
    font-weight: 500;
}

.news_detail_tag {
    color: #ffffff;
    background-color: var(--color-primary);
    padding: 5px 10px;
    top: 10px;
    left: 10px;
    border-radius: 3px;
    font-family: 'Roboto Condensed';
    font-weight: 500;
    width: fit-content;
}

.news_slider .swiper-button-prev,
.news_slider .swiper-rtl .swiper-button-next {
    left: auto;
    right: 60px;
}

.news_slider .swiper-button-next,
.news_slider .swiper-button-prev {
    top: 25px;
    width: 39px;
}

.news_slider {
    padding-top: 80px;
}

.news_slider .swiper-button-next:after,
.news_slider .swiper-button-prev:after {
    font-size: 13px;
    color: rgba(25, 28, 29, 1);
    width: 45px;
    height: 45px;
    border: 1px solid rgba(115, 119, 128, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 50px;
}

.news_slider .swiper-button-next,
.news_slider .swiper-button-prev {
    top: 40px;
    width: 55px;
}

.news_slider .swiper-button-next:hover:after,
.news_slider .swiper-button-prev:hover:after {
    background-color: var(--color-secondary-light);
}

.news_slider_col {
    margin-top: -85px;
}

.slider_news_detail {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 60px;
}

.news_detail_box h5 {
    min-height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* footer */

footer {
    background-color: #002147;
    background-image: url(../images/footer_bg.webp);
    background-size: 300px;
    background-position: right bottom;
    background-repeat: no-repeat;
    margin-top: 80px;
}

footer p {
    font-size: 13px;
}

.footer_logo {
    width: 150px;
    background-color: var(--color-light);
    padding: 17px 17px;
    border: 1px solid var(--color-primary);
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    margin-top: -140px;
}

.contact_info_link {
    display: flex;
    gap: 10px;
    width: fit-content;
}

.contact_info_link p {
    color: var(--text-light);
    font-size: 13px;
}

.contact_info_link p:hover {
    color: var(--color-secondary);
}

.social_icon_div {
    display: flex;
    gap: 10px;
}

.social_icon_div a {
    color: var(--text-light);
    width: 30px;
    height: 30px;
    background-color: #d4d4d40c;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.social_icon_div a:hover {
    background-color: var(--color-secondary);
}

.footer_link {
    color: var(--text-light);
    font-size: 13px;
    width: fit-content;
}

.footer_link:hover {
    color: var(--color-secondary);
}

footer h4 {
    font-size: 20px;
}

.copy_right_div {
    display: flex;
    border-top: 1px solid #c6c6c6af;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.copy_right_div p {
    color: var(--text-light);
    font-size: 11px;
    font-style: italic;
}

.copy_right_div a {
    font-weight: bold;
    color: #ffffff;
}

/* ============================== */
/* ============================== */

/* mobile menu */

.menu_canvas {
    background-image: url(../images/dark_skyline.webp);
    background-position: bottom;
    background-size: 800px;
    background-repeat: no-repeat;
}

.mobile_menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mobile_menu ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--paragraph-color);
    border-bottom: 1px solid #e7e7e7;
    padding: 20px 5px;
}

.menu_btn {
    font-size: 12px;
    font-weight: 500;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid #5c5c5c;
    color: #ffffff;
    margin-right: 10px;
    padding: 10px 15px;
}

.menu_btn i {
    font-size: 23px !important;
}

.menu_contact .nav_contact a {
    font-size: 15px;
}

/* inner pages css */

/* news */

.news_detail_slider {
    padding-bottom: 30px;
}

.news_detail_slider .swiper-slide img {
    border-radius: 10px;
}

ul li {
    font-size: 14px;
    color: var(--paragraph-color);
}

.idea_left_col,
.idea_right_col {
    min-height: 95px;
    display: flex;
    align-items: center;
}


.idea_Carousel {
    position: -webkit-sticky;
    position: fixed !important;
    z-index: 8;
    width: 100%;
}

.idea_crsl_div {
    height: 95px;
}

.idea_Carousel .carousel-indicators {
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
    padding-right: calc((100% - 1301px) / 2);
    margin-bottom: 0;
    bottom: 6px;
}

.idea_Carousel .carousel-indicators button {
    width: 25px;
    height: 6px;
    border-radius: 35px;
    border: none;
}

.carousel-indicators [data-bs-target]{
    background-color: var(--color-primary);
    opacity: .2 !important;
}

.carousel-indicators .active {
    background-color: var(--color-primary);
    opacity: .6 !important;
    width: 40px !important;
}

.nav_contact a {
    display: flex;
    align-items: center;
    gap: 5px
}

.nav_contact a i {
    font-size: 13px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #EEEEEE;
}

.banner img {
    border-radius: 10px;
}

.banner_slider {
    border-radius: 10px;
}

.icon_heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon_heading img {
    width: 40px;
}

.vision_sec,
.mission_sec {
    padding-top: 50px;
    padding-bottom: 150px;
}

.vision_sec {
    padding-left: 100px;
    padding-right: 50px;
    background-color: #002147;
    background-image: linear-gradient(to bottom, #002147fa, #031d3df2), url(../images/vision_bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission_sec {
    padding-right: 100px;
    padding-left: 50px;
    background-color: #021021;
    background-image: linear-gradient(to bottom, #021021fa, #021021f2), url(../images/mission_bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 120px 0;
}

.objectives_sec {
    background-image: url(../images/map.webp);
    background-position: left bottom;
    background-size: 700px;
    background-repeat: no-repeat;
}

.skyline_bg {
    padding-bottom: 60px;
    background-image: url(../images/skyline.webp);
    background-position: right bottom;
    background-size: 600px;
    background-repeat: no-repeat;
}





/* ==========================================================================
/* ==========================================================================
/* ==========================================================================
/* ==========================================================================

/* timeline CSS */

/* ==========================================================================
   DESKTOP STYLES (Your Original Styles)
   ========================================================================== */
.timeline-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 40px 0;
}

/* Horizontal connecting line */
.timeline-steps::before {
    content: "";
    position: absolute;
    top: 52px;
    /* Sits perfectly behind the centers of your circles */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #cccccca9;
    z-index: 1;
}

.timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    z-index: 2;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
}

.timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 13px;
    color: #666666;
}

.hospitality_accordion .accordion-button h2 {
    font-size: 25px;
    margin-bottom: 0;
}


@media (max-width: 767.98px) {

    .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0 20px 20px;
    }

    .timeline-steps::before {
        top: 0;
        left: 31px;
        width: 1px;
        height: 100%;
    }

    .timeline-step {
        flex-direction: row;
        flex-wrap: wrap;
        text-align: left;
        align-items: center;
        width: 100%;
        margin-bottom: 30px;
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    .timeline-number {
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .timeline-title {
        width: calc(100% - 44px);
        margin-bottom: 2px;
    }

    .timeline-desc {
        width: 100%;
        padding-left: 44px;
    }
}

/* Why image card shape */
.why-img-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.why-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Custom numbers for project donations lists */
.project-types-list {
    padding-left: 0;
    list-style: none;
}

.project-types-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333333;
}

.project-types-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #333333;
    font-family: var(--font-heading);
}

/* Explore Projects Card styles */
.project-card {
    padding: 6px;
    background-color: #FFFAF7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.project-card .card-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-card .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-heading);
}

.project-badge.funded {
    background-color: #28a745;
}

.project-badge.pending {
    background-color: var(--color-secondary);
}

.project-card-body {
    padding: 15px;
}

.project-card-body h5 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
    font-weight: 600;
}

.project-card-price {
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.project-card-price small {
    font-size: 13px;
    font-family: var(--font-paragraph);
    font-weight: normal;
    color: #333333;
}

.project-card-meta {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-card-meta i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.form-floating select.form-select {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid #666666;
    border-radius: 0;
    font-size: 13px;
    box-shadow: none !important;
    padding-left: 12px;
}

.form-floating select.form-select:focus {
    border-color: var(--color-secondary);
}

.contact-info-section h5 {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 0;
    white-space: nowrap;
    width: fit-content;
}

.contact-info-item label {
    display: block;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 0.1rem;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 14px;
    color: var(--paragraph-color);
}

.contact-info-item a:hover {
    color: var(--color-secondary);
}

/* ==========================================
   OUR EXPERTS PAGE CUSTOM STYLES
   ========================================== */

/* Executive Director Profile Styles */
.profile-img-wrapper {
    position: relative;
    padding-top: 18px;
    padding-left: 18px;
    display: inline-block;
    width: 100%;
}

.profile-img-background {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 18px);
    height: 100%;
    background-color: var(--color-secondary); /* Terracotta orange */
    border-radius: 15px;
    z-index: 1;
}

.profile-img-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Expert Team Cards Styles */
.expert-card {
    background-color: #EEEEEE;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    border-radius: 10px 10px 40px 10px;
    padding: 25px 15px 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card[role="button"] {
    cursor: pointer;
}

.expert-card[role="button"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expert-card img {
    width: 100%;
    display: block;
}

.expert-info-box {
    background-color: #ffffff;
    border-radius: 10px 10px 40px 10px;
    padding: 12px 15px;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: absolute;
    bottom: 12px;
    width: calc(100% - 24px);
    left: 12px;
}

.expert-info-box h5 {
    color: var(--color-primary); /* Dark Blue */
    font-weight: 700;
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

.expert-info-box span {
    color: var(--mute-text-color);
    font-size: 13px;
    font-style: italic;
}

/* Expert Detail Modal Styles */
.expert-modal .modal-content {
    border: none;
    border-radius: 20px;
    padding: 15px;
    position: relative;
    overflow: visible;
}

.expert-modal .btn-close-custom {
    position: absolute;
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1065;
    right: 10px;
    top: 11px;
}

/* Hide page scrollbar when modal is open */
body.modal-open {
    overflow: hidden !important;
}

html:has(body.modal-open) {
    overflow: hidden !important;
}

/* Submit Your Idea Form Styles */
.form-heading{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #66666626;
}

.form-section-card:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

input::placeholder{
    color: #bababa !important;
}

.blue_icon_card {
    background-color: var(--color-primary);
    border-radius: 10px;
}

.blue_icon_card .icon{
    width: 60px;
}

/* News Listing Pagination */
.news-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.news-pagination .page-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(115, 119, 128, 0.2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-paragraph);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    transition: all 0.3s ease;
    background-color: #ffffff;
    text-decoration: none;
}

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

.news-pagination .page-btn.active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.news-pagination .page-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
    border-color: rgba(115, 119, 128, 0.1);
    color: #999999;
}

.register_div .icon{
    width: 40px;
}

.register_div {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

/* ===== Register Button - Glowing Border Effect ===== */

.register_div a {
    display: inline-block;
    transition: none;
}

.register_div .btn--primary {
    position: relative;
    background: transparent !important;
    border: none;
    padding: 12px 24px;
    z-index: 1;
    overflow: hidden !important;
    border-radius: 10rem;
    transition: box-shadow 0.4s ease !important;
    animation: registerBtnGlow 2s ease-in-out infinite;
}

/* Animated gradient border — uses transform:rotate for cross-browser support */
.register_div .btn--primary::before {
    content: '';
    position: absolute;
    /* Oversize so the rotated square always covers the pill shape */
    top: 50%;
    left: 50%;
    width: 160%;
    height: 800%;
    transform: translate(-50%, -50%);
    border-radius: 0;
    background: conic-gradient(
        from 0deg,
        var(--color-primary) 0%,
        var(--color-secondary) 25%,
        #ff8a5c 50%,
        var(--color-secondary) 75%,
        var(--color-primary) 100%
    );
    z-index: -2;
    animation: rotateBorder 3s linear infinite;
}

/* Inner fill to mask the gradient, leaving only the border visible */
.register_div .btn--primary::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 10rem;
    background: var(--color-primary);
    z-index: -1;
    transition: background 0.4s ease;
}

.register_div .btn--primary:hover::after {
    background: var(--color-secondary);
}

.register_div .btn--primary:hover {
    box-shadow:
        0 0 18px rgba(232, 96, 44, 0.5),
        0 0 40px rgba(232, 96, 44, 0.2);
}

/* Rotate the oversized gradient pseudo-element — works in all browsers */
@keyframes rotateBorder {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes registerBtnGlow {
    0%, 100% {
        box-shadow:
            0 0 5px rgba(232, 96, 44, 0.1),
            0 0 10px rgba(232, 96, 44, 0.05);
    }
    25% {
        box-shadow:
            0 0 12px rgba(232, 96, 44, 0.4),
            0 0 25px rgba(232, 96, 44, 0.2),
            0 0 40px rgba(232, 96, 44, 0.08);
    }
    50% {
        box-shadow:
            0 0 20px rgba(232, 96, 44, 0.6),
            0 0 40px rgba(232, 96, 44, 0.3),
            0 0 60px rgba(232, 96, 44, 0.12);
    }
    75% {
        box-shadow:
            0 0 12px rgba(232, 96, 44, 0.4),
            0 0 25px rgba(232, 96, 44, 0.2),
            0 0 40px rgba(232, 96, 44, 0.08);
    }
}

/* ===== End Register Button Glowing Border ===== */
/* =============================================
   Select2 - match Bootstrap 5 .form-control
   ============================================= */
.select2-container--bootstrap-5 .select2-selection--single {
    padding: 0 12px !important;
    height: 50px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 50px !important;
    color: var(--bs-body-color) !important;
    background-color: var(--bs-body-bg) !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: 6px !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--bootstrap-5 .select2-selection--single:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection--single,
.select2-container--bootstrap-5.select2-container--open .select2-selection--single {
    border: 1px solid var(--color-secondary) !important;
    outline: 0 !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    line-height: 50px !important;
    color: var(--bs-body-color) !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 12px !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
    font-size: 13px !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
    margin-top: 0 !important;
}

.select2-container {
    width: 100% !important;
}

.select2-dropdown {
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: 6px !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
    padding: 8px 12px !important;
    font-size: 13px !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    border-color: rgb(214, 214, 214) !important;
    outline: 0 !important;
}

.select2-container--bootstrap-5 .select2-results__option {
    padding: 8px 12px !important;
    font-size: 13px !important;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    color: #fff !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted{
    background-color: var(--color-primary) !important;
}

/*Privacy Policy*/

.terms-list {
      padding-left: 1.25rem;
      margin-bottom: 1rem;
    }
    .terms-list li {
      margin-bottom: 0.5rem;
      line-height: 1.7;
    }

    /* ---- Contact card ---- */
    .terms_contact_card {
      background: #f8f8f6;
      border-left: 4px solid var(--bs-primary, #2c5f8a);
      border-radius: 2px;
    }
    .terms_contact_list a {
      color: inherit;
      text-decoration: underline;
      word-break: break-word;
    }
    .terms_contact_list a:hover {
      opacity: 0.75;
    }
    .terms_label {
      font-weight: 600;
      margin-right: 0.25rem;
    }

 ::-webkit-scrollbar {
            background: #000000;
            height: 5px;
            width: 5px;
            }

            ::-webkit-scrollbar-track {
            box-shadow: inset 0 0 2px #164863;
            }

            ::-webkit-scrollbar-thumb {
            background: #164863;
            border-radius: 2px;
            }

            ::-webkit-scrollbar-thumb:hover {
            background: #164863;
            }

/* Fix intl-tel-input with Bootstrap form-floating */
.form-floating .iti {
    display: block;
    width: 100%;
}

.form-floating .iti .iti__selected-dial-code {
    font-size: 13px;
}

.form-floating .iti input.form-control {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    box-shadow: none !important;
    height: calc(3.5rem + calc(var(--bs-border-width) * 2)) !important;
    min-height: calc(3.5rem + calc(var(--bs-border-width) * 2)) !important;
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
}

/* Bottom border on the iti container to match other inputs */
.form-floating .iti {
    border-bottom: 1px solid #666666;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out;
}

.form-floating .iti:focus-within {
    border-color: var(--color-secondary);
}

/* Remove the default intl-tel-input border */
.form-floating .iti--separate-dial-code .iti__selected-country-primary {
    background-color: transparent !important;
}

/* Always float the label when intl-tel-input is initialized to prevent overlapping with country flag/dial code */
.form-floating:has(.iti) label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    opacity: 0.65;
    z-index: 4;
    pointer-events: none;
}

/* Make intl-tel-input follow Bootstrap form-control width */
.iti {
    width: 100%;
}

/* Make phone input same height as Bootstrap input */
.iti .form-control {
    width: 100%;
    min-height: calc(1.5em + .75rem + 2px);
}

/* Space for country code */
.iti--allow-dropdown .form-control,
.iti--separate-dial-code .form-control {
    padding-left: 90px !important;
}

.contact_form .iti__country-container {
    top: 15px !important;
}

.uwy.userway_p2 .userway_buttons_wrapper {
    top: 24px !important;
    right: -20px !important;
    left: auto !important;
}



.ghip-icon-orange,
.ghip-icon-blue {
    width: 70px;
    height: 70px;
}

.ghip-icon-orange {
    background-color: #fff0e9;
}

.ghip-icon-blue {
    background-color: #eef6ff;
}
.btn-secondary {
    background-color: var(--color-secondary);
    color: #fff;
    border: 1px solid var(--color-secondary);
    padding: 12px 20px;
}

.btn-secondary:hover {
    background-color: #d35525;
    color: #fff;
    border-color: #d35525;
}