@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*
    font-family: "Playfair Display", serif;
    font-family: "Inter", sans-serif;
*/

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #0D1B2E;
    color: #CBD5E0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
/* ==================== UTILITIES ==================== */
.section_label {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 12px;
}
.section_header p {
    font-size: 15px;
    color: #8A9BB0;
    max-width: 580px;
    margin: 14px auto 0;
    line-height: 1.8;
}
.section_header h2 {
    font-size: 42px;
}
.section_header h2 span {
    color: #C9A84C;
}
.logo_text {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 22px;
    color: #FFFFFF;
}
.logo_text span {
    color: #C9A84C;
}
.btn_primary {
    background: #C9941A;
    color: #0A1628;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.36px;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid #C9941A;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    gap: 8px;
    border-radius: 10px;
}
.btn_primary:hover {
    background: #E0B84A;
    transform: translateY(-2px);
}
.btn_secondary {
    border-radius: 10px;
    background: transparent;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.36px;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid #C9941A66;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn_secondary:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}
.btn_dark {
    background: #0B1940;
    color: #F5F0E8;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid #0B1940;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
}
.btn_dark:hover {
    background: #1A2D47;
}
.btn_outline {
    border-radius: 4px;
    background: transparent;
    color: #0D1B2E;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid #0B1940;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.btn_outline:hover {
    background: #0B1940;
    color: #F5F0E8;
}


/* ==================== BACK TO TOP ==================== */
#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    background: #C9941A;
    color: #0D1B2E;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
@keyframes floatUpDown {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
    animation: floatUpDown 1.6s ease-in-out infinite;
}
#backToTop:hover {
    animation-play-state: paused;
    background: #E0B84A;
}


/* ==================== TOAST ==================== */
.toast_box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #1A2D47;
    border: 1px solid #C9A84C;
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9998;
    transform: translateX(130%);
    transition: transform 0.4s ease;
}
.toast_box i {
    color: #C9A84C;
    font-size: 18px;
}
.toast_box.show {
    transform: translateX(0);
}


/* ==================== HEADER ==================== */
.header_section {
    background: #0B1940F2;
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    z-index: 999;
    transition: all 0.5s ease;
    padding: 15px 0px;
}
.header_section.scrolled {
    background: #0B1940F2;
    top: 0;
    padding: 12px 0;
}
.header_section .navbar {
    padding: 0;
}
.header_section .navbar-nav {
    align-items: center;
}
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}
.header_section .navbar ul li a {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #F5F0E8CC !important;
    letter-spacing: 0.3px;
}
.header_section .navbar .nav-link {
    position: relative;
    padding: 3px 0 6px 0;
}
.header_section .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #C9A84C;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.header_section .navbar .nav-link:hover {
    color: #FFFFFF !important;
}
.header_section .navbar .nav-link:hover::after,
.header_section .navbar .nav-link.active::after {
    transform: scaleX(1);
}
.nav_btns a button {
    background: #C9941A;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0D1B2E;
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    transition: background 0.3s;
    cursor: pointer;
}
.nav_btns a button:hover {
    background: #E0B84A;
}
.navbar-brand img{
    height: 50px;
    width: auto;
}

/* ==================== HERO SECTION ==================== */
.hero_section {
    min-height: 100vh;
    background: linear-gradient(135deg, #080f1d 0%, #0D1B2E 55%, #0E2040 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero_section::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    background: radial-gradient(ellipse at right center, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero_content h1 {
    font-size: 66px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: "Playfair Display", serif;
}
.hero_content h1 span {
    color: #C9A84C;
}
.hero_content p {
    font-size: 18px;
    color: #8A9BB5;
    margin-bottom: 14px;
}
.hero_content p strong {
    color: #FFFFFF;
    font-weight: 500;
}
.hero_content p.hero_quote {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #C9941ACC;
    font-size: 17px;
    margin-top: 20px;
}
.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C9941A1A;
    border: 1px solid #C9941A4D;
    padding: 6px 16px;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9941A;
    border-radius: 20px;
}
.hero_badge i {
    font-size: 11px;
}
.hero_btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.hero_stats {
    display: flex;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.hero_stat_item{
    width: 100%;
    max-width: 170px;
    min-width: 170px;
    text-align: center;
    border-left: 2px solid #C9941A33;
    height: auto;
    min-height: 70px
}
.hero_stat_item:first-child{
    text-align: start;
    border: none;
}
.hero_stat_item h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
    color: #C9941A;
    margin-bottom: 0px;
}
.hero_stat_item p {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: #5A7A9A;
    margin-top: 4px;
    margin-bottom: 0;
}
.hero_img_box {
    position: relative;
}
.hero_img_box img {
    width: 100%;
    filter: brightness(0.88);
    transition: transform 0.5s ease;
}
.hero_img_box:hover img {
    transform: scale(1.02);
}
.hero_img_badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(13, 27, 46, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero_img_badge i {
    color: #C9A84C;
    font-size: 22px;
}
.hero_img_badge p {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}
.hero_img_badge span {
    font-size: 11px;
    color: #5A7A9A;
}
.hero_scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.hero_scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5A7A9A;
    font-family: "Inter", sans-serif;
}
.hero_scroll i {
    color: #C9A84C;
    font-size: 16px;
    animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}
.my_title_div{
    text-align: center;
}
.my_title_div h6{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #C9941A;
}
.my_title_div h1{
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0px;
    color: #F5F0E8;
    margin-bottom: 0;
}
.my_title_div h1 span{
    color: #C9941A;
}
.my_title_div p{
    font-weight: 400;
    font-size: 16.8px;
    line-height: 28.56px;
    letter-spacing: 0px;
    text-align: center;
    color: #8A9BB5;
    margin-top: 10px;
}

/* ==================== TRUST BAR ==================== */
.trust_bar {
    background: #111D32;
    border-top: 1px solid #C9941A1A;
    border-bottom: 1px solid #C9941A1A;
    padding: 30px 0px;
    border-width: 0.77px, 0px, 0.77px, 0px;
}
.trust_bar_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust_item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: #8A9BB5;
}

/* ==================== SECTION ONE — ABOUT ==================== */
.about_section {
    padding: 100px 0;
    background: #0D1E38;
}
.about_row_one{
    margin-top: 40px;
}
.about_img_box {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 480px;
    width: 100%;
}
.about_img_box img {
    width: 100%;
    transition: transform 0.6s ease;
    border-radius: 14px;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 8px 10px -6px #0000001A;
}
.about_img_box:hover img {
    transform: scale(1.04);
}
.about_img_label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #0A1628E5;
    padding: 15px 20px 15px 20px;
    border-radius: 10px;
    border-top: 1px solid #C9941A33;
}
.about_img_label span {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9941A;
    font-weight: 400;
    margin-bottom: 4px;
}
.about_img_label p {
    font-weight: 400;
    font-size: 16.8px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #F5F0E8;
    margin-bottom: 0px;
}
.about_content{
    padding: 0px 30px;
}
.about_content p{
    font-weight: 400;
    font-size: 16px;
    line-height: 30.24px;
    letter-spacing: 0px;
    color: #8A9BB5;
    margin-bottom: 16px;
}
.about_content p span{
    color: #C9941A;
}
.about_content p strong {
    color: #FFFFFF;
    font-weight: 400;
}
.about_content h6{
    font-weight: 400;
    font-style: Italic;
    font-size: 16px;
    color: #C9941A;
    line-height: 24px;
    letter-spacing: 0px;
    margin-bottom: 0;
    padding-left: 80px;
    position: relative;
}
.about_content h6::before{
    content: "";
    background: #C9941A;
    height: 1px;
    width: 55px;
    position: absolute;
    left: 0;
    top: 10px;
}
.about_cards_main{
    margin-top: 50px;
}
.value_card {
    background: #0A162899;
    border: 1px solid #C9941A1A;
    padding: 20px 20px;
    transition: border-color 0.3s, transform 0.3s;
    border-radius: 14px;
    width: 100%;
    max-width: 450px;
    margin: auto;
    margin-top: 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.value_card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    transform: translateY(-4px);
}
.value_card h4 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 16.8px;
    line-height: 25.2px;
    letter-spacing: 0px;
    color: #F5F0E8;
    margin-bottom: 0px;
    margin-top: 16px;
}
.value_card p {
    font-size: 15px;
    color: #8A9BB5;
    line-height: 23.04px;
    margin-bottom: 0;
    padding-top: 6px;
}

.battlefield_section {
    padding: 90px 0;
    background-image: url(../../assets/imgs/battle1.svg);
    height: auto;
    min-height: 600px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.battlefield_text_main{
    width: 100%;
    max-width: 900px;
    margin: auto;
    text-align: center;
}
.battlefield_stars {
    position: relative;
    color: #C9A84C;
    font-size: 18px;
    letter-spacing: 8px;
    max-width: 250px;
    margin: auto;
    text-align: center;
}
.battlefield_stars::before{
    content: "";
    background: #C9941A;
    height: 1px;
    width: 55px;
    position: absolute;
    left: 0;
    top: 13px;
}
.battlefield_stars::after{
    content: "";
    background: #C9941A;
    height: 1px;
    width: 55px;
    position: absolute;
    right: 0;
    top: 13px;
}
.battlefield_text_main h2 {
    font-family: "Playfair Display", serif;
    color: #F5F0E8;
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 42px;
    line-height: 58.24px;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 20px;
}
.battlefield_text_main h6 {
    font-weight: 400;
    font-size: 17.6px;
    line-height: 31.68px;
    letter-spacing: 0px;
    text-align: center;
    color: #8A9BB5;
    padding: 15px 80px;
}
.battlefield_text_main h5 {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 19px;
    margin-bottom: 0px;
    color: #C9941A;
}
.battlefield_pills {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.battlefield_pills span {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-align: center;
    text-transform: uppercase;
    color: #F5F0E8B2;
    position: relative;
    padding-left: 15px;
}
.battlefield_pills span::before{
    background: #C9941A;
    height: 5px;
    width: 5px;
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    border-radius: 50%;
}


/* ==================== SECTION THREE — MISSION ==================== */
.mission_section {
    padding: 90px 0;
    background-image: url(../../assets/imgs/mission.jpg);
    height: auto;
    min-height: 600px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mission_left_main{
    padding: 10px 25px;
}
.mission_text_main h6{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #C9941A;
}
.mission_text_main h1{
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0px;
    color: #F5F0E8;
}
.mission_text_main h1 span{
    color: #C9941A;
}
.mission_text_main p {
    font-weight: 400;
    font-size: 16.8px;
    line-height: 30.24px;
    letter-spacing: 0px;
    color: #8A9BB5;
    margin-bottom: 0;
    margin-top: 20px;
}
.mission_box {
    border-left: 1.5px solid #C9941A;
    padding: 5px 15px;
    margin-top: 25px;
    max-width: 270px;
}
.mission_box h4 {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0px;
}
.mission_box p {
    font-size: 14px;
    color: #8A9BB5;
    margin-bottom: 0;
    margin-top: 6px;
}
.mission_quote_card {
    background: #111D32CC;
    border: 1px solid #C9941A33;
    padding: 32px 28px;
    position: relative;
    border-radius: 12px;
}
.mission_quote_mark {
    font-family: "Playfair Display", serif;
    background: #C9941A;
    height: 45px;
    width: 45px;
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 52px;
    color: #0A1628;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mission_quote_card h6 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: Italic;
    font-size: 20.8px;
    line-height: 35.36px;
    letter-spacing: 0px;
    color: #F5F0E8;
    margin-bottom: 0;
}
.mission_author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.mission_author_line {
    display: block;
    width: 48px;
    height: 1px;
    background: #C9941A;
    flex-shrink: 0;
}
.mission_author strong {
    display: block;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #FFFFFF;
}
.mission_author p {
    font-size: 14px;
    color: #C9941A;
    margin-bottom: 0;
}
.mission_stat{
    background: #111D3299;
    border: 0.77px solid #C9941A1A;
    border-radius: 12px;
    height: auto;
    min-height: 95px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 35px;
}
.mission_stat h3 {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 600;
    color: #C9941A;
    margin-bottom: 0px;
}
.mission_stat p {
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    color: #8A9BB5;
    margin-bottom: 0px;
}


/* ==================== SECTION FOUR — STRATEGIES ==================== */
.strategies_section {
    padding: 100px 0;
    background: #0A1628;
}
.strategies_section .section_header h2 span {
    color: #C9A84C;
}
.strategy_card_body {
    background: #111D32;
    border: 1px solid #C9941A1A;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 14px;
    margin-top: 40px;
}
.strategy_card_body:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.45);
}
.strategy_img_box {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.strategy_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
}
.strategy_card_body:hover .strategy_img_box img {
    transform: scale(1.06);
}
.roi_tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #C9941A;
    color: #0A1628;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
}
.strategy_card_txt {
    padding: 20px 15px;
    min-height: 200px;
}
.strategy_card_txt_inner{
    display: flex;
    align-items: center;
    gap: 10px;
}
.strategy_card_txt_inner img {
    height: 40px;
    width: 40px;
}
.strategy_card_txt_inner h3 {
    font-family: "Playfair Display", serif;
    font-size: 18.4px;
    line-height: 27.6px;
    letter-spacing: 0px;
    color: #F5F0E8;
    margin-bottom: 0px;
}
.strategy_card_txt p {
    padding-top: 12px;
    font-size: 16px;
    color: #8A9BB5;
    margin-bottom: 0px;
}
.strategy_card_txt a {
    color: #C9941A;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s;
    margin-top: 12px;
    text-decoration: none;
}
.strategy_card_txt a:hover {
    gap: 12px;
    color: #E0B84A;
}


/* ==================== SECTION FIVE — HOW IT WORKS ==================== */
.how_works_section {
    padding: 100px 0;
    background: #0D1E38;
}
.step_card_body_div {
    background: transparent;
    padding: 30px 18px 24px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    margin-top: 30px;
}
.step_card_body_div::after{
    content: url(../../assets/imgs/arrow.svg);
    position: absolute;
    top: 40px;
    right: 0;
}
.step_card_body_div.arrow_none::after{
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
}
.step_card_body_div:hover {
    border-color: rgba(201, 168, 76, 0.45);
    transform: translateY(-5px);
}
.step_card_body_div h4 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #F5F0E8;
    margin-bottom: 0px;
    margin-top: 15px;
}
.step_card_body_div p {
    font-weight: 400;
    font-size: 14px;
    line-height: 21.76px;
    letter-spacing: 0px;
    text-align: center;
    color: #8A9BB5;
    margin-top: 15px;
}


/* ==================== COUNTER BAR ==================== */
.counter_bar {
    background: #C9941A;
    padding: 56px 0;
}
.counter_item h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 43.2px;
    line-height: 64.81px;
    letter-spacing: 0px;
    text-align: center;
    color: #0A1628;
    margin-bottom: 8px;
}
.counter_item p {
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19.2px;
    letter-spacing: 1.92px;
    text-align: center;
    text-transform: uppercase;
    color: #0A1628B2;
    margin-bottom: 0;
}


/* ==================== SECTION SIX — ADVANTAGE ==================== */
.advantage_section {
    padding: 100px 0;
    background: #132035;
}
.advantage_img_box {
    position: relative;
    overflow: hidden;
}
.advantage_img_box img {
    width: 100%;
    transition: transform 0.5s ease;
    margin-top: 15px;
}
.advantage_img_box:hover img {
    transform: scale(1.04);
}
.advantage_img_box p {
    font-family: "Playfair Display", serif;
    padding: 10px 14px;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    color: #F5F0E8;
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: none;
}
.adv_card_body_div {
    background: #111D3299;
    border: 1px solid #C9941A14;
    padding: 18px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color 0.3s, transform 0.3s;
    border-radius: 14px;
    margin-top: 17px;
}
.adv_card_body_div:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
}
.adv_card_body_div img {
    font-size: 20px;
    color: #C9A84C;
    flex-shrink: 0;
    margin-top: 2px;
}
.adv_card_body_div h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 22.8px;
    letter-spacing: 0px;
    color: #F5F0E8;
}
.adv_card_body_div p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20.4px;
    letter-spacing: 0px;
    color: #8A9BB5;
    margin-bottom: 0;
}


/* ==================== SECTION SEVEN — PORTFOLIO ==================== */
.portfolio_section {
    padding: 100px 0;
    background: #0D1B2E;
}
.portfolio_section .section_header h2 span {
    color: #C9A84C;
}
.portfolio_card_body_div {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 14px;
}
.portfolio_card_body_div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    display: block;
    border-radius: 14px;
}
.portfolio_card_body_div:hover img {
    transform: scale(1.08);
    filter: brightness(0.45);
}
.portfolio_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px;
    background: linear-gradient(0deg, #0A1628 0%, rgba(10, 22, 40, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}
.portfolio_overlay span {
    font-weight: 400;
    font-size: 12px;
    line-height: 16.8px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: #C9941A;
    margin-bottom: 4px;
}
.portfolio_overlay h4 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 17.6px;
    line-height: 26.4px;
    letter-spacing: 0px;
    color: #F5F0E8;

}
.portfolio_card_body_div:hover .portfolio_overlay h4 {
    color: #C9A84C;
}


/* ==================== SECTION EIGHT — TESTIMONIALS ==================== */
.testimonials_section {
    padding: 100px 0;
    background: #132035;
}
.testimonial_card_body_div {
    background: #0D1B2E;
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 26px 22px;
    position: relative;
    transition: border-color 0.3s;
    margin-top: 25px;
    border-radius: 12px;
}
.testimonial_card_body_div:hover {
    border-color: rgba(201, 168, 76, 0.4);
}
.t_stars {
    color: #C9941A;
    font-size: 18px;
    letter-spacing: 3px;
}
.t_quote {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: "Playfair Display", serif;
    font-size: 52px;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
}
.testimonial_card_body_div p {
    margin-top: 12px;
    margin-bottom: 0;
    color: #8A9BB5;
    font-weight: 400;
    font-style: Italic;
    font-size: 15px;
    line-height: 25.02px;
    letter-spacing: 0px;
}
.t_author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}
.t_avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #C9941A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #C9941A;
    flex-shrink: 0;
}
.t_author strong {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #F5F0E8;
}
.t_author span {
    font-size: 13px;
    color: #C9941A;
}
.testimonial_feature {
    background: linear-gradient(180deg, #111D32 0%, #0D1E38 50%, #111D32 100%);
    border-top: 1px solid #C9941A26;
    padding: 34px 30px;
    margin-top: 40px;
    border-radius: 16px;
}
.t_feature_img img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C9A84C;
    margin: 0 auto;
}
.testimonial_feature_text_div h6{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: Italic;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0px;
    margin-bottom: 0;
    color: #F5F0E8;
    margin-top: 12px;
}
.t_feature_author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.testimonial_feature_text_div span {
    display: inline-block;
    width: 50px;
    height: 1px;
    background: #C9941A;
    flex-shrink: 0;
}
.t_feature_author p {
    font-weight: 400;
    font-size: 15.2px;
    line-height: 22.8px;
    letter-spacing: 0px;
    color: #8A9BB5;
}
.t_feature_author strong {
    color: #C9941A;
    font-weight: 500;
    margin-right: 10px;
}


/* ==================== SECTION NINE — FAQ ==================== */
.faq_section {
    padding: 100px 0;
    background: #0A1628;
}
.faqs_main_div{
    width: 100%;
    max-width: 830px;
    margin: auto;
    margin-top: 40px;
}
.faq_section .section_header h2 span {
    color: #C9A84C;
}
.faq_accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faqs_main_div .accordion-item {
    background: #111D32 !important;
    border: none !important;
    border-radius: 0 !important;
    border-radius: 12px !important;
}
.faqs_main_div .accordion-button {
    background: #111D32 !important;
    color: #F5F0E8 !important;
    font-family: "Inter", sans-serif !important;
    padding: 18px 22px !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    border: 1px solid #C9941A1A !important;
}
.faqs_main_div .accordion-body p {
    font-weight: 400;
    font-size: 15.2px;
    line-height: 25.84px;
    letter-spacing: 0px;
    color: #8A9BB5;
    line-height: 1.75;
    margin-bottom: 0;
}
.accordion-button::after{
    background-image: url(../../assets/imgs/plus.svg);
    background-size: 2rem;
    height: 2rem;
    width: 2rem;
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../../assets/imgs/minus.svg);
}
/* ==================== SECTION TEN — CONTACT ==================== */
.contact_section {
    padding: 100px 0;
    background: #0D1E38;
}
.contact_info_image_box{
    margin-top: 30px;
    background: #0A1628;
    border-top: 0.77px solid #C9941A26;
    border-radius: 12px;
}
.contact_info_box_txt{
    padding: 12px 16px;
}
.contact_info_box_txt h3 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 20.8px;
    line-height: 31.2px;
    letter-spacing: 0px;
    margin-bottom: 4px;
    color: #F5F0E8;
}
.contact_info_box_txt p {
    font-size: 15px;
    color: #C9941A;
    font-family: "Inter", sans-serif;
    margin-bottom: 0px;
}
.contact_img_box {
    overflow: hidden;
}
.contact_img_box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border: 2px solid rgba(201, 168, 76, 0.25);
    filter: brightness(0.85);
    transition: transform 0.5s ease;
    border-radius: 12px 12px 0px 0px;
}
.contact_img_box:hover img {
    transform: scale(1.04);
}
.contact_info_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
}
.contact_info_item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact_info_item span {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8A9BB5;
}
.contact_info_item p {
    font-size: 16px;
    color: #C9941A;
    margin-bottom: 0;
}
.contact_form {
    background: #0A1628;
    border: 1px solid #C9941A26;
    padding: 18px 30px 30px 30px;
    border-radius: 12px;
    margin-top: 30px;
}
.cont_form_input{
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cont_form_input label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8A9BB5;
}
.cont_form_input label span {
    color: #C9A84C;
}
.cont_form_input input,
.cont_form_input textarea,
.cont_form_input select {
    width: 100%;
    background-color: #111D32;
    border: 0.77px solid #C9941A1A;
    color: #FFFFFF;
    padding: 12px 16px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 8px;
    appearance: none;
    margin-bottom: 0;
}
.cont_form_input input:focus,
.contactcont_form_input_form textarea:focus,
.cont_form_input select:focus {
    border-color: #C9A84C;
}
.cont_form_input input::placeholder,
.cont_form_input textarea::placeholder {
    color: #8A9BB580;
    font-size: 16px;
}
.cont_form_input textarea {
    resize: vertical;
    min-height: 130px;
}
.cont_form_input select option {
    background-color: #0D1B2E;
    color: #FFFFFF;
}
.cont_form_input .btn_primary {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}
.form_note {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #8A9BB599;
    margin-top: 22px;
}


/* ==================== NEWSLETTER ==================== */
.newsletter_section {
    padding: 80px 0;
    background: #0A1628;
}
.newsletter_box {
    background: linear-gradient(180deg, #111D32 0%, #0D1E38 100%);
    border: #C9941A26;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
}
.newsletter_box h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: #F5F0E8;
    margin-bottom: 0px;
    margin-top: 20px;
}
.newsletter_box h3 span {
    color: #C9941A;
}
.newsletter_box .nl_p1 {
    font-size: 14px;
    color: #8A9BB5;
    line-height: 1.75;
    margin-bottom: 0px;
    margin-top: 16px;
}
.newsletter_form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    margin-top: 20px;
    gap: 10px;
}
.newsletter_form input {
    flex: 1;
    background: #0A1628;
    border: 1px solid #C9941A26;
    color: #8A9BB580;
    padding: 12px 18px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 10px;
}
.newsletter_form input:focus {
    border-color: #C9A84C;
}
.newsletter_form input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}
.newsletter_form button {
    background: #C9941A;
    color: #0A1628;
    border: none;
    padding: 12px 18px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
    border-radius: 10px;
}
.newsletter_form button:hover {
    background: #E0B84A;
}
.newsletter_note {
    font-size: 16px;
    color: #8A9BB580;
    margin-top: 16px !important;
}


/* ==================== CTA FINAL ==================== */
.cta_final_section {
    background: #C9941A;
    padding: 80px 0;
}
.cta_final_section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 57.6px;
    letter-spacing: 0px;
    text-align: center;
    color: #0A1628;
    margin-bottom: 14px;
}
.cta_final_section p {
    font-size: 18px;
    color: #0A1628CC;
    max-width: 580px;
    margin: 0 auto 32px;
    margin-top: 16px;
}
.cta_btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ==================== FOOTER ==================== */
.footer_section {
    background: #0B1940;
    padding: 60px 0 0;
}
.footer_logo {
    display: block;
    margin-bottom: 16px;
}
.footer_text2_inner1 p {
    font-size: 15px;
    color: #8A9BB5;
    margin-bottom: 0px;
    margin-top: 0;
}
.footer_social_logos {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer_links_div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.footer_links_div h5 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9941A;
    margin-bottom: 14px;
}
.footer_links_div a {
    font-weight: 400;
    font-size: 15px;
    line-height: 21.6px;
    letter-spacing: 0px;
    color: #8A9BB5;
    text-decoration: none;
    display: inline-block;
    max-width: max-content;
    transition: color 0.3s;
}
.footer_links_div a:hover {
    color: #C9A84C;
}
.footer_social a{
    display: flex;
    gap: 10px;
}
.footer_last_txt {
    border-top: 1px solid #C9941A1A;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer_last_txt p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #5A7A9A;
    margin-bottom: 0;
}
.footer_last_txt span {
    color: rgba(201, 168, 76, 0.3);
}
.footer_links2{
    display: flex;
    gap: 16px;
}
.footer_links2 a{
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0px;
    color: #8A9BB566;
    text-decoration: none
}
.footer_txt_disc{
    margin-top: 50px;
    border-top: 1px solid #C9941A1A;
    font-weight: 400;
    font-size: 14px;
    line-height: 20.4px;
    letter-spacing: 0px;
    text-align: center;
    color: #8A9BB580;
    margin-bottom: 0;
    padding: 50px 10px 30px 10px;
}
.portfolio_last_img{
    text-align: center;
    width: 100%;
    max-width: 450px;
    margin: auto;
    margin-top: 70px;
}
.portfolio_last_img img{
    width: 100%;
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero_content h1 { font-size: 50px; }
}
@media (max-width: 992px) {
    .nav_btns { margin-top: 16px; }
    .header_section .navbar-nav { align-items: flex-start; margin-top: 14px; }
    .hero_section { padding: 120px 0 80px; }
    .trust_dot { display: none; }
    .battlefield_section h2 { font-size: 34px; }
    .mission_quote_card{
        margin-top: 30px;
    }
    .about_content{
        padding: 20px 0px;
    }
    .strategy_card_txt {
        padding: 20px 15px;
        min-height: 250px;
    }
    .counter_item{
        margin-top: 25px;
    }
    .testimonial_card_body_div {
        background: #0D1B2E;
        border: 1px solid rgba(201, 168, 76, 0.12);
        padding: 20px 15px;
    }
}
@media (max-width: 768px) {
    .hero_content h1 { font-size: 38px; }
    .hero_stats { gap: 20px; }
    .hero_btns { flex-direction: column; align-items: flex-start; }
    .newsletter_form { flex-direction: column; }
    .newsletter_form input { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
    .section_header h2 { font-size: 32px; }
    .contact_form { padding: 24px 18px; }
    .testimonial_feature { padding: 24px 18px; }
    .cta_btns { flex-direction: column; align-items: center; }
}
@media (max-width: 576px) {
    .battlefield_pills { gap: 8px; }
    .newsletter_box { padding: 30px 20px; }
    .mission_quote_card { padding: 22px 18px; }
    .mission_left_main{
        padding: 10px 10px;
    }
    .battlefield_text_main h6{
        padding: 15px 10px;
    }
    .hero_content h1 {
        font-size: 32px;
    }
    .hero_content p {
        font-size: 16px;
        color: #8A9BB5;
        margin-bottom: 14px;
    }
    .hero_btns button{
        min-width: 220px;
    }
    .my_title_div h1 {
        font-weight: 500;
        font-size: 28px;
        line-height: 42px;
    }
    .battlefield_section h2 {
        font-size: 27px;
        line-height: 36px;
    }
    .mission_text_main h1 {
        font-family: "Playfair Display", serif;
        font-weight: 500;
        font-size: 28px;
        line-height: 42px;
    }
    .cta_final_section h2 {
        font-family: "Playfair Display", serif;
        font-weight: 500;
        font-size: 32px;
        line-height: 42.6px;
    }
    .mission_quote_card h6 {
        font-family: "Playfair Display", serif;
        font-weight: 400;
        font-style: Italic;
        font-size: 16.8px;
    }
    .counter_item{
        margin-top: 25px;
    }
    .step_card_body_div::after {
        position: absolute;
        top: unset;
        bottom: 10px;
        right: 0;
        left: 0;
        rotate: 90deg;
    }
}