/* ==========================================================================
   1. BASE & RESET STYLES
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
select,
input,
option,
textarea,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-size: 14.4px;
    margin: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* remember to define focus styles! */
:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

a {
    color: var(--secondary);
}

a:hover,
a:focus {
    color: var(--primary);
    text-decoration: none;
}

/* End Clearfix */

*,
a,
button,
.btn {
    outline: none;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

:host {
    display: block;
}



/* ==========================================================================
   2. TYPOGRAPHY & FONTS
   ========================================================================== */

/* Inter Font Family */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.ttf');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.ttf');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.ttf');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.ttf');
    font-weight: 800;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.ttf');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}


/* N27 Font Family */
@font-face {
    font-family: 'N27';
    src: url('../fonts/N27-Regular.ttf');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}


:root {
    --primary: #233870;
    --secondary: #1EEBB4;
    --text-color: #C2C0BD;
    --white-color: #FFFFFF;
    --Inter: 'Inter', sans-serif;
    --N27: 'N27', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #FBFBFB;
}

/* sup,
sub {
    font-size: 10px;
    line-height: 0px;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -5px;
}

sub {
    top: 2px;
} */

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

/* ==========================================================================
   3. SHARED COMPONENTS (Buttons, Forms, Utilities)
   ========================================================================== */

/* Global Utilities */
.cursor-pointer {
    cursor: pointer;
    user-select: none;
}

.require {
    color: #FF133E !important;
    padding-left: 2px;
}

.primary-txt {
    color: var(--primary) !important;
}


/* Modern Button Styles */
.btn {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 5px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn i {
    font-size: 18px;
    color: var(--secondary);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Horizontal Overlap Effect Elements (Left & Right Shutters) */
.btn:before,
.btn:after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn:before {
    left: 0;
}

.btn:after {
    right: 0;
}

.btn:hover:before,
.btn:hover:after {
    width: 51%;
    /* Overlap slightly in the middle */
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}


/* --- Button Variants --- */

/* Primary Button (Blue bg -> White fill) */
.btn.btn-primary {
    background-color: var(--primary);
    color: var(--white-color);
    border-color: var(--primary);
}

.btn.btn-primary:before,
.btn.btn-primary:after {
    background-color: var(--white-color);
}

.btn.btn-primary:hover {
    color: var(--primary);
    border-color: var(--white-color);
}

.btn.btn-primary:hover i {
    color: var(--primary);
    transform: translateX(3px);
}

/* White Button (White bg -> Blue fill) */
.btn.btn-white {
    background-color: var(--white-color);
    color: var(--primary);
    border-color: var(--white-color);
}

.btn.btn-white:before,
.btn.btn-white:after {
    background-color: var(--primary);
}

.btn.btn-white:hover {
    color: var(--white-color);
}

.btn.btn-white:hover i {
    color: var(--white-color);
    transform: translateX(3px);
}

/* Border Button (Transparent -> Blue fill) */
.btn.btn-border {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn.btn-border:before,
.btn.btn-border:after {
    background-color: var(--primary);
}

.btn.btn-border:hover {
    color: var(--white-color);
    border-color: var(--primary);
}

/* White Outline Button (Transparent -> White fill) */
.btn-outline-white {
    color: var(--white-color);
    border-color: var(--white-color);
    background-color: transparent;
    width: fit-content;
}

.btn-outline-white:before,
.btn-outline-white:after {
    background-color: var(--white-color);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    color: #121D3A;
    border-color: var(--white-color);
}

.btn-outline-white:hover i,
.btn-outline-white:focus i {
    transform: translateX(3px);
    color: #121D3A;
}



.form-group {
    margin-bottom: 20px;
}

.form-label {
    width: 100%;
    display: inline-block;
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.form-control,
.form-select {
    color: #1F1F1F;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    padding: 10px 15px;
    border-radius: 0;
    height: 40px;
    box-shadow: none !important;
    background-color: transparent;
    border: 1px solid #DADDE5;
}

.form-control::placeholder {
    color: #878499;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 10px rgba(30, 235, 180, 0.1);
}

textarea {
    height: auto !important;
}


input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    background-color: var(--primary);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='white' d='M6.707 6l4.647-4.646a.5.5 0 0 0-.708-.708L6 5.293 1.354.646a.5.5 0 1 0-.708.708L5.293 6 .646 10.646a.5.5 0 0 0 .708.708L6 6.707l4.646 4.647a.5.5 0 0 0 .708-.708z'/></svg>") no-repeat center;
    mask-size: contain;
    cursor: pointer;
    transition: background-color 0.2s ease;
}


input:read-only {
    background: rgb(235 235 235);
}

input:read-only:focus {
    background: rgb(235 235 235);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    background-color: white !important;
}

input:-moz-autofill {
    -moz-box-shadow: 0 0 0px 1000px white inset !important;
    background-color: white !important;
}

input:-webkit-autofill {
    background-color: white !important;
}

::-webkit-input-placeholder {
    color: #4C5A67;
    opacity: 1;
    letter-spacing: 0.02em;
}

::-moz-placeholder {
    color: #4C5A67;
    opacity: 1;
    letter-spacing: 0.02em;
}

:-ms-input-placeholder {
    color: #4C5A67;
    opacity: 1;
    letter-spacing: 0.02em;
}

:-moz-placeholder {
    color: #4C5A67;
    opacity: 1;
    letter-spacing: 0.02em;
}



p {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}


* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: transparent;
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

*:hover {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

*:hover::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*:hover::-webkit-scrollbar-track {
    background-color: transparent;
}

*:hover::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}

*:hover::-webkit-scrollbar-track,
*:hover::-webkit-scrollbar-thumb {
    border-radius: 10px;
}



.p-0 {
    padding: 0 !important;
}

.ptb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.plr-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.p-5 {
    padding: 5px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.ptb-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.plr-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}


.p-10 {
    padding: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.ptb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.plr-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}


.p-15 {
    padding: 15px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.ptb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.plr-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.p-20 {
    padding: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.ptb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.plr-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}


.p-25 {
    padding: 25px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.ptb-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.plr-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}


.p-30 {
    padding: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.ptb-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.plr-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}


.p-35 {
    padding: 35px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.ptb-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.plr-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}


.p-40 {
    padding: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.ptb-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.plr-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}


.p-45 {
    padding: 45px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.ptb-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.plr-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}


.p-50 {
    padding: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.plr-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}


.pt-55 {
    padding-top: 55px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.ptb-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.plr-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
}


.pt-60 {
    padding-top: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.ptb-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.plr-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}


.pt-65 {
    padding-top: 65px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pl-65 {
    padding-left: 65px !important;
}

.pr-65 {
    padding-right: 65px !important;
}

.ptb-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}

.plr-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
}


.pt-70 {
    padding-top: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.ptb-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.plr-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}


.pt-75 {
    padding-top: 75px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pl-75 {
    padding-left: 75px !important;
}

.pr-75 {
    padding-right: 75px !important;
}

.ptb-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

.plr-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
}


.pt-80 {
    padding-top: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.ptb-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.plr-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}


.pt-85 {
    padding-top: 85px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pl-85 {
    padding-left: 85px !important;
}

.pr-85 {
    padding-right: 85px !important;
}

.ptb-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}

.plr-85 {
    padding-left: 85px !important;
    padding-right: 85px !important;
}


.pt-90 {
    padding-top: 90px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.ptb-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.plr-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
}


.pt-95 {
    padding-top: 95px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pl-95 {
    padding-left: 95px !important;
}

.pr-95 {
    padding-right: 95px !important;
}

.ptb-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
}

.plr-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
}


.pt-100 {
    padding-top: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.ptb-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}



/* Margin */

.m-0 {
    margin: 0px !important;
}

.mtb-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mlr-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mtb-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.mlr-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}


.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mtb-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mlr-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}


.mt-15 {
    margin-top: 15px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mtb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mlr-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}


.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mtb-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mlr-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}


.mt-25 {
    margin-top: 25px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mtb-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mlr-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}


.mt-30 {
    margin-top: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mtb-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mlr-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}


.mt-35 {
    margin-top: 35px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mtb-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.mlr-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}


.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mtb-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.mlr-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}


.mt-45 {
    margin-top: 45px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mtb-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
}

.mlr-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
}


.mt-50 {
    margin-top: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mtb-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.mlr-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}


.mt-55 {
    margin-top: 55px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.mtb-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}

.mlr-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
}


.mt-60 {
    margin-top: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mtb-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.mlr-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}


.mt-70 {
    margin-top: 70px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mtb-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}


.mt-75 {
    margin-top: 75px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mtb-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
}


.mt-80 {
    margin-top: 80px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mtb-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}


.mt-85 {
    margin-top: 85px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mtb-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
}


.mt-90 {
    margin-top: 90px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mtb-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}


.mt-100 {
    margin-top: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mtb-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.mtb-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}



.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 10px 15px;
}

.dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
}


.border-top {
    border-top: none !important;
    position: relative;
}

.border-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(235, 235, 235, 0.2), rgba(235, 235, 235, 1), rgba(235, 235, 235, 0.2));
}

.border-bottom {
    border-bottom: none !important;
    position: relative;
}

.border-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(235, 235, 235, 0.2), rgba(235, 235, 235, 1), rgba(235, 235, 235, 0.2));
}

.border-start {
    border-left: none !important;
    position: relative;
}

.border-start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(235, 235, 235, 0.2), rgba(235, 235, 235, 1), rgba(235, 235, 235, 0.2));
}

.border-end {
    border-right: none !important;
    position: relative;
}

.border-end::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(235, 235, 235, 0.2), rgba(235, 235, 235, 1), rgba(235, 235, 235, 0.2));
}


.section-title {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 50px;
}

.section-title .main-title {
    font-family: var(--N27);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--primary);
    margin-bottom: 0;
}

.section-title .sub-title {
    font-size: 18px;
    font-weight: 400;
    color: #2B2E34;
    letter-spacing: 0.02em;
    max-width: 65%;
    margin: 0 auto;
    line-height: 1.8;
    margin-top: 25px;
}

/* White Color Theme for Section Titles */
.section-title.white-color .main-title,
.section-title.text-white .main-title {
    color: var(--white-color);
}

.section-title.white-color .sub-title,
.section-title.text-white .sub-title {
    color: #B2BACC;
}

/* Responsive adjustments using specific breakpoints */
@media (max-width: 1680.98px) {
    .section-title {
        margin-bottom: 45px;
    }
}

@media (max-width: 1440.98px) {
    .section-title .main-title {
        font-size: 30px;
    }
}

@media (max-width: 1199.98px) {
    .section-title .sub-title {
        max-width: 70%;
    }
}

@media (max-width: 991.98px) {
    .section-title {
        margin-bottom: 40px;
    }

    .section-title .main-title {
        font-size: 28px;
    }

    section.ptb-50 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    section.pt-50 {
        padding-top: 30px !important;
    }

    section.pb-50 {
        padding-bottom: 30px !important;
    }

    footer.pt-50 {
        padding-top: 30px !important;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        margin-bottom: 30px;
    }

    .section-title .sub-title {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }

    .section-title .main-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .section-title .main-title {
        font-size: 26px;
    }
}

@media (max-width: 480.98px) {
    .section-title .main-title {
        font-size: 24px;
    }
}

@media (max-width: 360.98px) {
    .section-title .main-title {
        font-size: 22px;
    }
}



.custom5column {
    display: flex;
    flex-wrap: wrap;
}

.custom5column>div {
    flex: 0 0 20%;
    max-width: 20%;
    box-sizing: border-box;
}



/* ==========================================================================
   4. LAYOUT COMPONENTS (Header & Navigation)
   ========================================================================== */

/* Navbar Styling */
.navbar-nav .nav-link {
    color: var(--white-color) !important;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: var(--N27);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary) !important;
    text-shadow: 0 0 10px var(--secondary);
}

.main-header-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
    background-color: #121D3A;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Homepage Override / JS Triggered Transparency */
.ag-header-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
}

.sticky-header {
    background-color: #121D3A !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease;
}

.ag-main-with-padding {
    padding-top: 80px;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky-header .nav-link {
    color: var(--white-color) !important;
}

.header-container {
    width: 100%;
    padding-right: 48px;
    padding-left: 48px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.header-nav-list {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    gap: 24px;
}

.main-header-nav .btn {
    padding: 10px 20px;
}

@media (min-width: 992px) {
    .header-nav-list {
        gap: 20px;
    }
}

.header-auth-buttons {
    display: flex;
    gap: 16px;
}

/* Ensure auth buttons are hidden on mobile to match d-lg-flex */
@media (max-width: 991.98px) {
    .main-header-nav .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        order: 1;
        margin-right: auto;
    }

    .header-auth-buttons {
        order: 2;
        display: flex;
        gap: 8px;
        margin-right: 15px;
    }

    .header-auth-buttons .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .navbar-toggler {
        order: 3;
    }
}

/* ==========================================================================
   5. PAGE: HOME SECTIONS
   ========================================================================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.hero-content {
    z-index: 10;
    position: relative;
    width: 100%;
    padding-left: 100px;
    padding-right: 48px;
}

.hero-caption {
    width: 100%;
    max-width: 66.666667%;
}

/* Typography styles already present, ensuring consistency */
.hero-section h1 {
    font-weight: 800;
    color: #F2F1EF;
    line-height: 1.3;
    font-size: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-section p {
    color: var(--white-color);
    line-height: 1.8;
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 0;
    letter-spacing: 0.4px;
    text-align: justify;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
    z-index: 2;
}


/* Glow/Beam Effect to match the reference image */

.glow-effect {
    position: absolute;
    top: 60%;
    left: 48%;
    width: 150px;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 100, 255, 0) 0%, rgba(0, 80, 255, 0.6) 40%, rgba(0, 150, 255, 0.8) 60%, rgba(255, 255, 255, 0.4) 100%);
    filter: blur(40px);
    transform: translate(-50%, -50%) rotate(25deg);
    border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

/* Specific curve/streak mimic detailed */
.glow-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 250px;
    background: linear-gradient(to bottom, transparent, #00d4ff, var(--white-color));
    transform: translate(-50%, -50%) rotate(-5deg);
    filter: blur(25px);
    opacity: 0.9;
}

@media (max-width: 1280.98px) {
    .navbar-nav .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        font-size: 12px;
        white-space: nowrap;
        padding: 5px 5px !important;
    }

    .main-header-nav .btn {
        font-size: 12px;
        line-height: 12px;
        padding: 10px 15px;
    }
}


@media (max-width: 991.98px) {
    .main-header-nav {
        padding-top: 15px;
        padding-bottom: 15px;
        background-color: #121D3A;
    }

    .main-header-nav .container-fluid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        order: 2;
        margin-right: auto;
    }

    .header-auth-buttons {
        order: 3;
        display: flex;
        gap: 8px;
        margin-right: 15px;
        margin-left: auto;
    }

    .header-auth-buttons .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .navbar-toggler {
        order: 4;
        border: none;
        padding: 0px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Custom Premium Mobile Menu Icon */
    .navbar-toggler-icon {
        background-image: none !important;
        position: relative;
        width: 24px;
        height: 18px;
        display: block;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: var(--white-color);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .navbar-toggler-icon::before {
        top: 0px;
        box-shadow: 0 8px 0 var(--white-color);
    }

    .navbar-toggler-icon::after {
        bottom: 0px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 8px;
        box-shadow: none;
        transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 8px;
        transform: rotate(-45deg);
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        order: 1;
        width: 100%;
        background-color: #121D3A;
        padding: 20px;
        border-radius: 0px 0px 15px 15px;
        margin-top: 0px;
        margin-bottom: 25px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    }

    .header-nav-list {
        align-items: flex-start;
        gap: 15px !important;
        padding: 0px;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        font-weight: 500;
        padding: 0 !important;
        color: var(--white-color) !important;
        font-family: var(--N27);
        text-transform: capitalize;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link.active {
        color: var(--secondary) !important;
        text-shadow: 0 0 15px rgba(30, 235, 180, 0.4);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        padding-bottom: 0px !important;
    }
}


/* Diamond Types Section */
.diamond-header-strip {
    background-color: #121D3A;
    text-align: center;
    padding: 72px 0;
    color: var(--white-color);
}

.diamond-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.diamond-header-strip h2 {
    font-size: 44px;
    font-weight: 400;
    font-family: var(--N27);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.diamond-img-wrapper {
    position: relative;
    height: 100%;
}

.diamond-img {
    width: 100%;
    object-fit: cover;
    min-height: 100%;
    display: block;
}

.diamond-content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diamond-content-block.light-theme {
    background-color: var(--white-color);
    color: #212529;
}

.diamond-content-block.dark-theme {
    background-color: #121D3A;
    color: var(--white-color);
}

.diamond-info-group {
    margin-bottom: 30px;
}

.diamond-list {
    list-style-type: none;
    padding-left: 0;
    font-size: 15px;
    padding-left: 30px;
}

.diamond-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.diamond-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: inherit;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    top: 2px;
}

/* Typography map */
.diamond-title {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 25px;
    font-family: var(--N27);
}

.light-theme .diamond-title,
.light-theme .diamond-subtitle {
    color: #121D3A;
}

/* Bullet color adjustment for themes */
.light-theme .diamond-list li::before {
    color: var(--primary);
}

.dark-theme .diamond-list li::before {
    color: var(--white-color);
}


.dark-theme .diamond-title {
    color: var(--white-color);
}

.diamond-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 0.2px;
    color: #121D3A;
}

.dark-theme .diamond-subtitle {
    color: var(--white-color);
}

.dark-theme .diamond-text,
.dark-theme .diamond-list {
    color: var(--text-color);
}

.diamond-text {
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    letter-spacing: 0.2px;
    margin-bottom: 25px;
}

.diamond-text:last-child {
    margin-bottom: 0;
}

.light-theme .diamond-text,
.light-theme .diamond-list {
    color: #2B2E34;
}

/* Responsive Layout */

/* Industrial Products Section */
.industrial-products-section {
    background-color: var(--white-color);
}

.product-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-bg {
    transform: scale(1.05);
}


.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.product-title {
    color: var(--white-color);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0px;
}


.arrow-icon {
    font-size: 20px;
    line-height: 20px;
    color: var(--secondary);
    font-weight: bold;
}

/* Product Swiper Styles */
.ag-product-swiper {
    padding-bottom: 50px;
}

.ag-product-card-col.swiper-slide {
    height: auto;
    margin-bottom: 0px;
}

.ag-product-pagination {
    bottom: 0px !important;
}

/* Game Changer Section */
.game-changer-section {
    background-color: #121D3A;
    color: var(--white-color);
}

.game-changer-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 45px;
    font-family: var(--N27);
}

.game-changer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    padding-left: 20px;
}

.game-changer-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
    font-size: 14px;
    color: var(--text-color);
}

.game-changer-list li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-text {
    color: var(--secondary);
}

.game-changer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 0;
    padding-left: 20px;
    text-align: justify;
}

/* Chart Styles */
.thermal-chart-container {
    padding-left: 50px;
}

@media (max-width: 991.98px) {
    .thermal-chart-container {
        padding-left: 0;
        margin-top: 50px;
    }
}

.chart-row {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.chart-row:last-child {
    margin-bottom: 0;
}

.chart-label {
    width: 200px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--N27);
    text-align: right;
    padding-right: 25px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.chart-bar-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    height: 14px;
}

.chart-bar {
    height: 14px;
    background-color: var(--secondary);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0;
    box-shadow: 0 0 10px rgba(30, 235, 180, 0.3);
}

.chart-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-grow: 1;
    margin-left: -5px;
    margin-right: 15px;
    z-index: 1;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.chart-row.animate .chart-line {
    opacity: 1;
    transform: translateX(0);
}

.chart-value {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--N27);
    width: 140px;
    text-align: right;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    margin-left: 0;
}

@media (max-width: 575.98px) {
    .chart-row {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .chart-label {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .chart-value {
        width: auto;
    }
}

/* Brochures Section */
.ag-brochure-card-col {
    margin-bottom: 40px;
}

.brochure-card {
    border: 1px solid #DADDE5;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.brochure-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(30, 235, 180, 0.15);
}

.brochure-img-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 24px;
}

.brochure-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brochure-card:hover .brochure-img {
    transform: scale(1.05);
}

.brochure-content {
    display: flex;
    flex-direction: column;
}

.brochure-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--N27);
    margin-bottom: 25px;
    line-height: 1.5;
    min-height: 54px;
    text-align: justify;
    /* Ensure alignment even with different title lengths */
}

.brochure-actions {
    display: flex;
    gap: 12px;
}

.btn-dark-custom {
    background-color: #2F3651;
    /* Dark blue from design */
    color: var(--white-color);
    font-size: 11px;
    padding: 10px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-dark-custom:hover {
    background-color: var(--primary);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-icon {
    color: var(--secondary);
    font-size: 14px;
}



/* Brochures Swiper Styling */
.ag-brochures-swiper {
    /* padding-bottom: 40px; */
    overflow: hidden;
}

.ag-related-blog-swiper {
    overflow: hidden;
    padding-bottom: 40px;
}

.ag-related-blog-pagination {
    bottom: 0px !important;
}

.swiper-slide {
    height: auto;
}

.ag-swiper-pagination {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ag-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    opacity: 0.2;
    border-radius: 6px;
    margin: 0px !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ag-swiper-pagination.ag-swiper-pagination-white .swiper-pagination-bullet {
    background-color: var(--white-color);
    opacity: 0.3;
}

.ag-swiper-pagination.ag-swiper-pagination-white .swiper-pagination-bullet-active {
    background-color: var(--white-color);
    opacity: 1;
}

.ag-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary);
    opacity: 1;
    width: 30px;
}

.ag-blog-pagination .swiper-pagination-bullet {
    background-color: var(--white-color);
}


/* Sticky Scroll Section */
.sticky-scroll-wrapper {
    position: relative;
    width: 100%;
}

/* Background Media Styling */
.sticky-section {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sticky-media-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.sticky-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.sticky-section .sticky-data {
    position: relative;
    z-index: 1;
}

/* .sticky-title {
    font-size: 36px;
} */

/* Different backgrounds for visual stacking effect */
.dark-bg-1 {
    background-color: #0A1020;
    z-index: 10;
}

.dark-bg-2 {
    background-color: #121D3A;
    z-index: 20;
}

.dark-bg-3 {
    background-color: #0F182E;
    z-index: 30;
}

.dark-bg-4 {
    background-color: #0F182E;
    z-index: 30;
}

.dark-bg-5 {
    background-color: #0F182E;
    z-index: 30;
}

.dark-bg-6 {
    background-color: #0F182E;
    z-index: 30;
}

.sticky-title {
    font-size: 44px;
    font-weight: 400;
    font-family: var(--N27);
    color: var(--white-color);
    margin-bottom: 30px;
    line-height: 1.1;
}

.sticky-desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
    text-align: justify;
}

@media (max-width: 991.98px) {
    .sticky-title {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .sticky-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }

    .sticky-title {
        font-size: 36px;
    }
}



/* News & Events Section */
.news-section {
    background-color: var(--white-color);
}

.ag-news-card-col {
    margin-bottom: 40px;
}

.news-card {
    border: 1px solid #DADDE5;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(30, 235, 180, 0.15);
}

.news-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--N27);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
    text-align: justify;
}

.news-date {
    font-size: 14px;
    color: #2B2E34;
    font-weight: 400;
    display: block;
    margin-top: auto;
}

/* News Swiper Styling */
.ag-news-swiper {
    /* padding-bottom: 40px; */
    overflow: hidden;
}



/* Blog Section Styling */
.blog-section {
    background-color: #121D3A;
}

.blog-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid #DADDE5;
    flex: 1;
}

.blog-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 25px 60px rgba(30, 235, 180, 0.15);
}

.blog-img-wrapper {
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-content {
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 18px;
    font-weight: 400;
    color: #2B2E34;
    line-height: 1.6;
    margin-bottom: 0px;
    text-align: left;
    font-family: var(--N27);
}

.blog-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-author,
.blog-date {
    font-family: var(--N27);
    font-size: 14px;
    color: #2B2E34;
    font-weight: 400;
}

.ag-brochure-card-col,
.ag-news-card-col,
.ag-blog-card-col {
    display: flex;
}

.ag-blog-swiper {
    overflow: hidden;
}

/* ==========================================================================
   6. SHARED PAGE COMPONENTS (Newsletter & Footer)
   ========================================================================== */

/* Newsletter Section Styling */
.newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ag-newsletter-title {
    font-size: 36px;
    font-family: var(--N27);
    color: #121D3A;
    margin-bottom: 40px;
    font-weight: 500;
}

.ag-newsletter-form {
    width: 710px;
}

.ag-newsletter-input-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ag-newsletter-input {
    width: 500px;
    height: 56px;
    border: 1px solid #DADDE5;
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    background-color: #F9F9F9;
    color: #2F3651;
    transition: all 0.3s ease;
}

.ag-newsletter-btn {
    width: 190px;
    height: 56px;
    background-color: var(--primary);
    color: var(--white-color);
    border-radius: 5px;
    font-size: 16px;
    padding: 0px 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
}

.ag-newsletter-btn:before,
.ag-newsletter-btn:after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--secondary);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.ag-newsletter-btn:before {
    left: 0;
}

.ag-newsletter-btn:after {
    right: 0;
}

.ag-newsletter-btn:hover:before,
.ag-newsletter-btn:hover:after {
    width: 51%;
}

.ag-newsletter-btn:hover {
    color: #121D3A;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(30, 235, 180, 0.25);
}

.ag-newsletter-btn:hover i {
    color: #121D3A;
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .ag-newsletter-form {
        width: 600px;
    }

    .ag-newsletter-input {
        width: 400px;
    }
}

@media (max-width: 767.98px) {
    .ag-newsletter-form {
        width: 320px;
    }

    .ag-newsletter-input-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .ag-newsletter-input {
        width: 300px;
    }

    .ag-newsletter-btn {
        width: 300px;
    }

    .ag-newsletter-title {
        font-size: 28px;
    }
}

/* Footer Section Styling */
.ag-main-footer {
    background-color: #121D3A;
    color: var(--white-color);
}

.ag-footer-logo {
    height: 60px;
    margin-bottom: 30px;
}

.ag-footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: var(--white-color);
    margin-bottom: 40px;
    text-align: justify;
}

.ag-social-heading {
    font-size: 25px;
    font-family: var(--N27);
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--white-color);
}

.ag-social-icons {
    display: flex;
    gap: 20px;
}

.ag-social-link {
    font-size: 32px;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.ag-social-link:hover {
    color: var(--secondary);
    transform: translateY(-5px);
}

.ag-footer-heading {
    font-size: 25px;
    font-family: var(--N27);
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--white-color);
}

.ag-footer-list {
    padding: 0px;
    margin: 0px 0px 0px 10px;
    list-style: none;
}

.ag-footer-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 18px;
}

.ag-footer-list li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 4px;
    height: 4px;
    background-color: var(--white-color);
    border-radius: 50px;
}

.ag-footer-list li a {
    font-size: 14px;
    color: var(--white-color);
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.ag-footer-list li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.ag-contact-text {
    font-size: 14px;
    line-height: 24px;
    color: var(--white-color);
}

.ag-contact-text a {
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ag-contact-text a:hover {
    color: var(--secondary);
}

.ag-contact-info-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ag-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ag-contact-item i {
    font-size: 24px;
    color: var(--white-color);
}

.ag-contact-item a {
    font-size: 14px;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.ag-contact-item a:hover {
    color: var(--secondary);
}

.ag-footer-bottom {
    padding: 10px 0px;
    border-top: 1px solid var(--white-color);
}

.ag-copyright {
    font-size: 14px;
    color: #F2F1EF;
    margin: 0px;
    font-family: var(--N27);
}

.ag-privacy-link {
    font-size: 14px;
    color: #F2F1EF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--N27);
}

.ag-privacy-link:hover {
    color: var(--secondary);
}

/* ==========================================================================
   7. GLOBAL RESPONSIVE OVERRIDES (Media Queries)
   ========================================================================== */

@media (max-width: 1680.98px) {
    .container-fluid.px-5 {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }
}

@media (max-width: 1440.98px) {
    .hero-section h1 {
        font-size: 45px;
    }

    .sticky-title {
        font-size: 38px;
    }

    .ag-newsletter-title {
        font-size: 32px;
    }

    .brochure-actions .btn {
        font-size: 12px;
        line-height: 12px;
        padding: 12px 15px;
    }

    .ag-contact-info-wrap {
        flex-wrap: wrap;
        gap: 15px;
    }

    .ag-contact-item a {
        font-size: 14px;
    }
}

@media (max-width: 1399.98px) {
    .hero-section h1 {
        font-size: 40px;
    }

    .diamond-title {
        font-size: 28px;
    }

    /* .diamond-content-box {
        padding: 40px 50px;
    } */
}

@media (max-width: 1280.98px) {
    .container-fluid.px-5 {
        padding-right: 30px !important;
        padding-left: 30px !important;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .sticky-desc {
        font-size: 15px;
    }

    /* Footer adjustments for 1280.98px */
    .ag-footer-heading {
        font-size: 22px;
    }

    .ag-footer-list li a {
        font-size: 13px;
    }

    .ag-contact-text,
    .ag-contact-item a {
        font-size: 13px;
    }

    /* .diamond-content-box {
        padding: 30px 60px;
    } */

    .brochure-actions .btn {
        padding: 10px 10px;
        gap: 5px;
    }

    .action-icon {
        font-size: 12px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-toggler {
        display: block;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .sticky-title {
        font-size: 32px;
    }

    .ag-newsletter-form {
        width: 100%;
        max-width: 600px;
    }

    /* .diamond-img {
        min-height: 500px;
    } */

    /* Footer adjustments for 1199.98px */
    .ag-footer-brand-col {
        margin-bottom: 50px;
    }
}

@media (max-width: 1024.98px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .sticky-title {
        font-size: 30px;
    }

    .ag-footer-link-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        height: 800px;
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .hero-caption {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .diamond-col {
        width: 100%;
    }

    .ag-contact-info-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ag-footer-social-wrap {
        margin-top: 30px;
    }

    .thermal-chart-container {
        padding-left: 0px;
        margin-top: 50px;
    }

    .ag-footer-link-col,
    .ag-footer-contact-col {
        margin-bottom: 40px;
    }

    .ag-footer-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 600px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .diamond-title,
    .game-changer-title {
        font-size: 24px;
    }

    .ag-newsletter-title {
        font-size: 24px;
    }

    .ag-social-heading,
    .ag-footer-heading {
        font-size: 22px;
    }

    .ag-newsletter-form {
        max-width: 320px;
    }

    .ag-footer-bottom {
        text-align: center;
        padding: 20px 0px;
    }

    .ag-footer-bottom-right {
        text-align: center !important;
        margin-top: 5px;
    }
}

@media (max-width: 575.98px) {
    .container-fluid.px-5 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .hero-section {
        height: 500px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .ag-newsletter-input {
        width: 300px;
        height: 50px;
    }

    .ag-newsletter-btn {
        width: 300px;
        height: 50px;
    }

    .ag-copyright,
    .ag-privacy-link {
        font-size: 12px;
    }

    .chart-label {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
    }

    .brochure-actions .btn {
        font-size: 12px;
        line-height: 12px;
        padding: 9px 9px;
    }
}

@media (max-width: 480.98px) {
    .hero-section {
        height: 450px;
    }

    .hero-section h1 {
        font-size: 22px;
    }

    .diamond-header-strip {
        padding: 40px 0px;
    }

    .diamond-header-strip h2 {
        font-size: 20px;
    }

    .ag-newsletter-title {
        font-size: 20px;
    }
}

@media (max-width: 360.98px) {
    .hero-section {
        height: 400px;
    }

    .hero-section h1 {
        font-size: 20px;
    }

    .ag-contact-item a {
        font-size: 12px;
    }
}

/* ==========================================================================
   8. PAGE: INDUSTRIES SECTIONS
   ========================================================================== */

.ag-industry-section {
    width: 100%;
    overflow: hidden;
}

.diamond-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.diamond-col {
    width: 100%;
}

.diamond-content-box {
    padding: 60px 80px;
}

@media (max-width: 1399.98px) {
    .diamond-content-box {
        padding: 40px 50px;
    }
}

@media (max-width: 1280.98px) {
    .diamond-content-box {
        padding: 30px 50px;
    }
}

@media (min-width: 992px) {
    .diamond-content-box {
        padding: 30px 50px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 991.98px) {
    .diamond-content-box {
        padding: 32px;
    }
}

@media (min-width: 992px) {
    .diamond-col {
        width: 50%;
    }
}

@media (max-width: 991.98px) {
    .diamond-content-box {
        padding: 40px 30px;
    }

    .ag-industry-section .diamond-row {
        flex-direction: column;
    }

    .ag-industry-section .diamond-col:not(.diamond-content-block) {
        order: 1;
    }

    .ag-industry-section .diamond-col.diamond-content-block {
        order: 2;
    }
}

/* Mobile Ordering: Image Order 1, Content Order 2 */
@media (max-width: 767.98px) {}


/* ==========================================================================
   9. PAGE: Applications SECTIONS
   ========================================================================== */

.ag-applications-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-applications-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121D3ACC;
    z-index: 2;
}

.ag-applications-title {
    font-size: 50px;
    color: var(--white-color);
    font-family: var(--N27);
    margin: 0px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 1680.98px) {
    .ag-applications-hero {
        height: 800px;
    }

    .ag-applications-title {
        font-size: 52px;
    }
}

@media (max-width: 1440.98px) {
    .ag-applications-hero {
        height: 750px;
    }

    .ag-applications-title {
        font-size: 48px;
    }
}

@media (max-width: 1399.98px) {
    .ag-applications-hero {
        height: 700px;
    }

    .ag-applications-title {
        font-size: 44px;
    }
}

@media (max-width: 1280.98px) {
    .ag-applications-hero {
        height: 650px;
    }

    .ag-applications-title {
        font-size: 40px;
    }
}

@media (max-width: 1199.98px) {
    .ag-applications-hero {
        height: 600px;
    }

    .ag-applications-title {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .ag-applications-hero {
        height: 550px;
    }

    .ag-applications-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .ag-applications-hero {
        height: 500px;
    }

    .ag-applications-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .ag-applications-hero {
        height: 450px;
    }

    .ag-applications-title {
        font-size: 24px;
    }
}

@media (max-width: 480.98px) {
    .ag-applications-hero {
        height: 400px;
    }

    .ag-applications-title {
        font-size: 22px;
    }
}

@media (max-width: 360.98px) {
    .ag-applications-hero {
        height: 350px;
    }

    .ag-applications-title {
        font-size: 20px;
    }
}


@media (max-width: 1199.98px) {
    .container-fluid.pl-100 {
        padding-left: 80px !important;
    }
}

@media (max-width: 991.98px) {
    .container-fluid.pl-100 {
        padding-left: 48px !important;
    }
}

@media (max-width: 767.98px) {
    .container-fluid.pl-100 {
        padding-left: 20px !important;
    }
}

/* Applications Cards Section */
.ag-app-card-col {
    padding-bottom: 30px;
}

.ag-app-card {
    height: 100%;
    background-color: var(--white-color);
    border: 1px solid #DADDE5;
    border-radius: 15px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(18, 29, 58, 0.05);
    transition: all 0.3s ease;
}

.ag-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(18, 29, 58, 0.1);
    border-color: var(--primary);
}

.ag-app-card-title {
    color: var(--primary);
    font-family: var(--N27);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
}

.ag-app-card-text {
    color: #2B2E34;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 0px;
    font-weight: 400;
}

@media (max-width: 1400.98px) {
    .ag-app-card-title {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .ag-app-card {
        padding: 40px 25px;
    }

    .ag-app-card-title {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .ag-app-card-col:last-child {
        padding-bottom: 0px;
    }
}

/* ==========================================================================
   10. PAGE: Our Products SECTIONS
   ========================================================================== */

.ag-products-hero {
    position: relative;
    height: 900px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121D3ACC;
    z-index: 2;
}

.ag-products-title {
    font-size: 56px;
    color: var(--white-color);
    font-family: var(--N27);
    margin: 0px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 1680.98px) {
    .ag-products-hero {
        height: 800px;
    }

    .ag-products-title {
        font-size: 52px;
    }
}

@media (max-width: 1440.98px) {
    .ag-products-hero {
        height: 750px;
    }

    .ag-products-title {
        font-size: 48px;
    }
}

@media (max-width: 1399.98px) {
    .ag-products-hero {
        height: 700px;
    }

    .ag-products-title {
        font-size: 44px;
    }
}

@media (max-width: 1280.98px) {
    .ag-products-hero {
        height: 650px;
    }

    .ag-products-title {
        font-size: 40px;
    }
}

@media (max-width: 1199.98px) {
    .ag-products-hero {
        height: 600px;
    }

    .ag-products-title {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .ag-products-hero {
        height: 550px;
    }

    .ag-products-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .ag-products-hero {
        height: 500px;
    }

    .ag-products-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .ag-products-hero {
        height: 450px;
    }

    .ag-products-title {
        font-size: 24px;
    }
}

@media (max-width: 480.98px) {
    .ag-products-hero {
        height: 400px;
    }

    .ag-products-title {
        font-size: 22px;
    }
}

@media (max-width: 360.98px) {
    .ag-products-hero {
        height: 350px;
    }

    .ag-products-title {
        font-size: 20px;
    }
}

.ag-product-card-col {
    margin-bottom: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

/* Product Cards Styling */
.ag-product-card {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    cursor: pointer;
}

.ag-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 29, 58, 0.2) 0%, rgba(18, 29, 58, 0.8) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.ag-product-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

.ag-product-card-title {
    color: var(--white-color);
    font-family: var(--N27);
    font-size: 32px;
    font-weight: 400;
    margin: 0px;
    line-height: 1.2;
    max-width: 90%;
}

.ag-product-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 25px;
    width: fit-content;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* .ag-product-explore-btn i {
    font-size: 20px;
    color: var(--secondary);
    transition: transform 0.3s ease;
} */

.ag-product-card:hover {
    transform: translateY(-5px);
}

.ag-product-card:hover .ag-product-overlay {
    background: linear-gradient(180deg, rgba(18, 29, 58, 0.3) 0%, rgba(18, 29, 58, 0.9) 100%);
}

.ag-product-card:hover .ag-product-explore-btn {
    background: var(--white-color);
    color: #121D3A;
    border-color: var(--white-color);
}

@media (max-width: 1400.98px) {
    .ag-product-card-title {
        font-size: 28px;
    }
}

@media (max-width: 1199.98px) {
    .ag-product-card-content {
        padding: 30px;
    }

    .ag-product-card-title {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {
    .ag-product-explore-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* ==========================================================================
   GLOBAL: Scroll to Top
   ========================================================================== */
#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(18, 29, 58, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 235, 180, 0.3);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3),
        inset 0px 0px 15px rgba(30, 235, 180, 0.1);
}

#scroll-to-top i {
    font-size: 26px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

#scroll-to-top:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(0px) scale(1.1);
    box-shadow: 0px 0px 30px rgba(30, 235, 180, 0.4);
}

#scroll-to-top:hover i {
    color: #121D3A;
    transform: translateY(-2px);
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) scale(1);
}

@media (max-width: 767.98px) {
    #scroll-to-top {
        bottom: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
    }

    #scroll-to-top i {
        font-size: 22px;
    }
}

/* ==========================================================================
   11. PAGE: Product Details SECTIONS
   ========================================================================== */
.ag-pd-title {
    font-family: var(--N27);
    font-size: 44px;
    color: #121D3A;
    margin-bottom: 40px;
    font-weight: 500;
}

.ag-pd-block {
    margin-bottom: 35px;
}

.ag-pd-subtitle {
    font-size: 20px;
    color: #233870;
    font-weight: 600;
    margin-bottom: 35px;
    letter-spacing: 0.4px;
}

.ag-pd-desc {
    font-size: 16px;
    color: #2B2E34;
    line-height: 2;
    margin-bottom: 0px;
    text-align: justify;
    letter-spacing: 0.4px;
}

.ag-pd-list-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ag-pd-list-header i {
    font-size: 24px;
    color: #233870;
}

.ag-pd-list-title {
    font-size: 20px;
    color: #233870;
    font-weight: 600;
    margin-bottom: 0px;
    letter-spacing: 0.4px;
}

.ag-pd-list {
    list-style: none;
    padding-left: 35px;
    margin-bottom: 0px;
    letter-spacing: 0.4px;
}

.ag-pd-list li {
    font-size: 15px;
    font-weight: 500;
    color: #2B2E34;
    margin-bottom: 20px;
    /* display: flex;
    align-items: flex-start;
    gap: 8px; */
    line-height: 1.5;
    letter-spacing: 0.4px;
}

.ag-pd-list li i {
    color: #2B2E34;
    font-size: 16px;
    margin-top: 2px;
}

.ag-pd-list li span {
    color: #121D3A;
    font-weight: 600;
}

.ag-pd-image-wrap {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.ag-pd-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

@media (max-width: 1199.98px) {
    .ag-pd-title {
        font-size: 36px;
    }

    .ag-pd-subtitle {
        font-size: 20px;
    }

    .ag-pd-list-title {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    /* .ag-pd-content-col {
        margin-bottom: 50px;
    } */

    .ag-pd-image-col {
        order: -1;
        margin-bottom: 40px;
    }

    .ag-pd-title {
        font-size: 32px;
        text-align: center;
    }

    .ag-pd-image-wrap {
        padding: 0px;
    }
}

@media (max-width: 767.98px) {
    .ag-pd-title {
        font-size: 28px;
    }

    .ag-pd-subtitle {
        font-size: 18px;
    }
}

/* Dark Theme Modifier for Product Details */
.ag-pd-section-dark {
    background-color: #121D3A;
}

.ag-pd-section-dark .ag-pd-title {
    color: var(--white-color);
}

.ag-pd-section-dark .ag-pd-subtitle {
    color: var(--white-color);
}

.ag-pd-section-dark .ag-pd-desc {
    color: var(--white-color);
}

.ag-pd-section-dark .ag-pd-list-header i {
    color: var(--white-color);
}

.ag-pd-section-dark .ag-pd-list-title {
    color: var(--white-color);
}

.ag-pd-section-dark .ag-pd-list li {
    color: var(--white-color);
}

.ag-pd-section-dark .ag-pd-list li strong {
    color: var(--white-color);
}

@media (max-width: 991.98px) {
    .ag-pd-section-dark .ag-pd-image-col {
        order: -1;
        margin-bottom: 40px;
    }
}

.ag-pd-sub-list-col {
    padding-bottom: 0px;
}

@media (max-width: 767.98px) {
    .ag-pd-block {
        margin-bottom: 20px;
    }

    .ag-pd-sub-list-col {
        margin-bottom: 20px;
    }

    .ag-pd-sub-list-col:last-child {
        margin-bottom: 0px;
    }

    .ag-pd-sub-list-col:last-child .ag-pd-block {
        margin-bottom: 0px;
    }

    .ag-pd-content-col {
        margin-bottom: 0;
    }
}


/* ==========================================================================
   12. PAGE: About Us Hero Section
   ========================================================================== */
.ag-hero-section {
    position: relative;
    width: 100%;
    height: 800px;
    background-color: #121D3A;
    overflow: hidden;
}

.ag-about-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ag-common-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ag-hero-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #121D3AB2;
    z-index: 1;
}

.ag-hero-content-col {
    position: relative;
    z-index: 2;
}

.ag-hero-title {
    font-family: var(--N27);
    font-size: 50px;
    line-height: 1.6;
    color: var(--white-color);
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: none;
}

/* Values Section Styling (Image Based Icons) */
.ag-values-section {
    background-color: #121D3A;
}

.ag-value-card {
    text-align: center;
    padding: 20px 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ag-value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.ag-value-icon img {
    width: 64px;
    height: auto;
    object-fit: contain;
}

.ag-value-card:hover {
    transform: translateY(-10px);
}

.ag-value-name {
    font-size: 18px;
    font-weight: 400;
    color: #F2F1EF;
    margin-bottom: 16px;
    text-transform: capitalize;
    font-family: var(--N27);
}

.ag-value-desc {
    font-size: 13px;
    line-height: 22px;
    color: #C2C0BD;
    margin-bottom: 0px;
    padding: 0 10px;
}

.ag-value-item-col {
    width: 14.285%;
    flex: 0 0 14.285%;
}

/* Responsive adjustments using specific breakpoints */
@media (max-width: 1680.98px) {
    .ag-hero-section {
        height: 750px;
    }

    .ag-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 1440.98px) {
    .ag-hero-section {
        height: 700px;
    }

    .ag-hero-title {
        font-size: 46px;
    }

    .ag-value-item-col {
        width: 16.666%;
        flex: 0 0 16.666%;
    }
}

@media (max-width: 1399.98px) {
    .ag-hero-section {
        height: 650px;
    }

    .ag-hero-title {
        font-size: 44px;
    }

    .ag-value-item-col {
        width: 25%;
        flex: 0 0 25%;
    }
}

@media (max-width: 1280.98px) {
    .ag-hero-section {
        height: 600px;
    }

    .ag-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 1199.98px) {
    .ag-hero-section {
        height: 550px;
    }

    .ag-hero-title {
        font-size: 40px;
    }

    .ag-value-item-col {
        width: 33.333%;
        flex: 0 0 33.333%;
    }
}

@media (max-width: 991.98px) {
    .ag-hero-section {
        height: 500px;
    }

    .ag-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .ag-hero-section {
        height: 450px;
    }

    .ag-hero-title {
        font-size: 32px;
    }

    .ag-value-item-col {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 575.98px) {
    .ag-hero-section {
        height: 400px;
    }

    .ag-hero-title {
        font-size: 28px;
    }

    .ag-value-item-col {
        width: 50%;
        flex: 0 0 50%;
    }

    .ag-value-name {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .ag-value-desc {
        font-size: 12px;
        padding: 0 5px;
    }
}

@media (max-width: 480.98px) {
    .ag-hero-section {
        height: 380px;
    }

    .ag-hero-title {
        font-size: 24px;
    }

    .ag-value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .ag-value-icon img {
        width: 48px;
    }
}

@media (max-width: 360.98px) {
    .ag-hero-section {
        height: 350px;
    }

    .ag-hero-title {
        font-size: 22px;
    }
}

/* ==========================================================================
   13. PAGE: Contact Us - Content & Form
   ========================================================================== */

/* Contact Hero Specific */
.ag-contact-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ag-contact-card {
    background: var(--white-color);
    padding: 45px;
    height: 100%;
    border-radius: 15px;
    border: 1px solid #DADDE5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ag-contact-card:hover {
    box-shadow: 0 10px 40px rgba(35, 56, 112, 0.08);
    border-color: #233870;
}

.ag-contact-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #233870;
    margin-bottom: 40px;
}

.ag-card-info-group {
    margin-bottom: 35px;
    padding-left: 20px;
}

.ag-card-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #233870;
    margin-bottom: 12px;
}

.ag-card-info-text {
    font-size: 15px;
    line-height: 26px;
    color: #4C5A67;
    margin-bottom: 0px;
    max-width: 420px;
}

.ag-card-info-text a {
    color: #4C5A67;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ag-card-info-text a:hover {
    color: var(--primary);
}

.ag-card-footer {
    padding-top: 15px;
    padding-left: 20px;
}

.ag-card-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ag-card-contact-item i {
    font-size: 24px;
    color: #233870;
}

.ag-card-contact-item a {
    font-size: 16px;
    font-weight: 500;
    color: #4C5A67;
    transition: all 0.3s ease;
}

.ag-card-contact-item a:hover {
    color: #233870;
}

/* Contact Form Styling */
.ag-contact-form .form-group {
    margin-bottom: 24px;
}

.ag-contact-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #2B2E34;
    margin-bottom: 10px;
    display: block;
}

.ag-contact-form .form-control {
    border: 1px solid #DADDE5;
    background: #FBFBFC;
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    height: 48px;
    color: #121D3A;
}

.ag-contact-form .form-control::placeholder {
    color: #C2C0BD;
    font-size: 13px;
}

.ag-contact-form .form-control:focus {
    border-color: #233870;
    background: var(--white-color);
    box-shadow: 0 0 0 4px rgba(35, 56, 112, 0.05);
    outline: none;
}

.ag-contact-form textarea.form-control {
    height: 110px;
    resize: none;
}

.ag-form-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 1680.98px) {
    .ag-contact-card {
        padding: 45px 40px;
    }

    .ag-contact-card-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
}

@media (max-width: 1440.98px) {
    .ag-contact-card {
        padding: 40px 35px;
    }

    .ag-contact-card-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .ag-card-info-group {
        margin-bottom: 30px;
    }
}

@media (max-width: 1399.98px) {
    .ag-contact-card {
        padding: 40px 30px;
    }

    .ag-card-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 1280.98px) {
    .ag-contact-card-title {
        font-size: 26px;
    }

    .ag-card-info-group {
        padding-left: 15px;
    }

    .ag-card-footer {
        padding-left: 15px;
    }
}

@media (max-width: 1199.98px) {
    .ag-contact-card {
        padding: 35px 25px;
    }

    .ag-contact-card-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .ag-card-info-group {
        margin-bottom: 25px;
        padding-left: 10px;
    }

    .ag-card-footer {
        padding-left: 10px;
    }

    .ag-form-btn {
        font-size: 17px;
        padding: 14px 25px;
    }
}

@media (max-width: 991.98px) {
    .ag-contact-col {
        margin-bottom: 20px;
    }

    .ag-contact-card {
        padding: 40px;
    }

    .ag-contact-card-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }

    .ag-blog-hero {
        height: 350px;
    }

    .ag-blog-hero-title {
        font-size: 40px;
    }

    .ag-card-info-group {
        padding-left: 0px;
        text-align: center;
        margin-bottom: 25px;
    }

    .ag-blog-hero {
        height: 300px;
    }

    .ag-blog-hero-title {
        font-size: 32px;
    }

    .ag-card-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .ag-card-info-text {
        font-size: 15px;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .ag-card-footer {
        padding-left: 0px;
        justify-content: center;
        margin-top: 25px;
    }

    .ag-card-contact-item {
        margin-bottom: 0px;
    }
}

@media (max-width: 767.98px) {
    .ag-blog-hero {
        height: 300px;
    }

    .ag-blog-hero-title {
        font-size: 32px;
    }

    .ag-contact-card {
        padding: 30px 20px;
    }

    .ag-contact-card-title {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .ag-blog-hero {
        height: 250px;
    }

    .ag-blog-hero-title {
        font-size: 28px;
    }

    .ag-contact-card {
        padding: 25px 20px;
    }

    .ag-contact-card-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .ag-card-subtitle {
        font-size: 17px;
    }

    .ag-card-info-text {
        font-size: 14px;
        line-height: 24px;
    }

    .ag-form-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .ag-contact-form .form-group {
        margin-bottom: 20px;
    }

    .ag-contact-form .form-control {
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 480.98px) {
    .ag-contact-card {
        padding: 30px 15px;
    }

    .ag-contact-card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .ag-card-subtitle {
        font-size: 16px;
    }

    .ag-card-info-text {
        font-size: 13px;
        line-height: 22px;
    }

    .ag-card-contact-item i {
        font-size: 20px;
    }

    .ag-card-contact-item a {
        font-size: 14px;
    }

    .ag-card-info-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 360.98px) {
    .ag-contact-card {
        padding: 25px 12px;
    }

    .ag-contact-card-title {
        font-size: 19px;
    }

    .ag-card-subtitle {
        font-size: 15px;
    }

    .ag-card-info-text {
        font-size: 12px;
    }
}


/* ==========================================================================
   14. PAGE: Blog
   ========================================================================== */
.ag-blog-card-col {
    margin-bottom: 40px;
}

.ag-blog-hero {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121D3A;
    background-image: linear-gradient(rgba(18, 29, 58, 0.8), rgba(18, 29, 58, 0.8));
    background-size: cover;
    background-position: center;
}

.ag-blog-hero-title {
    font-size: 64px;
    color: var(--white-color);
    font-family: var(--N27);
    margin: 0px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

/* Blog Posts Grid */
.ag-blog-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid #DADDE5;
    flex: 1;
}

.ag-blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 25px 60px rgba(30, 235, 180, 0.15);
}

.ag-blog-img-wrap {
    width: 100%;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
}

.ag-blog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ag-blog-card:hover .ag-blog-img {
    transform: scale(1.05);
}

.ag-blog-content {
    display: flex;
    flex-direction: column;
}

.ag-blog-title {
    font-size: 20px;
    font-weight: 500;
    color: #2F3651;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
    font-family: var(--N27);
}

.ag-blog-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ag-blog-author,
.ag-blog-date {
    font-family: var(--N27);
    font-size: 15px;
    color: #2B2E34;
    font-weight: 400;
}

/* ==========================================================================
   15. PAGE: Blog Details
   ========================================================================== */
.ag-blog-details-hero {
    background-color: #0B1120;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ag-bd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121D3A4D;
    z-index: 1;
}

.ag-blog-details-hero .container-fluid {
    position: relative;
    z-index: 2;
}

.ag-bd-hero-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 0px;
}

.ag-bd-hero-img-wrap {
    width: 100%;
    text-align: right;
}

.ag-bd-hero-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Blog Info Bar */
.ag-blog-info-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DADDE5;
}

.ag-info-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ag-breadcrumb {
    display: flex;
    align-items: center;
}

.ag-breadcrumb-link {
    color: #2B2E34;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.ag-breadcrumb-link:hover {
    color: var(--primary);
}

.ag-breadcrumb-sep {
    color: #DADDE5;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
}

.ag-breadcrumb-current {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.ag-blog-meta {
    display: flex;
    align-items: center;
}

.ag-blog-date-full {
    font-size: 14px;
    color: #2B2E34;
    margin-right: 30px;
}

.ag-blog-social-share {
    display: flex;
    align-items: center;
}

.ag-share-link {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: var(--white-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.ag-share-link:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Blog Details Content */
.ag-bd-main-article-title {
    font-size: 30px;
    font-weight: 700;
    color: #233870;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ag-bd-para {
    font-size: 15px;
    color: #2B2E34;
    line-height: 2;
    margin-bottom: 20px;
}

.ag-bd-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #233870;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ag-bd-text-list {
    margin-bottom: 25px;
    padding-left: 20px;
}

.ag-bd-text-list li {
    font-size: 15px;
    color: #2B2E34;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    letter-spacing: 0.5px;
}

.ag-bd-text-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.ag-bd-sidebar-wrap {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.ag-bd-sidebar-title {
    font-size: 18px;
    font-weight: 500;
    color: #192734;
    margin-bottom: 20px;
}

.ag-bd-tag-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ag-bd-tag {
    background-color: #233870;
    color: #1EEBB4;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.ag-bd-tag:hover {
    background-color: #1EEBB4;
    color: #121D3A;
}

.ag-bd-inner-title {
    font-size: 20px;
    font-weight: 700;
    color: #233870;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ag-bd-step-list {
    margin-bottom: 35px;
}

.ag-bd-step-item {
    margin-bottom: 20px;
}

.ag-bd-step-label {
    font-size: 16px;
    font-weight: 600;
    color: #233870;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ag-bd-step-text {
    font-size: 16px;
    color: #2B2E34;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.ag-bd-prop-img-wrap {
    width: 100%;
    margin-bottom: 25px;
}

.ag-bd-prop-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.ag-bd-content-indent {
    padding-left: 20px;
}

/* Blog Navigation Section */
.ag-blog-nav {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.ag-nav-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ag-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #233870;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.ag-blog-nav-next .ag-nav-label {
    justify-content: flex-end;
}

.ag-blog-nav-next-col {
    text-align: right;
}

.ag-nav-title {
    font-size: 14px;
    font-weight: 400;
    color: #2B2E34;
    line-height: 1.4;
    margin-bottom: 0px;
    transition: all 0.3s ease;
}

.ag-nav-link:hover .ag-nav-title {
    color: var(--primary);
}

.ag-nav-link:hover .ag-nav-label {
    color: var(--secondary);
}

/* Responsive Blog Adjustments */
@media (max-width: 1680.98px) {
    .ag-blog-hero {
        height: 480px;
    }

    .ag-blog-hero-title {
        font-size: 60px;
    }

    .ag-bd-hero-title {
        font-size: 52px;
    }

    .ag-blog-details-hero {
        padding: 70px 0px;
        min-height: 550px;
    }

    .ag-bd-main-article-title {
        font-size: 29px;
    }
}

@media (max-width: 1440.98px) {
    .ag-blog-hero {
        height: 450px;
    }

    .ag-blog-hero-title {
        font-size: 56px;
    }

    .ag-bd-hero-title {
        font-size: 48px;
    }

    .ag-blog-details-hero {
        padding: 65px 0px;
        min-height: 520px;
    }

    .ag-bd-main-article-title {
        font-size: 28px;
    }
}

@media (max-width: 1399.98px) {
    .ag-blog-hero {
        height: 420px;
    }

    .ag-blog-hero-title {
        font-size: 52px;
    }

    .ag-bd-hero-title {
        font-size: 44px;
    }

    .ag-blog-details-hero {
        padding: 60px 0px;
        min-height: 500px;
    }

    .ag-bd-main-article-title {
        font-size: 28px;
    }

    .ag-bd-subtitle {
        font-size: 23px;
    }
}

@media (max-width: 1280.98px) {
    .ag-blog-hero {
        height: 400px;
    }

    .ag-blog-hero-title {
        font-size: 48px;
    }

    .ag-bd-hero-title {
        font-size: 40px;
    }

    .ag-blog-details-hero {
        padding: 55px 0px;
        min-height: 480px;
    }

    .ag-bd-main-article-title {
        font-size: 27px;
    }

    .ag-bd-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 1199.98px) {
    .ag-blog-hero {
        height: 380px;
    }

    .ag-blog-hero-title {
        font-size: 44px;
    }

    .ag-blog-img {
        height: 220px;
    }

    .ag-blog-title {
        font-size: 19px;
    }

    .ag-blog-details-hero {
        padding: 50px 0px;
        min-height: 450px;
    }

    .ag-bd-hero-title {
        font-size: 36px;
    }

    .ag-bd-main-article-title {
        font-size: 27px;
    }

    .ag-bd-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 991.98px) {
    .ag-blog-hero {
        height: 320px;
    }

    .ag-blog-hero-title {
        font-size: 38px;
    }

    .ag-blog-card {
        padding: 18px;
    }

    .ag-blog-title {
        font-size: 18px;
    }

    .ag-blog-author,
    .ag-blog-date {
        font-size: 14px;
    }

    .ag-blog-details-hero {
        padding: 45px 0px;
        min-height: 400px;
    }

    .ag-bd-hero-title {
        font-size: 32px;
    }

    .ag-info-bar-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* .ag-bd-sidebar-col {
        margin-top: 40px;
    } */

    .ag-bd-sidebar-wrap {
        position: static;
    }

    .ag-bd-main-article-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .ag-bd-subtitle {
        font-size: 21px;
    }

    .ag-bd-prop-img-wrap {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .ag-blog-hero {
        height: 280px;
    }

    .ag-blog-hero-title {
        font-size: 32px;
    }

    .ag-blog-img {
        height: 200px;
    }

    .ag-bd-hero-img-wrap {
        text-align: center;
        margin-top: 40px;
    }

    .ag-bd-hero-title {
        font-size: 28px;
    }

    .ag-blog-card-col:last-child {
        margin-bottom: 0;
    }

    .ag-blog-posts-section {
        padding: 60px 0px;
    }

    .ag-breadcrumb-current {
        display: none;
    }

    .ag-bd-main-article-title {
        font-size: 22px;
    }

    .ag-bd-subtitle {
        font-size: 20px;
        margin-top: 30px;
    }

    .ag-bd-para,
    .ag-bd-text-list li {
        font-size: 14px;
    }

    .ag-bd-inner-title {
        font-size: 18px;
        margin-top: 25px;
    }

    .ag-bd-step-label {
        font-size: 15px;
    }

    .ag-bd-step-text {
        font-size: 14px;
    }

    .ag-blog-nav .row>div {
        width: 100%;
        margin-bottom: 25px;
        text-align: left !important;
    }

    .ag-blog-nav .row>div:last-child {
        margin-bottom: 0px;
    }

    .ag-nav-label {
        margin-bottom: 5px;
    }

    .ag-blog-nav-next .ag-nav-label {
        justify-content: flex-start;
    }

    .ag-nav-title {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .ag-blog-hero {
        height: 240px;
    }

    .ag-blog-hero-title {
        font-size: 28px;
    }

    .ag-blog-details-hero {
        padding: 40px 0px;
        min-height: auto;
    }

    .ag-bd-hero-title {
        font-size: 24px;
    }

    .ag-blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ag-blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ag-blog-date-full {
        margin-right: 0px;
    }

    .ag-share-link:first-child {
        margin-left: 0px;
    }

    .ag-bd-main-article-title {
        font-size: 20px;
    }

    .ag-bd-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480.98px) {
    .ag-blog-hero {
        height: 220px;
    }

    .ag-blog-hero-title {
        font-size: 24px;
    }

    .ag-blog-card {
        padding: 15px;
    }

    .ag-blog-title {
        font-size: 17px;
    }

    .ag-bd-hero-title {
        font-size: 22px;
    }

    .ag-bd-main-article-title {
        font-size: 19px;
    }

    .ag-bd-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 360.98px) {
    .ag-blog-hero {
        height: 200px;
    }

    .ag-blog-hero-title {
        font-size: 22px;
    }

    .ag-blog-title {
        font-size: 16px;
    }

    .ag-bd-hero-title {
        font-size: 20px;
    }

    .ag-bd-main-article-title {
        font-size: 18px;
    }
}

/* ==========================================================================
   16. PAGE: News & Events
   ========================================================================== */

/* News & Events Hero Specific */
.ag-news-events-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* News & Events Details Hero Specific */
.ag-news-events-details-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Language Badge */
.oblbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.oblbox img {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.oblbox h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--outfit);
}



/* Pagination Start */

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}

.page-link {
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.page-link:hover,
.page-link:hover a {
    background-color: #121D3A;
    color: #fff;
}

.page-link a:hover {
    color: #fff;
}

.page-link a {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.page-link.active {
    background-color: #121D3A;
    color: #fff;
}

.page-link.disabled {
    pointer-events: none;
    background-color: #ccc;
    color: #999;
}

/* Pagination End */

.newsletter-section {
    display: none;
}

.error_cls {
    border-color: #f00 !important;
    background-color: #f9eeee !important;
}

.error_cls::placeholder {
    color: #f00 !important;
}

.loader_main_div {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9;
    vertical-align: middle;
}

.loader_img {
    width: 70px;
    margin-top: 50%;
}


/* ==========================================================================
   17. GLOBAL RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 1680.98px) {
    .hero-section h1 {
        font-size: 48px;
    }

    .ag-applications-title,
    .ag-hero-title {
        font-size: 48px;
    }

    .ag-products-title {
        font-size: 52px;
    }

    .ag-blog-hero-title {
        font-size: 60px;
    }
}

@media (max-width: 1440.98px) {
    .hero-section h1 {
        font-size: 45px;
    }

    .sticky-title,
    .diamond-title,
    .ag-pd-title {
        font-size: 38px;
    }

    .ag-newsletter-title {
        font-size: 32px;
    }

    .ag-applications-title,
    .ag-hero-title {
        font-size: 46px;
    }

    .ag-products-title {
        font-size: 48px;
    }

    .ag-blog-hero-title {
        font-size: 56px;
    }

    .ag-app-card-title,
    .ag-product-card-title,
    .ag-contact-card-title {
        font-size: 28px;
    }
}

@media (max-width: 1399.98px) {
    .hero-section h1 {
        font-size: 40px;
    }

    .diamond-title {
        font-size: 28px;
    }

    .ag-applications-title,
    .ag-products-title,
    .ag-hero-title {
        font-size: 44px;
    }

    .ag-blog-hero-title {
        font-size: 52px;
    }
}

@media (max-width: 1280.98px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .ag-applications-title {
        font-size: 40px;
    }

    .ag-products-title {
        font-size: 40px;
    }

    .ag-hero-title {
        font-size: 42px;
    }

    .ag-blog-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .sticky-title,
    .ag-pd-title {
        font-size: 32px;
    }

    .ag-applications-title,
    .ag-products-title {
        font-size: 36px;
    }

    .ag-hero-title {
        font-size: 40px;
    }

    .ag-blog-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .ag-applications-title,
    .ag-products-title {
        font-size: 32px;
    }

    .ag-hero-title {
        font-size: 36px;
    }

    .ag-blog-hero-title {
        font-size: 38px;
    }

    .ag-newsletter-title {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .diamond-title,
    .game-changer-title,
    .ag-pd-title {
        font-size: 24px;
    }

    .ag-applications-title,
    .ag-products-title {
        font-size: 28px;
    }

    .ag-hero-title,
    .ag-blog-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 24px;
    }

    .ag-applications-title,
    .ag-products-title {
        font-size: 24px;
    }
}

@media (max-width: 480.98px) {
    .hero-section h1 {
        font-size: 22px;
    }

    .diamond-header-strip h2 {
        font-size: 20px;
    }

    .ag-newsletter-title {
        font-size: 20px;
    }
}

@media (max-width: 360.98px) {}

footer .ag-footer-list a.active
{
    color: var(--secondary) !important;
}