/* ==========================================================================
   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(--primary);
}

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
   ========================================================================== */

/* Ubuntu Font Family */
@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Light.ttf');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Regular.ttf');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Medium.ttf');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Bold.ttf');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}


:root {
    --primary: #AAE5F7;
    --text-color: #C2C0BD;
    --white-color: #FFFFFF;
    --Ubuntu: 'Ubuntu', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--Ubuntu);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #FBFBFB;
}

/* Standard Heading Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--Ubuntu);
    color: #060B14;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
    font-weight: 500;
}

h6 {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Heading Scale */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }
}


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: 0;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #060B14;
}

.btn i {
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Elegant Slide-Up Effect */
.btn:before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn:hover:before {
    bottom: 0;
}

.btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.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);
    border-color: var(--primary);
    color: #060B14;
}

.btn.btn-primary:before {
    background-color: var(--white-color);
}

.btn.btn-primary:hover {
    color: #060B14;
    border-color: var(--white-color);
}

.btn.btn-primary:hover i {
    color: #060B14;
    transform: translateX(5px);
}

/* 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 {
    background-color: var(--primary);
}

.btn.btn-white:hover {
    color: var(--white-color);
}

.btn.btn-white:hover i {
    color: var(--white-color);
    transform: translateX(5px);
}

/* Border Button (Transparent -> Blue fill) */
.btn.btn-border {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn.btn-border:before {
    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 {
    background-color: var(--white-color);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    color: #0D1525;
    border-color: var(--white-color);
}

.btn-outline-white:hover i,
.btn-outline-white:focus i {
    transform: translateX(5px);
    color: #0D1525;
}



.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(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(170, 229, 247, 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;
}





/*************************************** Advanced Radio & CheckBox Style Start ***********************************/
.cust-chk-bx {
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
    display: block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 0.2s ease;
}

.cust-chk-bx:hover {
    color: var(--primary);
}

.cust-chk-bx input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.cust-chkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 1.5px solid #cbd5e1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cust-chk-bx:hover .cust-chkmark {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(35, 56, 112, 0.05);
}

.cust-chk-bx input:checked~.cust-chkmark {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.cust-chkmark:after {
    content: "";
    position: absolute;
    display: none;
    transition: all 0.2s ease;
}

.cust-chk-bx input:checked~.cust-chkmark:after {
    display: block;
}

.cust-chk-bx .cust-chkmark:after {
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cust-chk-bx input:focus-visible~.cust-chkmark {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary);
}



/*======= Custom premium radio button ======*/
.cust-rdo-btn {
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
    display: flex;
    position: relative;
    padding-left: 28px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    transition: color 0.2s ease;
}

.cust-rdo-btn:hover {
    color: var(--primary);
}

.cust-rdo-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.cust-rdo-chkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cust-rdo-btn:hover .cust-rdo-chkmark {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(35, 56, 112, 0.05);
}

.cust-rdo-btn input:checked~.cust-rdo-chkmark {
    background-color: #FFFFFF;
    border-color: var(--primary);
    transform: scale(1.05);
    border-width: 2px;
}

.cust-rdo-chkmark:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cust-rdo-btn input:checked~.cust-rdo-chkmark:after {
    width: 10px;
    height: 10px;
}

.cust-rdo-btn input:focus-visible~.cust-rdo-chkmark {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary);
}

/*************************************** Radio & CheckBox Style End ***********************************/






.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(--Ubuntu);
    font-size: 40px;
    font-weight: 700;
    color: #060B14;
    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: #F2F1EF;
}



.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: 15px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: var(--Ubuntu);
    position: relative;
    padding: 10px 0 5px !important;
    margin: 0 12px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.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: #0D1525;
    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: #0D1525 !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;
}



.header-auth-buttons {
    display: flex;
    gap: 16px;
}



/* ==========================================================================
   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;
}




/* Diamond Types Section */
.diamond-header-strip {
    background-color: #0D1525;
    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(--Ubuntu);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #66CCFF 20%, #CCFFFF 40%, #FFFFFF 50%, #CCFFFF 60%, #66CCFF 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

/* Custom AOS Technical Reveal */
[data-aos="technical-reveal"] {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
    filter: blur(8px);
    transition-property: opacity, transform, filter;
}

[data-aos="technical-reveal"].aos-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.diamond-img-wrapper {
    position: relative;
    height: 100%;
}

.diamond-img {
    width: 100%;
    object-fit: cover;
    min-height: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.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: #0D1525;
    color: var(--white-color);
}

.diamond-info-group {
    margin-bottom: 25px;
}

.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: 700;
    margin-bottom: 25px;
    font-family: var(--Ubuntu);
}

.light-theme .diamond-title,
.light-theme .diamond-subtitle {
    color: #060B14;
}

/* Bullet color adjustment for themes */
.light-theme .diamond-list li::before {
    color: #2B2E34;
}

.dark-theme .diamond-list li::before {
    color: var(--white-color);
}


.dark-theme .diamond-title {
    color: #AAE5F7;
}

.diamond-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
    color: #060B14;
}

.dark-theme .diamond-subtitle {
    color: var(--white-color);
}

.dark-theme .diamond-text,
.dark-theme .diamond-list {
    color: #FFFFFF;
}

.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;
}

/* Scoped Modern Styles for Specific Diamond Blocks */
.ag-modern-diamond-block .diamond-list li::before {
    font-size: 10px;
    top: 6px;
}

.dark-theme.ag-modern-diamond-block .diamond-title {
    color: var(--primary);
}

.dark-theme.ag-modern-diamond-block .diamond-subtitle {
    color: var(--white-color);
}


/* Responsive Layout */

/* Industrial Products Section */
.industrial-products-section {
    background-color: var(--white-color);
}

.product-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #3F4D5C;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    text-decoration: none !important;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.product-img-wrapper {
    width: 100%;
    /* height: 400px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #3F4D5C;
}

.product-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-bg {
    transform: scale(1.08);
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(63, 77, 92, 0.9) 0%, rgba(63, 77, 92, 0.4) 50%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.product-title {
    color: var(--white-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
    letter-spacing: 0;
    transition: all 0.3s ease;
}




.overly_right {
    margin-right: -150px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 50px;
}

.overly_left {
    margin-left: -150px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    margin-bottom: 50px;
}






.product-card:hover .product-title {
    color: var(--primary);
    transform: translateX(5px);
}


.arrow-icon {
    font-size: 20px;
    line-height: 20px;
    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: #0D1525;
    color: var(--white-color);
}

.game-changer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 45px;
    font-family: var(--Ubuntu);
}

.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: #FFFFFF;
}

.game-changer-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-text {
    color: var(--primary);
    font-weight: 500;
}

.game-changer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 0;
    padding-left: 20px;
    text-align: justify;
}

/* Chart Styles */
.thermal-chart-container {
    padding-left: 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(--Ubuntu);
    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: 18px;
    background: linear-gradient(to bottom, transparent 48%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0.3) 52%, transparent 52%);
}

.chart-bar {
    height: 18px;
    background: #B4E9F9;
    border-radius: 0 10px 10px 0;
    position: relative;
    z-index: 2;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0;
    box-shadow: 0 0 15px rgba(170, 229, 247, 0.2);
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.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(--Ubuntu);
    width: 140px;
    text-align: right;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    margin-left: 0;
}



/* Brochures Section */
.ag-brochure-card-col {
    margin-bottom: 40px;
}

.brochure-card {
    border: 1px solid #DADDE5;
    border-radius: 0;
    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(--primary);
    box-shadow: 0 25px 50px rgba(170, 229, 247, 0.15);
}

.brochure-img-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 24px;
}

.brochure-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brochure-card:hover .brochure-img-wrapper img {
    transform: scale(1.1);
}

.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: #0D1525;
    font-family: var(--Ubuntu);
    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 {
    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(--primary);
    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;
}

/* Different backgrounds for visual stacking effect */
.dark-bg-1 {
    background-color: #0A1020;
    z-index: 10;
}

.dark-bg-2 {
    background-color: #0D1525;
    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(--Ubuntu);
    color: #AAE5F7;
    margin-bottom: 30px;
    line-height: 1.1;
}

.sticky-desc {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
    text-align: justify;
}





/* 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: 0;
    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(--primary);
    box-shadow: 0 25px 50px rgba(170, 229, 247, 0.15);
}

.news-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 0;
    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: 400;
    color: #0D1525;
    font-family: var(--Ubuntu);
    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: #0D1525;
}

.blog-card {
    background-color: var(--white-color);
    border-radius: 0;
    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(--primary);
    box-shadow: 0 25px 60px rgba(170, 229, 247, 0.15);
}

.blog-img-wrapper {
    height: 240px;
    border-radius: 0;
    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(--Ubuntu);
}

.blog-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-author,
.blog-date {
    font-family: var(--Ubuntu);
    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(--Ubuntu);
    color: #0D1525;
    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: #060B14;
    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(--primary);
    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: #0D1525;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0px 15px 30px rgba(170, 229, 247, 0.3);
}

.ag-newsletter-btn:hover i {
    color: #0D1525;
    transform: translateX(5px);
}



/* Footer Section Styling */
.ag-main-footer {
    background-color: #0D1525;
    color: var(--white-color);
}

.ag-footer-logo {
    height: 65px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 0 0px rgba(170, 229, 247, 0));
}

/* .ag-footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(170, 229, 247, 0.4));
} */

.ag-header-logo {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 0 0px rgba(170, 229, 247, 0));
}

/* .ag-header-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(170, 229, 247, 0.5));
} */

.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(--Ubuntu);
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--white-color);
}

.ag-social-icons {
    display: flex;
    gap: 20px;
}

.ag-social-link {
    font-size: 30px;
    background: linear-gradient(92.35deg, #AFE3EE 0%, #74D7EE 100.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.ag-social-link:hover {
    transform: translateY(-5px);
}

.ag-social-link.facebook:hover {
    background: linear-gradient(92.35deg, #1877F2 0%, #1877F2 100.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ag-social-link.instagram:hover {
    background: linear-gradient(92.35deg, #E4405F 0%, #E4405F 100.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ag-social-link.youtube:hover {
    background: linear-gradient(92.35deg, #FF0000 0%, #FF0000 100.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ag-social-link.linkedin:hover {
    background: linear-gradient(92.35deg, #0A66C2 0%, #0A66C2 100.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.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(--primary);
    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(--primary);
}

.ag-contact-info-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.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(--primary);
}





/* ==========================================================================
   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;
}



/* ==========================================================================
   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: #0D1525CC;
    z-index: 2;
}

.ag-applications-title {
    font-size: 50px;
    color: var(--white-color);
    font-family: var(--Ubuntu);
    margin: 0px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    line-height: 1.6;
}



.hero-industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #060B14 0%, rgba(6, 11, 20, 0.8) 40%, transparent 100%);
    z-index: 1;
}

.ag-hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(170, 229, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 229, 247, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
    pointer-events: none;
}

.ag-applications-hero .container-fluid {
    position: relative;
    z-index: 3;
}

.ag-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(170, 229, 247, 0.05);
    border: 1px solid rgba(170, 229, 247, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.ag-hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseCyan 2s infinite;
}

.ag-hero-badge .badge-text {
    font-family: monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* 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: 0;
    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: #0D1525;
    font-family: var(--Ubuntu);
    font-size: 32px;
    font-weight: 700;
    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;
}



/* ==========================================================================
   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: #0D1525CC;
    z-index: 2;
}

.ag-products-title {
    font-size: 56px;
    color: var(--white-color);
    font-family: var(--Ubuntu);
    margin: 0px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    line-height: 1.6;
}



.ag-product-card-col {
    margin-bottom: 25px;
    margin-bottom: 25px;
    border-radius: 0;
    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(--Ubuntu);
    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(--primary);
    transition: transform 0.3s ease;
} */

.ag-product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.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: #0D1525;
    border-color: var(--white-color);
}



/* ==========================================================================
   GLOBAL: Scroll to Top
   ========================================================================== */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(13, 21, 37, 0.95), rgba(28, 42, 77, 0.9));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--white-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.7);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(170, 229, 247, 0.4);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.4),
        inset 0px 0px 20px rgba(170, 229, 247, 0.05);
    overflow: hidden;
}

#scroll-to-top::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(170, 229, 247, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

#scroll-to-top i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

#scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5), 0px 0px 20px rgba(170, 229, 247, 0.3);
}

#scroll-to-top:hover::before {
    opacity: 1;
}

#scroll-to-top:hover i {
    transform: translateY(-3px);
    color: var(--white-color);
    text-shadow: 0 0 10px var(--primary);
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) scale(1);
}



/* ==========================================================================
   11. PAGE: Product Details SECTIONS
   ========================================================================== */
.ag-pd-title {
    font-family: var(--Ubuntu);
    font-size: 44px;
    color: #0D1525;
    margin-bottom: 40px;
    font-weight: 700;
}

.ag-pd-block {
    margin-bottom: 35px;
}

.ag-pd-subtitle {
    font-size: 20px;
    color: #060B14;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: 0.2px;
}

.ag-pd-desc {
    font-size: 16px;
    font-weight: 400;
    color: #2B2E34;
    line-height: 2;
    margin-bottom: 0px;
    text-align: justify;
    letter-spacing: 0.2px;
}

.ag-pd-list-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ag-pd-list-header i {
    font-size: 24px;
    color: #060B14;
}

.ag-pd-list-title {
    font-size: 20px;
    color: #060B14;
    font-weight: 500;
    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: 400;
    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: #0D1525;
    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;
}



/* Dark Theme Modifier for Product Details */
.ag-pd-section-dark {
    background-color: #0D1525;
}

.ag-pd-section-dark .ag-pd-title {
    color: #AAE5F7;
}

.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: #AAE5F7;
}

.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);
}



.ag-pd-sub-list-col {
    padding-bottom: 0px;
}



/* ==========================================================================
   12. PAGE: About Us Hero Section
   ========================================================================== */
.ag-hero-section {
    position: relative;
    width: 100%;
    height: 800px;
    background-color: #0D1525;
    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: #0D1525B2;
    z-index: 1;
}

.ag-hero-content-col {
    position: relative;
    z-index: 2;
}

.ag-hero-title {
    font-family: var(--Ubuntu);
    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: #0D1525;
}

.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(--Ubuntu);
}

.ag-value-desc {
    font-size: 13px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0px;
    padding: 0 10px;
}

.ag-value-item-col {
    width: 14.285%;
    flex: 0 0 14.285%;
}



/* ==========================================================================
   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: #060B14;
}

.ag-contact-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #060B14;
    margin-bottom: 40px;
}

.ag-card-info-group {
    margin-bottom: 35px;
    padding-left: 20px;
}

.ag-card-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #060B14;
    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: #060B14;
}

.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: #060B14;
}

/* 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: #0D1525;
}

.ag-contact-form .form-control::placeholder {
    color: #C2C0BD;
    font-size: 13px;
}

.ag-contact-form .form-control:focus {
    border-color: #060B14;
    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;
}




/* ==========================================================================
   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: #0D1525;
    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(--Ubuntu);
    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(--primary);
    box-shadow: 0 25px 60px rgba(170, 229, 247, 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(--Ubuntu);
}

.ag-blog-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ag-blog-author,
.ag-blog-date {
    font-family: var(--Ubuntu);
    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: #0D15254D;
    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: #0EA5E9;
}

.ag-breadcrumb-sep {
    color: #DADDE5;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
}

.ag-breadcrumb-current {
    color: #060B14;
    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(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Blog Details Content */
.ag-bd-main-article-title {
    font-size: 30px;
    font-weight: 700;
    color: #060B14;
    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: #060B14;
    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: #2B2E34;
    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: #0D1525;
    color: #F2F4F8;
    padding: 10px 15px;
    border-radius: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-block;
    border: 1px solid transparent;
}

.ag-bd-tag:hover {
    background-color: #0D1525;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(170, 229, 247, 0.2);
    transform: translateY(-2px);
}

.ag-bd-inner-title {
    font-size: 20px;
    font-weight: 700;
    color: #060B14;
    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: #060B14;
    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: #060B14;
    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: #0EA5E9;
}

.ag-nav-link:hover .ag-nav-label {
    color: #0EA5E9;
}



/* ==========================================================================
   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: #0D1525;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



/* 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: #0D1525;
    color: #fff;
}

.page-link a:hover {
    color: #fff;
}

.page-link a {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.page-link.active {
    background-color: #0D1525;
    color: #fff;
}

.page-link.disabled {
    pointer-events: none;
    background-color: #ccc;
    color: #999;
}

/* Pagination End */

.error_cls {
    border-color: #f00 !important;
    background-color: #f9eeee !important;
}

.error_cls::placeholder {
    color: #f00 !important;
}

.error_cls+.cust-rdo-chkmark,
.error_cls+.cust-chkmark {
    border-color: #f00 !important;
    background-color: #f9eeee !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%;
}

footer .ag-footer-list a.active {
    color: var(--primary) !important;
}


/* ==========================================================================
   FEEDBACK PAGE STYLES
   ========================================================================== */

.ag-feedback-main-section {
    background: #f4f7fa;
}

.ag-feedback-main-section .ag-feedback-card {
    background: #fff;
    border-radius: 40px;
    padding: 0;
    box-shadow: 0 40px 100px rgba(35, 56, 112, 0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.ag-feedback-main-section .ag-form-header {
    background: #0D1525;
    padding: 30px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ag-feedback-main-section .ag-form-brand .border-start {
    border-color: rgba(170, 229, 247, 0.3) !important;
}

.ag-feedback-main-section .ag-form-brand small.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 11px;
}

.ag-feedback-main-section .ag-form-brand {
    display: flex;
    align-items: center;
}

.ag-feedback-main-section .ag-form-brand img {
    height: 50px;
}

.ag-feedback-main-section .ag-doc-ref .badge {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
}

.ag-feedback-main-section .ag-form-title-block {
    padding: 60px 60px 0px;
    text-align: center;
}

.ag-feedback-main-section .ag-form-title-block h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ag-feedback-main-section .ag-form-title-block h1 span {
    font-weight: 300;
    color: #64748b;
    margin-top: 5px;
    display: block;
}

.ag-feedback-main-section .ag-title-accent {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.ag-feedback-main-section .ag-form-title-block p {
    color: #64748b;
    font-size: 16px;
    /*max-width: 600px;
    margin: 0 auto;*/
}

.ag-feedback-main-section .ag-premium-form {
    padding: 0 60px 60px;
}

.ag-feedback-main-section .ag-form-section {
    position: relative;
    margin-bottom: 40px;
}

.ag-feedback-main-section .ag-section-head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ag-feedback-main-section .ag-section-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #060B14;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
}

.ag-feedback-main-section .ag-section-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.ag-feedback-main-section .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #2B2E34;
    margin-bottom: 10px;
    display: block;
}

.ag-feedback-main-section .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: #0D1525;
}


/* Service Chips */
.ag-feedback-main-section .ag-service-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ag-feedback-main-section .ag-chip-label {
    cursor: pointer;
}

.ag-feedback-main-section .ag-chip-label input {
    display: none;
}

.ag-feedback-main-section .ag-chip-content {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background: #f1f5f9;
    border-radius: 50px;
    color: #475569;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ag-feedback-main-section .ag-chip-content i {
    margin-right: 10px;
    font-size: 18px;
}

.ag-feedback-main-section .ag-chip-label input:checked+.ag-chip-content {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(35, 56, 112, 0.2);
}

.ag-feedback-main-section .ag-rating-dashboard {
    background: #fff;
    padding: 10px;
}

.ag-feedback-main-section .ag-rating-table {
    border-collapse: separate;
    border-spacing: 0 12px;
}

.ag-feedback-main-section .ag-rating-table thead th {
    vertical-align: middle;
    border: none;
    padding: 0 10px;
}

.ag-feedback-main-section .ag-rating-body tr {
    background: #fbfcfe;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
}

.ag-feedback-main-section .ag-rating-body td {
    border: none;
    padding: 10px 0;
}

.ag-feedback-main-section .ag-rating-body .ag-metric-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #060B14;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(35, 56, 112, 0.25);
    font-size: 20px;
}

.ag-feedback-main-section .rating-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    border-radius: 16px;
    background: #f1f5f9;
    transition: all 0.3s ease;
    min-width: 100px;
}

.ag-feedback-main-section .rating-tile i {
    font-size: 24px;
    margin-bottom: 8px;
}

.ag-feedback-main-section .tile-content {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}

.ag-feedback-main-section .tile-content span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
}

.ag-feedback-main-section .rating-tile.excellent {
    color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.ag-feedback-main-section .rating-tile.good {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.ag-feedback-main-section .rating-tile.average {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.ag-feedback-main-section .rating-tile.poor {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.ag-feedback-main-section .ag-rating-mobile-label {
    display: none;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
    color: #64748b;
}

/* Service Chips */


.ag-feedback-main-section .ag-rating-body .form-check-input {
    width: 22px;
    height: 22px;
    border-color: #cbd5e1;
    margin: 0 auto;
}

/* Signature Pad */
.ag-feedback-main-section .ag-signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ag-feedback-main-section .ag-sig-card {
    background: #fbfcfe;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    padding: 30px;
}

.ag-feedback-main-section .ag-sig-pad {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ag-feedback-main-section .jb-official {
    background: #f0f7ff;
    border-style: solid;
    border-color: #bfdbfe;
}

.ag-feedback-main-section .jb-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.15;
}

.ag-feedback-main-section .jb-seal img {
    height: 60px;
    filter: grayscale(1);
}

.ag-feedback-main-section .jb-seal span {
    font-weight: 900;
    letter-spacing: 5px;
    margin-top: 5px;
}

.ag-feedback-main-section .official-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.8;
}

.ag-feedback-main-section .ag-sig-pad i.ri-quill-pen-line {
    color: var(--primary);
}

/* Submit Section */
/* .ag-feedback-main-section .ag-premium-submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(35, 56, 112, 0.3);
    transition: all 0.3s ease;
}

.ag-feedback-main-section .ag-premium-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(35, 56, 112, 0.4);
} */



.error_cls {
    border-color: #f00 !important;
    background-color: #f9eeee !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.3);
    /* optional overlay */
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #060B14;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   PAGE: PRODUCTS GRID PAGE (Specific styles for 4-column layout)
   ========================================================================== */

.product-card-grid-col {
    margin-bottom: 30px;
}

.product-grid-item {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    height: 100%;
}

.product-grid-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-color: #3F4D5C;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-grid-item:hover .product-grid-card {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(170, 229, 247, 0.2);
}

.product-grid-img-wrapper {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-grid-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-grid-item:hover .product-grid-bg {
    transform: scale(1.1);
}

.product-grid-info {
    padding: 15px 0 0;
}

.product-grid-title {
    color: #0D1525;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 0;
    font-family: var(--Ubuntu);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-grid-item:hover .product-grid-title {
    color: #060B14;
    transform: translateX(8px);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Adding a technical accent line on hover */
.product-grid-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 5px;
}

.product-grid-item:hover .product-grid-title::after {
    width: 40px;
}



img.ag-pd-image {
    border-radius: 15px;
}



.container-fluid.plr-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.container-fluid.plr-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}


/* ==========================================================================
   7. PREMIUM MODERN DESIGN ENHANCEMENTS (Modern Design Set)
   ========================================================================== */

:root {
    --ag-primary-glow: rgba(170, 229, 247, 0.5);
    --ag-glass-bg: rgba(13, 21, 37, 0.7);
    --ag-glass-border: rgba(255, 255, 255, 0.1);
    --ag-tech-blue: #00D4FF;
}

/* Global Tech Accents */
.ag-main {
    position: relative;
}

/* Tech Grid Overlay */
.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(170, 229, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 229, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 5;
}

/* Hero Section Enhancements */
.hero-section {
    background: #060B14;
}

.hero-overlay {
    background: radial-gradient(circle at 50% 50%, rgba(13, 21, 37, 0.4) 0%, rgba(6, 11, 20, 0.8) 100%);
}

.hero-caption h1 {
    text-shadow: 0 0 20px rgba(170, 229, 247, 0.3);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.hero-caption p {
    font-weight: 300;
    opacity: 0.9;
}

/* Premium Diamond Blocks */
.ag-modern-diamond-block {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.diamond-content-block {
    backdrop-filter: blur(15px);
    border: 1px solid var(--ag-glass-border);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.overly_right,
.overly_left {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.diamond-title {
    background: linear-gradient(90deg, #060B14, #3F4D5C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.dark-theme .diamond-title {
    background: linear-gradient(90deg, #AAE5F7, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.diamond-list li::before {
    color: var(--primary) !important;
    text-shadow: 0 0 10px var(--ag-primary-glow);
}

/* Floating Animation */
@keyframes agFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.diamond-image-block .img-wrapper img {
    animation: agFloat 6s ease-in-out infinite;
}

/* Product Swiper Premium Styling */
.product-card {
    background: #0D1525;
    border: 1px solid var(--ag-glass-border);
    backdrop-filter: blur(10px);
}

.product-content {
    background: linear-gradient(to top, rgba(13, 21, 37, 0.95), transparent);
    padding: 30px !important;
}

.product-title {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px !important;
}

/* Thermal Chart Enhancements */
.chart-bar {
    background: linear-gradient(90deg, #B4E9F9, #00D4FF) !important;
    box-shadow: 0 0 20px var(--ag-primary-glow) !important;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.chart-value {
    color: #AAE5F7 !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px var(--ag-primary-glow);
}

/* Sticky Section Enhancements */
.sticky-section {
    transition: opacity 0.8s ease;
}

.sticky-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #AAE5F7, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-white {
    border-width: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}



/* Swiper Pagination Enhancement */
.ag-swiper-pagination.swiper-pagination-bullets {
    position: relative;
    bottom: 0 !important;
    margin-top: 40px;
}

.ag-swiper-pagination .swiper-pagination-bullet {
    background: var(--primary) !important;
    width: 8px !important;
    height: 8px !important;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.ag-swiper-pagination .swiper-pagination-bullet-active {
    width: 40px !important;
    border-radius: 4px !important;
    opacity: 1;
}

.ag-brochure-slider {
    /* padding: 60px 0 80px !important; */
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden !important;
}

.ag-brochure-slider .swiper-slide {
    height: auto;
    opacity: 0.3;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.85);
    filter: blur(2px);
}

.ag-brochure-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Premium Card Overrides */
.brochure-card,
.news-card,
.blog-premium-card {
    border: 1px solid var(--ag-glass-border) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.news-section .news-card,
.brochures-section .brochure-card {
    background: #FFFFFF !important;
    /* Keep light for these sections if needed, or make them dark */
}

/* Making them consistently premium */
.brochure-card:hover,
.news-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(170, 229, 247, 0.15) !important;
    border-color: var(--primary) !important;
}

.brochure-img-wrapper,
.news-img-wrapper {
    position: relative;
    overflow: hidden;
}

.brochure-img-wrapper::after,
.news-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(170, 229, 247, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brochure-card:hover .brochure-img-wrapper::after,
.news-card:hover .news-img-wrapper::after {
    opacity: 1;
}

/* Ultra-Modern Diamond Showroom Styles */
.ag-diamond-showroom {
    background: #060B14;
    position: relative;
    overflow: hidden;
}

.ag-showroom-header {
    margin-bottom: 80px;
    text-align: center;
}

.ag-status-bar {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(170, 229, 247, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid rgba(170, 229, 247, 0.2);
    margin-bottom: 20px;
}

.ag-status-code {
    font-family: monospace;
    color: var(--primary);
    font-size: 12px;
}

.ag-status-label {
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.ag-showroom-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(170, 229, 247, 0.3);
}

.ag-spec-row {
    display: flex;
    align-items: center;
    position: relative;
}

.ag-spec-row.reverse {
    flex-direction: row-reverse;
}

.ag-spec-media {
    flex: 0 0 65%;
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(170, 229, 247, 0.1);
}

.ag-main-spec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ag-spec-row:hover .ag-main-spec-img {
    filter: brightness(0.9) contrast(1.1);
}

.ag-spec-content {
    flex: 0 0 45%;
    z-index: 10;
    margin-left: -10%;
}

.ag-spec-row.reverse .ag-spec-content {
    margin-left: 0;
    margin-right: -10%;
}

.ag-spec-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.ag-spec-card.dark {
    background: rgba(13, 21, 37, 0.8);
    border-color: rgba(170, 229, 247, 0.2);
}

.ag-spec-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ag-spec-index {
    font-size: 14px;
    font-family: monospace;
    color: var(--primary);
    padding: 5px 10px;
    border: 1px solid var(--primary);
}

.ag-spec-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.ag-spec-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ag-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ag-item-title {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.ag-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ag-item-list li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ag-item-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
    /* Align with first line of text */
    flex-shrink: 0;
    /* Prevent bullet from squeezing */
}

/* HUD ELEMENTS */
.ag-hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ag-hud-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(170, 229, 247, 0.3);
    border-radius: 50%;
    animation: rotateHub 20s linear infinite;
}

@keyframes rotateHub {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ag-hud-data {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-left: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.ag-hud-data .label {
    font-size: 9px;
    color: var(--primary);
    letter-spacing: 1px;
}

.ag-hud-value {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    margin-left: 5px;
}

.ag-tech-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.ag-tech-card .mt-3.pt-3 {
    border-top: 1px solid rgba(170, 229, 247, 0.1);
}

.ag-tech-card .mt-3.pt-3 p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.ag-tech-card h5 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.ag-tech-card p:not(.ag-tech-card-text) {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.ag-hud-data.top-right {
    top: 20%;
    right: 20%;
}

.ag-hud-data.bottom-left {
    bottom: 20%;
    left: 20%;
}

.ag-hud-data.top-left {
    top: 20%;
    left: 20%;
}

.ag-hud-data.bottom-right {
    bottom: 20%;
    right: 20%;
}

.ag-hud-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 15px var(--primary);
    animation: scanVertical 4s ease-in-out infinite;
}

@keyframes scanVertical {
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {

    .ag-spec-row,
    .ag-spec-row.reverse {
        flex-direction: column;
        min-height: auto;
    }

    .ag-spec-media {
        flex: 0 0 100%;
        width: 100%;
        min-height: 300px;
    }

    .ag-spec-content {
        flex: 0 0 100%;
        width: 100%;
        margin: -50px 0 0 0 !important;
        padding: 0 20px;
    }

    .ag-spec-card {
        padding: 30px;
    }

    .ag-showroom-title {
        font-size: 32px;
    }

    .ag-hud-circle {
        width: 150px;
        height: 150px;
    }
}

.gem-theme .diamond-subtitle i {
    color: var(--primary);
}

.gem-img-wrapper {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.gem-img-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(170, 229, 247, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Industrial Theme */
.industrial-theme {
    background: rgba(13, 21, 37, 0.9) !important;
    border-color: rgba(170, 229, 247, 0.1) !important;
}

.industrial-theme .diamond-subtitle i {
    color: var(--primary);
    text-shadow: 0 0 10px var(--ag-primary-glow);
}

.industrial-img-wrapper {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.industrial-img-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.tech-lines {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image:
        linear-gradient(to right, rgba(170, 229, 247, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(170, 229, 247, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* Asymmetric Grid Adjustments */
@media (min-width: 992px) {
    .ag-gem-section .diamond-content-block {
        padding-right: 100px;
    }

    .ag-industrial-section .diamond-content-block {
        padding-left: 100px;
    }

    .overly_right {
        margin-right: -100px;
        z-index: 10;
    }

    .overly_left {
        margin-left: -100px;
        z-index: 10;
    }
}

/* High-Performance Component Catalog */
.ag-product-tile {
    background: rgba(13, 21, 37, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(170, 229, 247, 0.1);
    display: block;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.ag-product-tile:hover {
    background: rgba(170, 229, 247, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.ag-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(170, 229, 247, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.ag-part-id {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 1px;
}

.ag-tile-header i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
}

.ag-product-tile:hover .ag-tile-header i {
    color: var(--primary);
    text-shadow: 0 0 10px var(--ag-primary-glow);
}

.ag-blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 40%, rgba(0, 212, 255, 0.1) 100%),
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.ag-product-tile:hover .ag-blueprint-overlay {
    opacity: 1;
}

.ag-tile-content {
    padding: 25px 20px;
    position: relative;
    z-index: 3;
}

.ag-product-tile .product-title {
    font-size: 18px !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ag-tile-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ag-tile-meta .tag {
    font-size: 9px;
    background: rgba(170, 229, 247, 0.1);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* Bento Grid Product Showcase */
.ag-bento-showcase {
    background: #060B14;
    position: relative;
    overflow: hidden;
}

.ag-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 450px);
    gap: 24px;
}

.ag-bento-item {
    position: relative;
    overflow: hidden;
}

.ag-bento-item.lg {
    grid-column: span 7;
    grid-row: span 1;
}

.ag-bento-item.md {
    grid-column: span 5;
    grid-row: span 1;
}

.ag-bento-item.sm {
    grid-column: span 12;
    grid-row: span 1;
}

.ag-bento-card {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.1);
    position: relative;
    text-decoration: none !important;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ag-bento-card:hover {
    border-color: var(--primary);
    background: rgba(170, 229, 247, 0.05);
}

.ag-bento-media {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
    background: #04080f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-bento-item.sm .ag-bento-media {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
}

.ag-bento-item.sm .ag-bento-info {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ag-bento-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.ag-bento-card:hover .ag-bento-media img {
    transform: scale(1.1);
    opacity: 0.8;
}

.ag-bento-hud {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.ag-hud-tag {
    background: rgba(0, 0, 0, 0.6);
    color: var(--primary);
    padding: 4px 10px;
    font-size: 10px;
    font-family: monospace;
    border: 1px solid rgba(170, 229, 247, 0.3);
    letter-spacing: 1px;
}

.ag-bento-info {
    padding: 20px 30px;
    background: transparent;
}

.ag-bento-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ag-bento-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.ag-bento-link {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ag-btn-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none !important;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.ag-btn-futuristic:hover {
    background: var(--primary);
    color: #000;
}

/* Mobile Bento */
@media (max-width: 991px) {
    .ag-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .ag-bento-item.lg,
    .ag-bento-item.md,
    .ag-bento-item.sm {
        grid-column: span 1;
    }

    .ag-bento-card {
        height: auto !important;
    }

    .ag-bento-media {
        height: auto !important;
    }

    .ag-bento-item.sm .ag-bento-media,
    .ag-bento-item.sm .ag-bento-info {
        position: relative;
        width: 100%;
        height: auto !important;
    }
}


/* Performance Analytics Dashboard */
.ag-analytics-dashboard {
    background: #0D1525;
    position: relative;
    overflow: hidden;
}

.ag-dashboard-header {
    margin-bottom: 50px;
}

.ag-tech-tag {
    display: inline-block;
    font-family: monospace;
    font-size: 11px;
    color: var(--primary);
    background: rgba(170, 229, 247, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid rgba(170, 229, 247, 0.2);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.ag-dashboard-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.ag-sensor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ag-sensor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
}

.ag-sensor-card:hover {
    background: rgba(170, 229, 247, 0.05);
    border-color: var(--primary);
    transform: scale(1.02);
}

.ag-sensor-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ag-sensor-header i {
    font-size: 20px;
    color: var(--primary);
}

.ag-sensor-header span {
    font-family: monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.ag-sensor-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.ag-sensor-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Chart */
.ag-chart-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.1);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.ag-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* padding-bottom: 20px; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ag-chart-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.ag-chart-legend {
    display: flex;
    gap: 25px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    align-items: center;
}

.ag-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ag-chart-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.ag-chart-legend .dot.primary {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.ag-thermal-bars {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ag-bar-row {
    width: 100%;
}

.ag-bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ag-bar-info .label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.ag-bar-info .value {
    font-family: monospace;
    font-size: 12px;
    color: #fff;
}

.ag-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.ag-bar-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ag-bar-row.highlight .ag-bar-info .label {
    color: var(--primary);
}

.ag-bar-row.highlight .ag-bar-fill {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(170, 229, 247, 0.5);
    position: relative;
}

.ag-bar-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: barScan 3s linear infinite;
}

@keyframes barScan {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(400%);
    }
}

.ag-chart-footer {
    margin-top: 30px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .ag-sensor-grid {
        grid-template-columns: 1fr;
    }

    .ag-dashboard-title {
        font-size: 32px;
    }

    .ag-chart-container {
        padding: 20px;
    }
}


/* Technical Whitepaper Archive */
.ag-dossier-tile {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.ag-dossier-tile:hover {
    background: rgba(170, 229, 247, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.ag-dossier-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ag-doc-id {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 1px;
}

.ag-language-module {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ag-language-module img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.ag-language-module span {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.ag-dossier-media {
    position: relative;
    padding: 20px;
    background: #000;
}

.ag-dossier-media .brochure-img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.ag-dossier-tile:hover .ag-dossier-media .brochure-img {
    transform: scale(1.05);
}

.ag-dossier-content {
    padding: 25px 20px;
}

.ag-dossier-tile .brochure-title {
    font-size: 18px !important;
    color: #fff !important;
    margin-bottom: 25px !important;
    min-height: 2.4em;
}

.ag-dossier-actions {
    display: flex;
}

.ag-btn-export {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none !important;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.ag-btn-export:hover {
    background: var(--primary);
    color: #000;
}


/* Technical Document Manager */
.ag-doc-manager {
    background: #060B14;
    position: relative;
}

.ag-manager-header {
    text-align: left;
}

.ag-manager-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-top: 15px;
}

.ag-file-system {
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.ag-file-header {
    display: flex;
    background: rgba(170, 229, 247, 0.05);
    padding: 15px 30px;
    border-bottom: 1px solid rgba(170, 229, 247, 0.1);
}

.ag-file-header div {
    font-family: monospace;
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.ag-file-row {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.ag-file-row:hover {
    background: rgba(170, 229, 247, 0.03);
    border-color: rgba(170, 229, 247, 0.2);
}

.ag-col-id {
    width: 10%;
}

.ag-col-name {
    width: 50%;
}

.ag-col-lang {
    width: 15%;
}

.ag-col-size {
    width: 10%;
}

.ag-col-action {
    width: 15%;
    text-align: right;
}

.ag-row-index {
    font-family: monospace;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.ag-doc-preview {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ag-doc-preview img {
    width: 40px;
    height: 50px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ag-doc-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.ag-doc-type {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    opacity: 0.6;
}

.ag-lang-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ag-lang-tag img {
    width: 18px;
    border-radius: 2px;
}

.ag-lang-tag span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.ag-status-pill {
    font-family: monospace;
    font-size: 9px;
    padding: 2px 8px;
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.ag-btn-transfer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none !important;
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ag-btn-transfer:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--ag-primary-glow);
}

.ag-btn-transfer i {
    font-size: 18px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {

    .ag-col-lang,
    .ag-col-size,
    .ag-col-id {
        display: none;
    }

    .ag-col-name {
        width: 80%;
    }

    .ag-col-action {
        width: 20%;
    }

    .ag-file-row {
        padding: 15px;
    }
}


/* Technical Explorer Window */
.ag-explorer-window {
    display: flex;
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.2);
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.ag-explorer-sidebar {
    width: 350px;
    border-right: 1px solid rgba(170, 229, 247, 0.1);
    display: flex;
    flex-direction: column;
}

.ag-sidebar-header {
    padding: 20px;
    background: rgba(170, 229, 247, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(170, 229, 247, 0.1);
}

.ag-os-label {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
}

.ag-os-dots {
    display: flex;
    gap: 5px;
}

.ag-os-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.ag-sidebar-list {
    flex: 1;
    overflow-y: auto;
}

.ag-nav-item {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ag-nav-item:hover,
.ag-nav-item.active {
    background: rgba(170, 229, 247, 0.05);
}

.ag-nav-id {
    font-family: monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.ag-nav-item.active .ag-nav-id {
    color: var(--primary);
}

.ag-nav-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.ag-nav-item.active .ag-nav-title {
    color: #fff;
}

.ag-nav-meta {
    font-family: monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Visualizer Main Area */
.ag-explorer-main {
    flex: 1;
    position: relative;
    background: #000;
}

.ag-doc-visualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.ag-doc-visualizer.active {
    opacity: 1;
    visibility: visible;
}

.ag-visualizer-bg {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #060b14;
}

.ag-visualizer-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    opacity: 0.8;
}

.ag-blueprint-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: scanMove 4s linear infinite;
    z-index: 10;
}

@keyframes scanMove {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.ag-visualizer-content {
    padding: 30px 40px;
    background: rgba(13, 21, 37, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(170, 229, 247, 0.1);
}

.ag-doc-name {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.ag-doc-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.ag-doc-tags .tag {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    background: rgba(170, 229, 247, 0.1);
    padding: 4px 12px;
    border: 1px solid rgba(170, 229, 247, 0.2);
}

.ag-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: var(--primary);
    color: #000;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ag-btn-download:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Mobile Explorer */
@media (max-width: 991px) {
    .ag-explorer-window {
        flex-direction: column;
        height: auto;
    }

    .ag-explorer-sidebar {
        width: 100%;
        height: 200px;
    }

    .ag-explorer-main {
        height: 500px;
    }
}


/* 3D Perspective Ribbon */
.ag-ribbon-showcase {
    background: #060B14;
    overflow: hidden;
    perspective: 1000px;
}

.ag-ribbon-container {
    padding: 50px 0;
}

.ag-ribbon-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 20px;
    scrollbar-width: none;
}

.ag-ribbon-track::-webkit-scrollbar {
    display: none;
}

.ag-ribbon-item {
    flex: 0 0 350px;
    transform-style: preserve-3d;
}

.ag-ribbon-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(170, 229, 247, 0.1);
    position: relative;
    padding: 20px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotateY(-25deg);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
}

.ag-ribbon-item:hover .ag-ribbon-card {
    transform: rotateY(0deg) scale(1.05);
    border-color: var(--primary);
    background: rgba(170, 229, 247, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.ag-card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    opacity: 0.3;
}

.ag-card-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0;
}

.ag-card-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0;
}

.ag-card-media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #000;
    margin-bottom: 20px;
}

.ag-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s ease;
}

.ag-ribbon-item:hover .ag-card-media img {
    transform: scale(1.1);
}

.ag-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 11, 20, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ag-ribbon-item:hover .ag-card-overlay {
    opacity: 1;
}

.ag-overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ag-lang-module {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ag-lang-module img {
    width: 16px;
    border-radius: 2px;
}

.ag-lang-module span {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.ag-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none !important;
}

.ag-card-info {
    text-align: left;
}

.ag-card-id {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: block;
}

.ag-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}


/* Holographic Showcase */
.ag-hologram-showcase {
    background: #060B14;
    position: relative;
    overflow: hidden;
}

.ag-hologram-pod {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
}

.ag-hologram-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    z-index: 1;
}

.ag-base-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary), inset 0 0 20px var(--primary);
    animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) rotateX(75deg) scale(0.9);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotateX(75deg) scale(1.1);
    }
}

.ag-base-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: var(--primary);
    filter: blur(15px);
    opacity: 0.4;
    border-radius: 50%;
}

.ag-projection-beams {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 150px;
    pointer-events: none;
}

.ag-projection-beams span {
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, var(--primary), transparent);
    opacity: 0.3;
}

.ag-projection-beams span:nth-child(1) {
    left: 20%;
    animation: beamFloat 4s infinite 0.5s;
}

.ag-projection-beams span:nth-child(2) {
    left: 50%;
    animation: beamFloat 4s infinite;
}

.ag-projection-beams span:nth-child(3) {
    left: 80%;
    animation: beamFloat 4s infinite 1s;
}

@keyframes beamFloat {

    0%,
    100% {
        height: 0;
        opacity: 0;
    }

    50% {
        height: 100%;
        opacity: 0.5;
    }
}

.ag-hologram-content {
    position: relative;
    z-index: 5;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
}

.ag-hologram-pod:hover .ag-hologram-content {
    transform: translateY(-30px);
}

.ag-hologram-media {
    width: 80%;
    aspect-ratio: 4/3;
    margin: 0 auto 30px;
    position: relative;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: all 0.6s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.ag-hologram-pod:hover .ag-hologram-media {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.ag-hologram-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(170, 229, 247, 0.3);
    filter: brightness(0.8) contrast(1.1);
}

.ag-media-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 45%, rgba(170, 229, 247, 0.2) 50%, transparent 55%);
    background-size: 100% 200%;
    animation: hologramGlitch 3s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes hologramGlitch {
    0% {
        background-position: 0 100%;
    }

    100% {
        background-position: 0 -100%;
    }
}

.ag-hologram-info {
    text-align: center;
    padding: 0 20px;
}

.ag-info-id {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.6;
}

.ag-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    min-height: 2.4em;
}

.ag-hologram-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.ag-lang-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 4px;
}

.ag-lang-badge img {
    width: 14px;
    border-radius: 2px;
}

.ag-lang-badge span {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.ag-btn-hologram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: var(--primary);
    color: #000;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ag-btn-hologram:hover {
    background: #fff;
    color: #060B14 !important;
    transform: scale(1.05);
}


/* Global Spacing for Technical Showroom Sections */
.ag-showroom-header,
.ag-dashboard-header,
.ag-manager-header,
.section-title {
    margin-bottom: 30px !important;
}

/* Call to Action Button Spacing */
.ag-news-feed .mt-5,
.ag-hologram-showcase .mt-5,
.ag-analytics-dashboard .mt-5,
.ag-bento-showcase .mt-5,
.ag-insight-journal .mt-5,
.industrial-products-section .mt-20 {
    margin-top: 30px !important;
}

@media (max-width: 767px) {

    .ag-showroom-header,
    .ag-dashboard-header,
    .section-title {
        margin-bottom: 20px !important;
    }

    .ag-news-feed .mt-5,
    .ag-hologram-showcase .mt-5,
    .ag-analytics-dashboard .mt-5,
    .ag-bento-showcase .mt-5 {
        margin-top: 40px !important;
    }
}


/* Intelligence News Matrix */
.ag-news-feed {
    background: #0D1525;
    position: relative;
    overflow: hidden;
}

.ag-news-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ag-node-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none !important;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ag-node-card:hover {
    border-color: var(--primary);
    background: rgba(170, 229, 247, 0.05);
    transform: translateY(-5px);
}

.ag-node-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.ag-node-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.6s ease;
}

.ag-node-card:hover .ag-node-media img {
    transform: scale(1.1);
    opacity: 0.9;
}

.ag-node-status {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(170, 229, 247, 0.3);
}

.ag-status-pulse {
    width: 6px;
    height: 6px;
    background: #00ff9d;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff9d;
    animation: pulseSignal 2s infinite;
}

@keyframes pulseSignal {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ag-status-text {
    font-family: monospace;
    font-size: 9px;
    color: #00ff9d;
    letter-spacing: 1px;
}

.ag-node-content {
    padding: 25px;
}

.ag-node-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.ag-node-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.ag-node-ref {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
}

.ag-node-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.5;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ag-node-link {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.ag-node-card:hover .ag-node-link {
    opacity: 1;
    gap: 15px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .ag-news-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ag-news-matrix {
        grid-template-columns: 1fr;
    }
}


/* Insight Journal List */
.ag-insight-journal {
    background: #060B14;
    position: relative;
    overflow: hidden;
}

.ag-journal-list {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ag-insight-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.ag-insight-link {
    display: flex;
    align-items: center;
    padding: 40px 0;
    text-decoration: none !important;
    position: relative;
    gap: 50px;
}

.ag-insight-row:hover {
    background: rgba(170, 229, 247, 0.03);
    padding-left: 20px;
}

.ag-row-index {
    font-family: monospace;
    font-size: 14px;
    color: var(--primary);
    opacity: 0.3;
    font-weight: 700;
}

.ag-insight-row:hover .ag-row-index {
    opacity: 1;
}

.ag-row-main {
    flex: 1;
}

.ag-row-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.ag-row-meta .tag {
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.ag-row-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.ag-insight-row:hover .ag-row-title {
    color: var(--primary);
}

.ag-row-preview {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ag-row-preview img {
    width: 150px;
    height: 80px;
    object-fit: cover;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    border: 1px solid var(--primary);
}

.ag-insight-row:hover .ag-row-preview img {
    opacity: 1;
    transform: translateX(0);
}

.ag-row-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.ag-insight-row:hover .ag-row-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    transform: rotate(-45deg);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .ag-insight-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 0;
    }

    .ag-row-preview img {
        display: none;
    }

    .ag-row-title {
        font-size: 20px;
    }
}



/* Secure Extraction Modal */
.ag-secure-modal .modal-content {
    background: #060B14;
    border: 1px solid rgba(170, 229, 247, 0.2);
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.ag-secure-modal .modal-header {
    border-bottom: 1px solid rgba(170, 229, 247, 0.1);
    background: rgba(170, 229, 247, 0.05);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ag-modal-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ag-pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3333;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.ag-secure-modal .modal-title {
    font-family: monospace;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    margin: 0;
}

.ag-modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    transition: all 0.3s ease;
}

.ag-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.ag-secure-modal .modal-body {
    padding: 40px 30px;
    position: relative;
}

.ag-modal-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(170, 229, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 229, 247, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.ag-modal-doc-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.ag-modal-doc-ref {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary);
    opacity: 0.6;
}

.ag-auth-field {
    margin-bottom: 20px;
}

.ag-field-label {
    font-family: monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

.ag-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.1);
    padding: 0 20px;
    gap: 15px;
    transition: all 0.3s ease;
}

.ag-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(170, 229, 247, 0.1);
}

.ag-input-wrapper i {
    color: var(--primary);
    font-size: 18px;
    opacity: 0.6;
}

.ag-terminal-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 15px 0;
    font-family: monospace;
    font-size: 14px;
    outline: none !important;
    box-shadow: none !important;
}

.ag-terminal-input:focus {
    background: transparent !important;
    color: #fff !important;
}

.ag-btn-auth {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(170, 229, 247, 0.1);
    padding-left: 20px;
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.ag-btn-auth:hover {
    color: #fff;
}

.ag-btn-extract {
    background: var(--primary);
    border: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    margin: 5px -15px 5px 0;
}

.ag-field-note {
    font-family: monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}


/* Modern Industry Card Design */
.ag-modern-industry {
    background: #060B14;
    position: relative;
    overflow: hidden;
}

.ag-industry-card {
    display: flex;
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.1);
    border-radius: 4px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.ag-industry-card:hover {
    border-color: rgba(170, 229, 247, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.ag-industry-media {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.ag-industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s ease;
}

.ag-industry-card:hover .ag-industry-img {
    transform: scale(1.05);
}

.ag-industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(13, 21, 37, 0.8) 95%, #0d1525 100%);
    z-index: 1;
}

.ag-industry-card.ag-reverse-layout {
    flex-direction: row-reverse;
}

.ag-industry-card.ag-reverse-layout .ag-industry-overlay {
    background: linear-gradient(to left, transparent, rgba(13, 21, 37, 0.8) 95%, #0d1525 100%);
}


.ag-industry-hud {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border: 1px solid rgba(170, 229, 247, 0.2);
    border-radius: 2px;
}

.ag-industry-hud.top-right {
    top: 20px;
    right: 20px;
}

.ag-industry-hud.top-left {
    top: 20px;
    left: 20px;
}

.ag-industry-hud .ag-info-id {
    display: inline-block;
    margin-bottom: 0;
}

.ag-hud-pulse {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseCyan 2s infinite;
}

@keyframes pulseCyan {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.ag-industry-content {
    width: 55%;
    padding: 50px 60px;
    position: relative;
    z-index: 2;
    background: #0d1525;
}

.ag-industry-header {
    margin-bottom: 30px;
}

.ag-industry-id {
    font-family: monospace;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.ag-industry-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.ag-industry-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-align: justify;
}

.ag-industry-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(170, 229, 247, 0.1);
    padding-top: 30px;
}

.ag-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.ag-feature-item i {
    font-size: 24px;
    color: var(--primary);
    background: rgba(170, 229, 247, 0.05);
    padding: 10px;
    border-radius: 4px;
    border: 1px solid rgba(170, 229, 247, 0.1);
}

.ag-feature-item span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments for Modern Industry Card */
@media (max-width: 991.98px) {

    .ag-industry-card,
    .ag-industry-card.ag-reverse-layout {
        flex-direction: column !important;
    }

    .ag-industry-media {
        width: 100%;
        height: auto;
        order: 1 !important;
    }

    .ag-industry-content {
        width: 100%;
        padding: 40px 30px;
        order: 2 !important;
    }

    .ag-industry-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .ag-industry-title {
        font-size: 28px !important;
    }

    .ag-industry-content {
        padding: 30px 20px !important;
    }

    .ag-industry-desc {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 575.98px) {
    .ag-industry-title {
        font-size: 24px !important;
    }

    /* .ag-industry-media {
        height: 200px !important;
    } */
}

/* Fix Modal Input Autofill and Placeholder */
.ag-terminal-input::placeholder {
    color: rgba(170, 229, 247, 0.7) !important;
}

.ag-input-wrapper {
    background: #060B14 !important;
}

/* Override Browser Autofill Styles */
.ag-terminal-input:-webkit-autofill,
.ag-terminal-input:-webkit-autofill:hover,
.ag-terminal-input:-webkit-autofill:focus,
.ag-terminal-input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #060b14 inset !important;
    box-shadow: 0 0 0px 1000px #060b14 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.ag-input-wrapper:hover {
    border-color: var(--primary);
}


/* Hard Reset for Browser Autofill */
.ag-terminal-input:-webkit-autofill,
.ag-terminal-input:-webkit-autofill:hover,
.ag-terminal-input:-webkit-autofill:focus,
.ag-terminal-input:-webkit-autofill:active {
    background-color: transparent !important;
    background-image: none !important;
    -webkit-box-shadow: 0 0 0 1000px #060b14 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

/* Ensure the wrapper doesn't clash */


/* Terminal Title Effects */
.ag-terminal-prefix {
    color: var(--primary);
    margin-right: 5px;
    font-weight: 800;
}

.ag-terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--primary);
    margin-left: 8px;
    vertical-align: middle;
    animation: ag-terminal-blink 1s step-end infinite;
}

@keyframes ag-terminal-blink {
    50% {
        opacity: 0;
    }
}


/* Global Responsive Refinement */

/* 1440px - 1680px (Large Desktop) */
@media (max-width: 1680.98px) {
    .ag-showroom-title {
        font-size: 42px;
    }
}

@media (max-width: 1440.98px) {
    .container {
        max-width: 1320px;
    }
}

/* 1200px - 1399px (Laptops) */
@media (max-width: 1399.98px) {
    .ag-bento-grid {
        grid-template-rows: repeat(2, 250px);
    }

    .ag-hologram-pod {
        height: 500px;
    }
}

@media (max-width: 1280.98px) {
    .ag-showroom-title {
        font-size: 36px;
    }
}

/* 992px - 1199px (Large Tablets / Small Laptops) */
@media (max-width: 1199.98px) {
    .ag-news-matrix {
        grid-template-columns: repeat(2, 1fr);
    }

    .ag-hologram-pod {
        height: 480px;
    }

    .ag-row-title {
        font-size: 24px;
    }
}

/* 768px - 991px (Tablets) */
@media (max-width: 991.98px) {
    .ag-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .ag-hologram-pod {
        height: auto;
        padding-bottom: 30px;
    }

    .ag-hologram-base {
        bottom: 20px;
    }

    .ag-init-container {
        padding: 40px;
    }
}

/* 576px - 767px (Large Mobile) */
@media (max-width: 767.98px) {
    .ag-news-matrix {
        grid-template-columns: 1fr;
    }

    .ag-showroom-title {
        font-size: 28px;
    }

    .ag-insight-link {
        gap: 15px;
    }

    .ag-row-index {
        display: none;
    }
}

/* 480px - 575px (Mobiles) */
@media (max-width: 575.98px) {
    .ag-init-title {
        font-size: 24px;
    }

    .ag-status-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .ag-hologram-media {
        width: 100%;
    }
}

/* 360px - 480px (Small Mobiles) */
@media (max-width: 480.98px) {
    .ag-btn-futuristic span {
        font-size: 10px;
    }

    .ag-init-input-group {
        flex-direction: column;
    }

    .ag-input-prefix {
        border-bottom: 1px solid rgba(170, 229, 247, 0.1);
    }
}

@media (max-width: 360.98px) {
    .ag-showroom-title {
        font-size: 22px;
    }

    .ag-row-title {
        font-size: 18px;
    }
}


/* 1680.98px Refinement */
@media (max-width: 1680.98px) {

    .ag-showroom-title {
        font-size: 40px;
    }

    .sticky-title {
        font-size: 55px;
    }
}

/* 1440.98px Refinement */
@media (max-width: 1440.98px) {
    .container {
        max-width: 1280px;
    }

    .ag-showroom-header {
        margin-bottom: 60px !important;
    }

    .sticky-desc {
        font-size: 18px;
        line-height: 1.6;
    }
}

/* 1399.98px Refinement */
@media (max-width: 1399.98px) {

    .ag-bento-grid {
        grid-template-rows: repeat(2, 280px);
        gap: 15px;
    }

    .ag-showroom-title {
        font-size: 36px;
    }
}

/* 1280.98px Refinement */
@media (max-width: 1280.98px) {
    .sticky-title {
        font-size: 48px;
    }

    .ag-hologram-pod {
        height: 480px;
    }

    .ag-init-container {
        padding: 50px;
    }
}

/* 1199.98px Refinement */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 42px;
    }

    .diamond-title {
        font-size: 36px;
    }

    .ag-news-matrix {
        gap: 20px;
    }

    .ag-insight-link {
        padding: 30px 0;
    }

    .ag-row-title {
        font-size: 24px;
    }
}

/* 991.98px Refinement */
@media (max-width: 991.98px) {

    .hero-caption {
        max-width: 100%;
    }

    .ag-newsletter-form {
        width: 100%;
        max-width: 100%;
    }

    .ag-newsletter-input-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .ag-newsletter-input {
        width: 100% !important;
    }

    .ag-newsletter-btn {
        width: 100% !important;
    }

    .ag-footer-contact-col {
        margin-top: 20px;
    }

    .ag-showroom-header {
        margin-bottom: 40px !important;
    }

    .ag-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .ag-bento-media {
        height: 250px !important;
    }

    .ag-bento-item.sm .ag-bento-media {
        position: relative;
        width: 100%;
        height: 350px !important;
    }

    .ag-bento-item.sm .ag-bento-info {
        position: relative;
        width: 100%;
        height: auto;
    }

    .ag-hologram-pod {
        height: auto;
        margin-bottom: 40px;
    }

    .sticky-title {
        font-size: 40px;
    }

    .sticky-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* 767.98px Refinement */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 14px;
        text-align: left;
        /* Justify looks bad on small screens */
    }

    .diamond-title {
        font-size: 28px;
    }

    .diamond-subtitle {
        font-size: 20px;
    }

    .ag-applications-title {
        font-size: 32px;
    }

    .ag-products-title {
        font-size: 36px;
    }

    .ag-spec-title {
        font-size: 24px;
    }

    .ag-spec-desc {
        font-size: 15px;
        margin-bottom: 20px;
        /* Reduce margin on mobile too */
    }

    .ag-spec-grid {
        grid-template-columns: 1fr;
    }

    .ag-spec-row {
        flex-direction: column !important;
    }

    .ag-spec-media {
        flex: 0 0 100% !important;
        width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
    }

    .ag-spec-content {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 30px 20px;
        background: rgba(13, 21, 37, 0.9);
        /* Ensure readable bg */
    }

    .ag-hologram-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .ag-lang-badge,
    .ag-btn-hologram {
        width: 100%;
        justify-content: center;
    }

    .sticky-title {
        font-size: 36px;
    }

    .ag-bento-title {
        font-size: 20px;
    }

    .ag-dashboard-title {
        font-size: 28px;
    }

    .container-fluid.plr-80 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .container-fluid.plr-30 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .ag-footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }

    .ag-footer-bottom-left {
        text-align: center;
    }

    .ag-footer-row {
        text-align: left;
    }

    .ag-social-icons {
        justify-content: flex-start;
    }

    .ag-contact-info-wrap {
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ptb-50 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .ag-news-matrix {
        grid-template-columns: 1fr;
    }

    .ag-showroom-title {
        font-size: 30px;
    }

    .ag-insight-link {
        flex-direction: column;
        gap: 10px;
    }

    .ag-row-meta {
        gap: 10px;
    }

    .ag-init-title {
        font-size: 28px;
    }
}

/* 575.98px Refinement */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 26px;
    }

    .ag-showroom-title {
        font-size: 24px;
    }

    .ag-footer-list {
        margin-left: 0;
    }

    .ag-footer-list li {
        padding-left: 0;
    }

    .ag-footer-list li::before {
        display: none;
        /* Remove bullets for centered list */
    }

    .ag-showroom-header {
        margin-bottom: 30px !important;
    }

    .ag-status-bar {
        padding: 5px 10px;
    }

    .ag-status-code {
        font-size: 8px;
    }

    .sticky-title {
        font-size: 32px;
    }

    .ag-init-container {
        padding: 30px 20px;
    }
}

/* 480.98px Refinement */
@media (max-width: 480.98px) {
    .ag-showroom-title {
        font-size: 26px;
    }

    .ag-node-title {
        font-size: 16px;
    }

    .ag-btn-futuristic span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .ag-row-title {
        font-size: 20px;
    }
}

/* 360.98px Refinement */
@media (max-width: 360.98px) {
    .ag-showroom-title {
        font-size: 22px;
    }

    .sticky-title {
        font-size: 28px;
    }

    .ag-init-title {
        font-size: 22px;
    }

    .ag-terminal-input {
        font-size: 12px;
    }
}

/* New Tech Cards for Applications */
.ag-tech-cards-section {
    background-color: #060B14;
    position: relative;
    overflow: hidden;
}

.ag-tech-card {
    height: 100%;
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.1);
    border-radius: 4px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ag-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ag-tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(170, 229, 247, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: rgba(13, 21, 37, 0.6);
}

.ag-tech-card:hover::before {
    transform: scaleX(1);
}

.ag-tech-card-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.ag-tech-card:hover .ag-tech-card-icon {
    opacity: 1;
    transform: scale(1.1);
}

.ag-tech-card-title {
    color: var(--white-color);
    font-family: var(--Ubuntu);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.ag-tech-card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0px;
    font-weight: 300;
}

.ag-tech-card-id {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: monospace;
    font-size: 10px;
    color: rgba(170, 229, 247, 0.2);
    letter-spacing: 2px;
}

/* Modern Products Grid (Dark Tech Theme) */
.ag-modern-products-section {
    background-color: #060B14;
    position: relative;
    padding-bottom: 80px;
    padding-top: 80px;
}

.ag-modern-product-item {
    display: block;
    text-decoration: none !important;
    height: 100%;
}

.ag-modern-product-card {
    position: relative;
    background: rgba(13, 21, 37, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.1);
    border-radius: 4px;
    padding: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ag-modern-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 5;
}

.ag-modern-product-item:hover .ag-modern-product-card {
    transform: translateY(-8px);
    border-color: rgba(170, 229, 247, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: rgba(13, 21, 37, 0.6);
}

.ag-modern-product-item:hover .ag-modern-product-card::before {
    transform: scaleX(1);
}

.ag-modern-product-img-wrapper {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, rgba(170, 229, 247, 0.1) 0%, #060B14 70%);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-modern-product-bg {
    width: 75%;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.ag-modern-product-item:hover .ag-modern-product-bg {
    transform: scale(1.1) translateY(-5px);
}

.ag-modern-product-info {
    padding: 10px 5px 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ag-modern-product-title {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    font-family: var(--Ubuntu);
    margin-bottom: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.ag-modern-product-item:hover .ag-modern-product-title {
    color: var(--primary);
}

.ag-modern-product-hud {
    display: flex;
    align-items: center;
}

.ag-modern-product-id {
    font-family: monospace;
    font-size: 10px;
    color: rgba(170, 229, 247, 0.5);
    letter-spacing: 2px;
}

.ag-modern-product-arrow {
    color: var(--primary);
    font-size: 16px;
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.ag-modern-product-item:hover .ag-modern-product-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* Contact Page Styles */
.ag-contact-hero {
    background-image: url('../images/contact-hero-bg.jpg');
    position: relative;
}

/* .ag-contact-title-lg {
    font-size: 28px !important;
    color: #fff !important;
} */

.ag-contact-label {
    font-size: 11px !important;
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: monospace;
}

.ag-contact-input {
    background: rgba(13, 21, 37, 0.6) !important;
    border: 1px solid rgba(170, 229, 247, 0.2) !important;
    color: #fff !important;
    padding: 12px 20px !important;
}

.ag-contact-input:focus {
    background: rgba(13, 21, 37, 0.8) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    outline: none;
}

.ag-contact-textarea {
    resize: none !important;
}

.ag-contact-btn {
    height: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
}

.ag-contact-info-title {
    font-size: 14px !important;
    color: var(--primary) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: monospace;
}

.ag-contact-info-text {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #fff !important;
}

.ag-contact-link {
    color: #fff !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.ag-contact-link:hover {
    color: var(--primary) !important;
}

.ag-captcha-canvas {
    border: 1px solid rgba(170, 229, 247, 0.2) !important;
    display: block;
}

.ag-captcha-input {
    height: 50px !important;
}

.ag-contact-container {
    position: relative;
    z-index: 3;
}

/* News Card Styles */
.ag-news-card {
    background: rgba(13, 21, 37, 0.4) !important;
    border: 1px solid rgba(170, 229, 247, 0.1) !important;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.ag-news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(170, 229, 247, 0.3) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.ag-news-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.ag-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ag-news-card:hover .ag-news-img {
    transform: scale(1.1);
}

.ag-news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.ag-news-title {
    font-size: 18px !important;
    color: #fff !important;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ag-news-date {
    font-size: 12px !important;
    color: rgba(170, 229, 247, 0.6) !important;
    font-family: monospace;
    letter-spacing: 1px;
}

/* Blog Card Cyber Styles */
.ag-blog-card-cyber {
    background: rgba(13, 21, 37, 0.4) !important;
    border: 1px solid rgba(170, 229, 247, 0.1) !important;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.ag-blog-card-cyber:hover {
    transform: translateY(-5px);
    border-color: rgba(170, 229, 247, 0.3) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.ag-blog-card-cyber .ag-blog-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.ag-blog-card-cyber .ag-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ag-blog-card-cyber:hover .ag-blog-img {
    transform: scale(1.1);
}

.ag-blog-card-cyber .ag-blog-content {
    padding: 20px;
    flex-grow: 1;
}

.ag-blog-card-cyber .ag-blog-title {
    font-size: 18px !important;
    color: #fff !important;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ag-blog-card-cyber .ag-blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 20px 20px;
    border-top: 1px solid rgba(170, 229, 247, 0.1);
    margin-top: auto;
}

.ag-blog-card-cyber .ag-blog-author {
    font-size: 12px !important;
    color: rgba(170, 229, 247, 0.6) !important;
    font-family: monospace;
}

.ag-blog-card-cyber .ag-blog-date {
    font-size: 12px !important;
    color: rgba(170, 229, 247, 0.4) !important;
    font-family: monospace;
}

/* Empty State Styles */
.ag-empty-state-icon {
    font-size: 48px !important;
    color: var(--primary) !important;
    display: block;
    margin-bottom: 20px;
}

.ag-empty-state-title {
    font-size: 24px !important;
    color: #fff !important;
    margin-bottom: 10px;
}

.ag-empty-state-text {
    color: rgba(170, 229, 247, 0.6) !important;
    font-size: 16px !important;
}

/* List Icon Spacing */
.ag-tech-card ul li i {
    margin-right: 5px;
    vertical-align: middle;
}

/* Blog & News Details Specific Styles */
.ag-hero-date-styled {
    color: rgba(170, 229, 247, 0.6) !important;
    font-family: monospace;
    letter-spacing: 1px;
}

.ag-news-content-main {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8;
    font-size: 14px;
    padding: 20px 15px;
}

.ag-bd-text-list {
    list-style: none !important;
    padding-left: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.ag-bd-text-list li {
    list-style: none !important;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.ag-bd-text-list li::before {
    display: none;
}

.ag-title-20 {
    font-size: 20px !important;
    color: #fff !important;
}

.ag-title-22 {
    font-size: 22px !important;
    color: #fff !important;
}

.ag-title-18 {
    font-size: 18px !important;
    color: #fff !important;
}

.ag-bd-step-label-styled {
    color: var(--primary) !important;
    font-size: 16px !important;
}

.ag-nav-card {
    border: 1px solid rgba(170, 229, 247, 0.1) !important;
    transition: all 0.3s ease;
}

.ag-nav-card:hover {
    border-color: rgba(170, 229, 247, 0.3) !important;
    background: rgba(13, 21, 37, 0.6) !important;
}

.ag-nav-label {
    color: var(--primary) !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ag-bd-text-list li i {
    color: var(--primary) !important;
    font-size: 6px !important;
    vertical-align: middle;
    margin-right: 10px !important;
}

.dark-bg-section {
    background: #090e1a !important;
}

.ag-details-section {
    padding-bottom: 150px !important;
}

.ag-nav-row {
    margin-bottom: 50px !important;
    position: relative;
    z-index: 10;
}

.ag-news-details-content .ag-tech-card,
.ag-blog-details-section .ag-tech-card {
    height: auto !important;
}

.ag-breadcrumb-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ag-breadcrumb-link:hover {
    color: var(--primary) !important;
}

.ag-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 10px;
}

.ag-nav-title {
    color: #fff !important;
    font-size: 16px !important;
}

/* Footer Styles */
.ag-main-footer {
    background: #090e1a;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    padding-top: 60px;
}

.ag-footer-glow-line {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
    opacity: 0.5;
}

.ag-footer-logo {
    height: 40px;
}

.ag-footer-about {
    font-size: 14px;
    line-height: 1.6;
}

.ag-footer-heading {
    font-size: 24px;
    font-family: var(--Ubuntu);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: #fff;
}

.ag-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255,255,255,0.05); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ag-social-link i {
    color: #00f0ff !important;
    font-size: 18px;
}

.ag-footer-list li a {
    font-size: 14px;
    transition: color 0.3s ease;
}

.ag-footer-list li a:hover {
    color: #00f0ff !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
    text-decoration: none;
}

.ag-contact-item a:hover {
    color: #00f0ff !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
    text-decoration: none;
}

.ag-contact-item {
    font-size: 14px;
}

.ag-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    background: #090e1a !important;
}

.ag-copyright {
    font-size: 12px;
}

.ag-privacy-link {
    font-size: 12px;
    transition: color 0.3s ease;
}


/* Custom AOS Technical Reveal */
[data-aos="technical-reveal"] {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
    transition-property: transform, opacity, filter;
}

[data-aos="technical-reveal"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* ==========================================================================
   17. GLOBAL RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 1680.98px) {
    .section-title {
        margin-bottom: 45px;
    }

    .product-title {
        font-size: 19px;
    }

    .overly_right {
        margin-right: -130px;
    }

    .overly_left {
        margin-left: -130px;
    }

    .container-fluid.px-5 {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .ag-applications-hero {
        height: 800px;
    }

    .ag-applications-title {
        font-size: 52px;
    }

    .ag-products-hero {
        height: 800px;
    }

    .ag-products-title {
        font-size: 52px;
    }

    .ag-hero-section {
        height: 750px;
    }

    .ag-hero-title {
        font-size: 48px;
    }

    .ag-contact-card {
        padding: 45px 40px;
    }

    .ag-contact-card-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .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;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 40px;
    }

    /* .product-grid-img-wrapper {
        height: 250px;
    } */

    .product-grid-title {
        font-size: 17px;
    }

    .product-card-grid-col {
        margin-bottom: 40px;
    }

    .container-fluid.plr-80 {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }
}

@media (max-width: 1440.98px) {
    .section-title .main-title {
        font-size: 30px;
    }

    .product-title {
        font-size: 18px;
    }

    .overly_right {
        margin-right: -110px;
    }

    .overly_left {
        margin-left: -110px;
    }

    .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;
    }

    .ag-applications-hero {
        height: 750px;
    }

    .ag-applications-title {
        font-size: 48px;
    }

    .ag-app-card-title {
        font-size: 28px;
    }

    .ag-products-hero {
        height: 750px;
    }

    .ag-products-title {
        font-size: 48px;
    }

    .ag-product-card-title {
        font-size: 28px;
    }

    .ag-hero-section {
        height: 700px;
    }

    .ag-hero-title {
        font-size: 46px;
    }

    .ag-value-item-col {
        width: 16.666%;
        flex: 0 0 16.666%;
    }

    .ag-contact-card {
        padding: 40px 35px;
    }

    .ag-contact-card-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .ag-card-info-group {
        margin-bottom: 30px;
    }

    .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;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-header,
    .ag-feedback-main-section .ag-premium-form {
        padding-left: 50px;
        padding-right: 50px;
    }

    /* .product-grid-img-wrapper {
        height: 230px;
    } */

    .product-grid-title {
        font-size: 17px;
    }

    .container-fluid.plr-80 {
        padding-left: 65px !important;
        padding-right: 65px !important;
    }
}

@media (max-width: 1399.98px) {
    .product-title {
        font-size: 17px;
    }

    .overly_right {
        margin-right: -100px;
    }

    .overly_left {
        margin-left: -100px;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .diamond-title {
        font-size: 28px;
    }

    .diamond-content-box {
        padding: 40px 50px;
    }

    .ag-applications-hero {
        height: 700px;
    }

    .ag-applications-title {
        font-size: 44px;
    }

    .ag-products-hero {
        height: 700px;
    }

    .ag-products-title {
        font-size: 44px;
    }

    .ag-hero-section {
        height: 650px;
    }

    .ag-hero-title {
        font-size: 44px;
    }

    .ag-value-item-col {
        width: 25%;
        flex: 0 0 25%;
    }

    .ag-contact-card {
        padding: 40px 30px;
    }

    .ag-card-subtitle {
        font-size: 18px;
    }

    .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;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 38px;
    }

    /* .product-grid-img-wrapper {
        height: 210px;
    } */

    .product-grid-title {
        font-size: 16px;
    }

    .container-fluid.plr-80 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
}

@media (max-width: 1280.98px) {
    .navbar-nav .nav-link {
        font-size: 14px;
    }

    .product-title {
        font-size: 16px;
    }

    .overly_right {
        margin-right: -80px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .overly_left {
        margin-left: -80px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .container-fluid.px-5 {
        padding-right: 30px !important;
        padding-left: 30px !important;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .sticky-desc {
        font-size: 15px;
    }

    .ag-footer-heading {
        font-size: 22px;
    }

    .ag-footer-list li a {
        font-size: 13px;
    }

    .ag-contact-text,
    .ag-contact-item a {
        font-size: 13px;
    }

    .brochure-actions .btn {
        padding: 10px 10px;
        gap: 5px;
    }

    .action-icon {
        font-size: 12px;
    }

    .diamond-content-box {
        padding: 30px 50px;
    }

    .ag-applications-hero {
        height: 650px;
    }

    .ag-applications-title {
        font-size: 40px;
    }

    .ag-products-hero {
        height: 650px;
    }

    .ag-products-title {
        font-size: 40px;
    }

    .ag-hero-section {
        height: 600px;
    }

    .ag-hero-title {
        font-size: 42px;
    }

    .ag-contact-card-title {
        font-size: 26px;
    }

    .ag-card-info-group {
        padding-left: 15px;
    }

    .ag-card-footer {
        padding-left: 15px;
    }

    .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;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-header,
    .ag-feedback-main-section .ag-premium-form {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* .product-grid-img-wrapper {
        height: 190px;
    } */

    .product-grid-title {
        font-size: 15px;
    }

    .product-card-grid-col {
        margin-bottom: 35px;
    }

    .container-fluid.plr-80 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
}

@media (max-width: 1199.98px) {
    .section-title .sub-title {
        max-width: 70%;
    }

    .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;
    }

    .overly_right {
        margin-right: -60px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .overly_left {
        margin-left: -60px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .product-title {
        font-size: 15px;
    }

    .navbar-toggler {
        display: block;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .sticky-title {
        font-size: 38px;
    }

    .ag-newsletter-form {
        width: 100%;
        max-width: 600px;
    }

    .ag-footer-brand-col {
        margin-bottom: 50px;
    }

    .ag-applications-hero {
        height: 600px;
    }

    .ag-applications-title {
        font-size: 36px;
    }

    .container-fluid.pl-100 {
        padding-left: 80px !important;
    }

    .ag-product-card-content {
        padding: 30px;
    }

    .ag-product-card-title {
        font-size: 24px;
    }

    .ag-pd-title {
        font-size: 36px;
    }

    .ag-pd-subtitle {
        font-size: 20px;
    }

    .ag-pd-list-title {
        font-size: 18px;
    }

    .ag-hero-section {
        height: 550px;
    }

    .ag-hero-title {
        font-size: 40px;
    }

    .ag-value-item-col {
        width: 33.333%;
        flex: 0 0 33.333%;
    }

    .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;
    }

    .container-fluid.plr-80 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .product-grid-title {
        font-size: 16px;
    }
}

@media (max-width: 1024.98px) {




    .ag-footer-link-col {
        margin-bottom: 30px;
    }

    .ag-products-hero {
        height: 600px;
    }

    .ag-products-title {
        font-size: 36px;
    }

    .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;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .sticky-title {
        font-size: 34px;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 36px;
    }

    .product-grid-title {
        font-size: 17px;
    }

    .ag-feedback-main-section .ag-signature-grid {
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .header-nav-list {
        gap: 20px;
    }

    .diamond-content-box {
        padding: 30px 50px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .diamond-col {
        width: 50%;
    }
}

@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;
    }

    .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;
    }

    .main-header-nav {
        padding-top: 15px;
        padding-bottom: 15px;
        background-color: #0D1525;
    }

    .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;
    }

    .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: #0D1525;
        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: 10px !important;
        padding: 0px;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        color: var(--white-color) !important;
        font-family: var(--Ubuntu);
        text-transform: capitalize;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link.active {
        color: var(--primary) !important;
        text-shadow: 0 0 15px rgba(170, 229, 247, 0.4);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        padding-bottom: 0px !important;
    }

    .overly_right,
    .overly_left {
        margin-right: 0;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .product-title {
        font-size: 18px;
    }

    .thermal-chart-container {
        padding-left: 0;
        margin-top: 50px;
    }

    .sticky-title {
        font-size: 32px;
    }

    .ag-newsletter-form {
        width: 600px;
    }

    .ag-newsletter-input {
        width: 400px;
    }

    .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 {
        display: block !important;
        padding-left: 0 !important;
    }

    .ag-contact-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
    }

    .ag-contact-item:last-child {
        margin-bottom: 0 !important;
    }

    .ag-contact-item i {
        font-size: 20px !important;
        color: #00f0ff !important;
    }

    .ag-contact-item a {
        font-size: 15px !important;
    }

    .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;
    }

    .diamond-content-box {
        padding: 32px;
    }

    .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;
    }

    .ag-applications-hero {
        height: 550px;
    }

    .ag-applications-title {
        font-size: 32px;
    }

    .container-fluid.pl-100 {
        padding-left: 48px !important;
    }

    .ag-app-card {
        padding: 40px 25px;
    }

    .ag-tech-card {
        padding: 40px 30px;
    }

    .ag-tech-card-title {
        font-size: 22px;
    }

    .ag-app-card-title {
        font-size: 24px;
    }

    .ag-products-hero {
        height: 550px;
    }

    .ag-products-title {
        font-size: 32px;
    }

    .ag-pd-image-col {
        order: -1;
        margin-bottom: 40px;
    }

    .ag-pd-title {
        font-size: 32px;
        text-align: center;
    }

    .ag-pd-image-wrap {
        padding: 0px;
    }

    .ag-pd-section-dark .ag-pd-image-col {
        order: -1;
        margin-bottom: 40px;
    }

    .ag-hero-section {
        height: 500px;
    }

    .ag-hero-title {
        font-size: 36px;
    }

    .ag-contact-col {
        margin-bottom: 20px;
    }

    .ag-contact-card {
        padding: 40px;
    }

    .ag-contact-card-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .ag-blog-hero {
        height: 350px;
    }

    .ag-blog-hero-title {
        font-size: 40px;
    }

    .ag-card-info-group {
        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;
    }

    .ag-card-info-group {
        margin-bottom: 0;
        padding-left: 0;
    }

    .ag-card-footer {
        padding-left: 0px;
        margin-top: 0;
    }

    .ag-card-contact-item {
        margin-bottom: 0px;
    }

    .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-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;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-header,
    .ag-feedback-main-section .ag-form-title-block,
    .ag-feedback-main-section .ag-premium-form {
        padding: 30px;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 32px;
    }

    .ag-feedback-main-section .ag-signature-grid {
        grid-template-columns: 1fr;
    }

    .ag-feedback-main-section .rating-tile {
        min-width: 80px;
        padding: 10px 5px;
    }

    /* .product-grid-img-wrapper {
        aspect-ratio: 4 / 3;
    } */

    .product-grid-title {
        font-size: 18px;
    }

    .product-card-grid-col {
        margin-bottom: 35px;
    }

    .container-fluid.plr-30 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .container-fluid.plr-80 {
        padding-left: 30px !important;
        padding-right: 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;
    }

    .product-title {
        font-size: 20px;
    }

    .sticky-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }

    .sticky-title {
        font-size: 28px;
    }

    .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;
    }

    .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;
    }

    .ag-footer-bottom-right {
        text-align: center !important;
        margin-top: 5px;
    }

    .ag-footer-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .ag-applications-hero {
        height: 500px;
    }

    .ag-applications-title {
        font-size: 28px;
    }

    .container-fluid.pl-100 {
        padding-left: 20px !important;
    }

    .ag-app-card-col:last-child {
        padding-bottom: 0px;
    }

    .ag-products-hero {
        height: 500px;
    }

    .ag-products-title {
        font-size: 28px;
    }

    .ag-product-explore-btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .ag-modern-product-card,
    .product-grid-card,
    .ag-tech-card {
        height: auto !important;
        align-self: flex-start !important;
        padding: 30px 20px !important;
    }

    .ag-tech-card-title {
        font-size: 20px;
    }

    #scroll-to-top {
        bottom: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    #scroll-to-top i {
        font-size: 22px;
    }

    .ag-pd-title {
        font-size: 28px;
    }

    .ag-pd-subtitle {
        font-size: 18px;
    }

    .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;
    }

    .ag-hero-section {
        height: 450px;
    }

    .ag-hero-title {
        font-size: 32px;
    }

    .ag-value-item-col {
        width: 50%;
        flex: 0 0 50%;
    }

    .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;
    }

    .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;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-header,
    .ag-feedback-main-section .ag-premium-form {
        padding: 20px;
    }

    .ag-feedback-main-section .ag-form-title-block {
        padding: 40px 20px 30px;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 28px;
    }

    .ag-feedback-main-section .ag-form-brand img {
        height: 40px;
    }

    /* Table to Card Layout for Mobile */
    .ag-feedback-main-section .ag-rating-table {
        border-spacing: 0;
        display: block;
    }

    .ag-feedback-main-section .ag-rating-head {
        display: none;
    }

    .ag-feedback-main-section .ag-rating-body,
    .ag-feedback-main-section .ag-rating-body tr,
    .ag-feedback-main-section .ag-rating-body td {
        display: block;
        width: 100%;
    }

    .ag-feedback-main-section .ag-rating-body tr {
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .ag-feedback-main-section .ag-rating-body td {
        padding: 10px 0;
        text-align: center !important;
    }

    .ag-feedback-main-section .ag-rating-body td:first-child {
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .ag-feedback-main-section .ag-rating-body .d-flex {
        flex-direction: column;
        gap: 10px;
    }

    .ag-feedback-main-section .ag-rating-body .ms-3 {
        margin-left: 0 !important;
        font-size: 18px;
    }

    .ag-feedback-main-section .ag-rating-body td:not(:first-child) {
        display: inline-block;
        width: 23%;
    }

    .ag-feedback-main-section .ag-rating-mobile-label {
        display: block;
    }

    .ag-feedback-main-section .cust-rdo-btn {
        flex-direction: column;
    }

    /* .product-grid-img-wrapper {
        aspect-ratio: 4 / 3;
    } */

    .product-grid-title {
        font-size: 17px;
    }

    .product-card-grid-col {
        margin-bottom: 30px;
    }

    .container-fluid.plr-30 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .container-fluid.plr-80 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 575.98px) {
    .section-title .main-title {
        font-size: 26px;
    }

    .product-title {
        font-size: 18px;
    }

    /* .product-grid-img-wrapper {
        aspect-ratio: 4 / 3;
    } */

    .product-grid-title {
        font-size: 20px;
    }

    .product-card-grid-col {
        margin-bottom: 30px;
    }

    .container-fluid.plr-80 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .chart-row {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .chart-label {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .chart-value {
        width: auto;
    }

    .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;
    }

    .ag-footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .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;
    }

    .sticky-desc {
        max-width: 100%;
    }

    .ag-applications-hero {
        height: 450px;
    }

    .ag-applications-title {
        font-size: 24px;
    }

    .ag-products-hero {
        height: 450px;
    }

    .ag-products-title {
        font-size: 24px;
    }

    .ag-hero-section {
        height: 400px;
    }

    .ag-hero-title {
        font-size: 28px;
    }

    .ag-value-item-col {
        width: 100%;
        flex: 0 0 100%;
    }

    .ag-value-name {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .ag-value-desc {
        font-size: 12px;
        padding: 0 5px;
    }

    .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;
    }

    .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;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .ag-applications-title,
    .ag-products-title {
        font-size: 24px;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 24px;
    }

    .ag-feedback-main-section .ag-section-head h3 {
        font-size: 18px;
    }

    .ag-feedback-main-section .ag-premium-submit-btn {
        width: 100%;
        padding: 15px;
    }

    .ag-feedback-main-section .ag-rating-body span {
        font-size: 14px;
    }

    /* .product-grid-img-wrapper {
        aspect-ratio: 4 / 3;
    } */

    .product-grid-title {
        font-size: 18px;
    }

    .product-card-grid-col {
        margin-bottom: 30px;
    }

    .container-fluid.plr-30 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .container-fluid.plr-80 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    br {
        display: none;
    }
}

@media (max-width: 480.98px) {
    .section-title .main-title {
        font-size: 24px;
    }

    .product-title {
        font-size: 22px;
    }

    .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;
    }

    .ag-applications-hero {
        height: 400px;
    }

    .ag-applications-title {
        font-size: 22px;
    }

    .ag-products-hero {
        height: 400px;
    }

    .ag-products-title {
        font-size: 22px;
    }

    .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;
    }

    .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;
    }

    .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;
    }

    .hero-section h1 {
        font-size: 22px;
    }

    .diamond-header-strip h2 {
        font-size: 20px;
    }

    .ag-newsletter-title {
        font-size: 20px;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 22px;
    }

    .ag-feedback-main-section .ag-form-header {
        padding: 15px;
    }

    .ag-feedback-main-section .ag-doc-ref {
        margin-top: 15px;
        text-align: left !important;
    }

    /* .product-grid-img-wrapper {
        height: 320px;
    } */

    .product-grid-title {
        font-size: 18px;
    }

    .container-fluid.plr-80 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 360.98px) {
    .section-title .main-title {
        font-size: 22px;
    }

    .product-title {
        font-size: 16px;
    }

    .hero-section {
        height: 400px;
    }

    .hero-section h1 {
        font-size: 20px;
    }

    .ag-contact-item a {
        font-size: 12px;
    }

    .ag-applications-hero {
        height: 350px;
    }

    .ag-applications-title {
        font-size: 20px;
    }

    .ag-products-hero {
        height: 350px;
    }

    .ag-products-title {
        font-size: 20px;
    }

    .ag-hero-section {
        height: 350px;
    }

    .ag-hero-title {
        font-size: 22px;
    }

    .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;
    }

    .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;
    }

    .ag-feedback-main-section .ag-form-title-block h1 {
        font-size: 20px;
    }

    .ag-feedback-main-section .ag-section-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .ag-feedback-main-section .ag-rating-body .ag-metric-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* .product-grid-img-wrapper {
        aspect-ratio: 4 / 3;
    } */

    .product-grid-title {
        font-size: 16px;
    }

    .container-fluid.plr-30 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .container-fluid.plr-80 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    #scroll-to-top i {
        font-size: 20px;
    }
}

/* ==========================================================================
   HOME PAGE EXCLUSIVE: GLOBAL NETWORK INIT (NEWSLETTER)
   ========================================================================== */

.ag-network-init {
    display: none;
    background: #060B14;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.ag-network-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(170, 229, 247, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ag-init-container {
    position: relative;
    z-index: 5;
    background: rgba(13, 21, 37, 0.4);
    padding: 60px;
    border: 1px solid rgba(170, 229, 247, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 4px;
}

.ag-init-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.ag-init-input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(170, 229, 247, 0.2);
    padding: 5px;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.ag-init-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(170, 229, 247, 0.2);
}

.ag-input-prefix {
    padding: 15px 20px;
    color: var(--primary);
    font-family: monospace;
    font-weight: 700;
    border-right: 1px solid rgba(170, 229, 247, 0.1);
}

.ag-init-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 20px;
    font-family: var(--Ubuntu);
    font-size: 14px;
    outline: none !important;
}

.ag-init-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ag-init-btn {
    background: var(--primary);
    color: #060B14;
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.ag-init-btn:hover {
    background: #fff;
    transform: translateX(5px);
}

.ag-init-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mobile Adjustments for Home Exclusive Section */
@media (max-width: 767.98px) {
    .ag-init-container {
        padding: 40px 20px;
    }

    .ag-init-title {
        font-size: 28px;
    }

    .ag-init-input-group {
        flex-direction: column;
    }

    .ag-input-prefix {
        border-right: none;
        border-bottom: 1px solid rgba(170, 229, 247, 0.1);
        text-align: left;
    }

    .ag-init-input {
        padding: 20px;
    }

    .ag-init-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Internal Hero Section --- */
.ag-internal-hero {
    position: relative;
    height: 450px;
    background: #04080f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.ag-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(170, 229, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(170, 229, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    perspective: 1000px;
    transform: rotateX(60deg) scale(2);
    transform-origin: top;
    opacity: 0.3;
}

.ag-hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(170, 229, 247, 0.15) 0%, transparent 70%);
}

.ag-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.ag-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.ag-breadcrumb a,
.ag-breadcrumb span {
    font-family: monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ag-breadcrumb a:hover {
    color: #AAE5F7;
}

.ag-breadcrumb .separator {
    color: #AAE5F7;
    opacity: 0.5;
}

.ag-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(170, 229, 247, 0.3);
}

.ag-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ag-hero-hud {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    border-top: 1px solid rgba(170, 229, 247, 0.1);
    background: rgba(4, 8, 15, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.hud-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hud-label {
    font-family: monospace;
    font-size: 10px;
    color: #AAE5F7;
    opacity: 0.5;
    letter-spacing: 1px;
}

.hud-value {
    font-family: monospace;
    font-size: 10px;
    color: #fff;
    letter-spacing: 1px;
}

.hud-dot {
    width: 4px;
    height: 4px;
    background: #AAE5F7;
    border-radius: 50%;
    box-shadow: 0 0 10px #AAE5F7;
    animation: ag-pulse 2s infinite;
}

@keyframes ag-pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .ag-internal-hero {
        height: 350px;
    }

    .ag-hero-hud {
        padding: 0 20px;
    }

    .hud-item:not(:first-child) {
        display: none;
    }
}

/* --- Webkit Autofill Overrides for Dark Theme Forms --- */
.ag-contact-input:-webkit-autofill,
.ag-contact-input:-webkit-autofill:hover,
.ag-contact-input:-webkit-autofill:focus,
.ag-contact-input:-webkit-autofill:active,
.ag-terminal-input:-webkit-autofill,
.ag-terminal-input:-webkit-autofill:hover,
.ag-terminal-input:-webkit-autofill:focus,
.ag-terminal-input:-webkit-autofill:active,
.ag-init-input:-webkit-autofill,
.ag-init-input:-webkit-autofill:hover,
.ag-init-input:-webkit-autofill:focus,
.ag-init-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #0d1525 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* --- Form Alert Custom Styling for Dark Theme --- */
.ag-contact-form .alert {
    border-radius: 4px;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.ag-contact-form .alert-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
    color: #ff6b6b !important;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.1) inset;
}

.ag-contact-form .alert-success {
    background: rgba(25, 135, 84, 0.1) !important;
    border-color: rgba(25, 135, 84, 0.3) !important;
    color: #4ade80 !important;
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.1) inset;
}

/* --- Modal Form Typography Improvements --- */
.ag-field-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: var(--Ubuntu, 'Ubuntu', sans-serif);
    letter-spacing: 0.5px;
}

.ag-field-note {
    display: block;
    color: rgba(170, 229, 247, 0.6);
    font-size: 12px;
    font-weight: 400;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}