/* Index Css */
:root {
    /* Main Theme Colors (Updated for the new logo) */
    --primary-color: #f79433;       /* Vibrant Logo Orange (For CTA, primary focus) */
    --dark-color: #0f1c2e;          /* Very Deep Navy Blue (Replaces pure black for a premium look) */
    --secondary-dark: #1d67b4;      /* Royal Logo Blue (For secondary branding/sections) */
    
    /* Text Colors */
    --text-main: #1e293b;           /* Slate Dark text for clean reading */
    --text-mute: #64748b;           /* Balanced muted gray-blue for subtitles */
    --text-light: #ffffff;          /* White for dark backgrounds */

    /* Typography (Kept exactly same) */
    --text-font: "Noto Serif", serif;  
    --global-font: "Sora", sans-serif; 
    
    /* UI Elements (Kept exactly same) */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 

    /* Gradients (Smooth Blue & Orange Luxury Transitions) */
    /* 1. Deep Corporate Navy to Royal Blue Gradient (Perfect for main banners/hero background) */
    --gradient: linear-gradient(135deg, #1d67b4 0%, #13467c 50%, #0f1c2e 100%);
    
    /* 2. Soft Ambient Gradient (Light Sky Blue to Clean White for sections background) */
    --gradient-2: linear-gradient(180deg, #eef5fc 0%, #ffffff 100%);
    
    /* 3. Primary Button Gradient (Vibrant Logo Orange with a slight shine) */
    --btn-gradient: linear-gradient(90deg, #f79433 0%, #ffad54 50%, #f79433 100%);
    
    /* 4. Secondary Button / Hover Gradient (Sleek Royal Blue Theme) */
    --btn-gradient-2: linear-gradient(90deg, #1d67b4 0%, #13467c 100%);
}

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-dots {
    margin-top: 35px;
    text-align: center;
}

.owl-dot {
    width: 10px;
    height: 10px;
    background: #555 !important;
    border-radius: 50%;
    margin: 5px;
}

.owl-dot.active {
    width: 25px;
    border-radius: 20px;
    background: var(--btn-gradient) !important;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

article,
aside,
footer,
header,
main,
nav,
section {
    display: block
}

button {
    border-radius: 0
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-family: var(--global-font);
}

button,
input {
    overflow: visible;
    font-family: var(--global-font);
}

button,
select {
    text-transform: none;
    font-family: var(--global-font);
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.align-item-center {
    align-items: center;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.d-block {
    display: block
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 960px
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col,
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
}

@media (min-width:992px) {
    .d-lg-block {
        display: block
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }
    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
    .text-lg-right {
        text-align: right
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

@media(max-width:767px) {
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

a {
    color: var(--dark-color);
    text-decoration: none
}

a:focus,
a:hover {
    color: var(--primary-color);
    text-decoration: none
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--global-font);
    font-size: 16px;
    line-height: 1.65;
    outline: 0;
    color: var(--dark-color);
}

.bg_gray {
    background: #f8f8f8;
}

.bg_dark {
    background: url(../images/bg-img3.jpg) #f5ebe6;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg_red {
    background: url(../images/bg-red.jpg) #f5ebe6;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg_light {
    background: #fafafa;
}

.bg_gradient {
    background: linear-gradient(to right, #8e4939, #d68d49);
}

.text-white {
    color: #fff !important;
}

img {
    border: none;
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--text-font);
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 26px
}

p {
    color: var(--dark-color);
    font-weight: 400;
    margin-bottom: 1.2rem;
    margin-top: 0px;
}

.btn {
    font-weight: 600;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: 0;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #fff;
    background-color: var(--dark-color);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--global-font);
}

.btn:hover {
    color: #fff;
    background-color: var(--dark-color);
    border-color: transparent
}

.btn i {
    font-size: 10px;
    position: relative;
    margin-left: 3px;
    top: -1px;
    line-height: 1
}

input,
select,
textarea {
    height: 46px;
    border: 1px solid #e3e4e8;
    background-color: #fff;
    width: 100%;
    margin-bottom: 24px;
    padding: 0 12px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

input:focus,
textarea:focus {
    border-color: #1273a2;
    background-color: #fff;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #54555e
}

.mt_40 {
    margin-top: 40px;
}

.py_50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py_80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pb_80 {
    padding-bottom: 80px;
}

.mx_15 {
    margin-left: -15px;
    margin-right: -15px;
}

.px_15 {
    padding-left: 15px;
    padding-right: 15px;
}

.mx_20 {
    margin-left: -20px;
    margin-right: -20px;
}

.px_20 {
    padding-left: 20px;
    padding-right: 20px;
}

.mx_25 {
    margin-left: -25px;
    margin-right: -25px;
}

.px_25 {
    padding-left: 25px;
    padding-right: 25px;
}

.text-center {
    text-align: center;
}

.mb_25 {
    margin-bottom: 25px;
}

.mb_40 {
    margin-bottom: 40px;
}

.btn_white {
    display: inline-block;
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all 0.3s linear;
}

.btn_white svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.btn_white:hover {
    background: linear-gradient(135deg, #2F4369, #A86140);
    color: #fff;
    transition: all 0.3s linear;
}

.btn_white:hover svg {
    fill: #fff;
}

.btn_gradient {
    background: var(--btn-gradient);
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: .5px;
    border: 1px solid #777;
    transition: all 0.3s linear;
}

.btn_gradient svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    vertical-align: middle;
}

.btn_gradient:hover {
    background: linear-gradient(135deg, #2F4369, #A86140);
    color: #fff;
    box-shadow: 2px 3px 1px 0px #ffffffba;
    transition: all 0.3s linear;
}

.section_title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.section_title span {
    background: var(--btn-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    text-transform: uppercase;
    font-family: var(--text-font);
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 10px;
}

.center_title {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.center_title p {
    margin: 0;
}

.anim_btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--btn-gradient);
    border-radius: 30px;
    color: var(--dark-color);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.anim_btn:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><path d="M64 448c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L178.8 256L41.38 118.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25l-160 160C80.38 444.9 72.19 448 64 448z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.anim_btn:hover {
    color: #fff;
    background: var(--dark-color);
}

.anim_btn:hover:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512" fill="%23fff"><path d="M64 448c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L178.8 256L41.38 118.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25l-160 160C80.38 444.9 72.19 448 64 448z"/></svg>');
}

.anim_btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: .4s;
}

.anim_btn:hover:before {
    left: 100%;
}

.animate_image img {
    transition: all 0.4s linear;
}

.animate_image img:hover {
    transform: scale(1.03);
    transition: all 0.4s linear;
}

/* Footer Css */
.footer {
    background: var(--dark-color);
    color: var(--text-mute);
    position: relative;
    font-family: var(--global-font);
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--btn-gradient);
}

.footer_top {
    padding: 80px 0 40px;
}

.footer_top p.about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0px;
    margin-top: 20px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.footer_social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer_social a {
    position: relative;
    width: 38px;
    height: 38px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer_social a svg {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    fill: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    transition: fill 0.3s ease;
}

.footer_social a:hover {
    background: var(--btn-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 148, 51, 0.2);
}

.footer_social a:hover svg {
    fill: var(--text-light);
}

.footer_widget .title {
    position: relative;
    padding-bottom: 12px;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    letter-spacing: 0.5px;
    font-family: var(--text-font);
}

.footer_widget .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f79433; /* Corporate Accent Variant */
}

.footer_widget .links a {
    display: block;
    margin-top: 12px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_widget .links a:hover {
    color: #f79433;
    padding-left: 5px;
}

.footer_widget .links a:before {
    content: '';
    transform: rotate(-45deg);
    border-right: 2px solid;
    border-bottom: 2px solid;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-bottom: 2px;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer_widget .links a:hover :before {
    color: #f79433;
}

.footer_contact_info .list {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer_contact_info .list .icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_contact_info .list .icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: rgba(255, 255, 255, 0.6);
}

.footer_contact_info .list .text {
    width: calc(100% - 36px);
}

.footer_contact_info .list .text span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-bottom: 2px;
}

.footer_contact_info .list .text p,
.footer_contact_info .list .text a {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_contact_info .list .text a:hover {
    color: #f79433;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px 0;
}

.footer_bottom_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer_links {
    display: flex;
    gap: 24px;
}

.footer_bottom_row p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0px;
    font-size: 14px;
}

.footer_links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: var(--text-light);
}

#back-to-top {
    display: block;
    border-radius: 50%;
    z-index: 100;
    width: 40px;
    height: 40px;
    text-align: center;
    position: fixed;
    bottom: 25px;
    right: 25px;
    color: var(--dark-color);
    cursor: pointer;
    background: var(--btn-gradient);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top svg {
    width: 30px;
    height: 30px;
    color: var(--dark-color);
    margin-top: 5px;
}
@media(max-width:991px) {
    .footer a {
        font-size: 14px
    }
    .footer p.copyright {
        text-align: left;
    }
    .py_80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .pt_80 {
        padding-top: 60px;
    }
    .pb_80 {
        padding-bottom: 60px;
    }
    .mb_sm_25 {
        margin-bottom: 25px;
    }
    html,
    body {
        overflow-x: hidden;
    }
}
@media(max-width:767px) {
    .mobile_menu {
        background: #f1f1f1;
        border-top: 2px solid #f1f1f1;
        border-bottom: 2px solid #f1f1f1;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        width: 100%;
        display: block
    }
    .mobile_menu ul {
        width: 100%;
        margin: 0
    }
    .mobile_menu ul li {
        display: inline-block;
        padding: 7px 5px;
        background: #fff;
        vertical-align: top
    }
    .mobile_menu ul li a {
        font-size: 12px;
        color: #111;
        text-transform: uppercase;
        padding: 0 5px;
        font-weight: 600
    }
    .footer_top {
        padding: 60px 0 0px;
    }
    .footer_top p.about {
        padding-right: 0;
    }
    .section_title {
        font-size: 32px;
    }
    .footer_bottom_row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Hero Banner */
.hero_banner {
    position: relative;
    background: var(--gradient);
    padding: 80px 0;
}

.hero_banner h1 {
    color: var(--text-light);
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.25;
    font-family: var(--text-font);
}

.hero_banner h1 span {
    display: block;
    font-weight: 800;
    font-size: 45px;
}

.hero_banner p {
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero_banner ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.hero_banner ul li {
    color: var(--text-light);
    position: relative;
    padding-left: 34px;
    font-family: var(--global-font);
}

/* Updated Checkmark color to match Logo Orange */
.hero_banner ul li::before {
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23f79433" viewBox="0 0 16 16"><path d="M2.5 8a5.5 5.5 0 0 1 8.25-4.764.5.5 0 0 0 .5-.866A6.5 6.5 0 1 0 14.5 8a.5.5 0 0 0-1 0 5.5 5.5 0 1 1-11 0z"></path><path d="M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l7-7z"></path></svg>');
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 1px;
    left: 0;
}

.banner_rating .star_rating {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Highlighted rating numbers with logo orange */
.banner_rating .star_rating span {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.banner_rating .star_rating img {
    height: 35px;
}

.banner_rating .base_on span {
    color: var(--text-light);
    font-size: 14px;
    line-height: 26px;
    opacity: 0.8;
}

.banner_rating .base_on {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner_rating .base_on svg {
    fill: var(--primary-color); /* Orange stars */
}

.banner_rating .base_on div {
    height: 24px;
    display: flex;
    gap: 2px;
}

/* Container form styling styling */
.hero_banner_form {
    border-radius: 14px;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    background: #ffffff;
    overflow: hidden; /* Title header background box clip karne k liye */
}

.hero_banner_form:hover {
    transform: translateY(-5px);
}

/* Form header styled with royal logo blue */
.hero_banner_form .title {
    font-size: 18px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
    padding: 20px 15px;
    background: var(--secondary-dark); 
    margin-bottom: 20px;
    font-family: var(--global-font);
}

.hero_banner_form .title span {
    display: block;
    color: var(--primary-color); /* Bold expert section in orange */
}

.hero_banner_form .form-inputs-container {
    padding: 0 20px 25px 20px;
}

.hero_banner_form .form-control, 
.hero_banner_form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    box-sizing: border-box;
}

.hero_banner_form .form-control:focus,
.hero_banner_form select:focus {
    border-color: var(--secondary-dark);
    box-shadow: 0 0 0 3px rgba(29, 103, 180, 0.15);
    outline: none;
}

.hero_banner_form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2364748b" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') #fff;
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;
}

.hero_banner_form textarea {
    height: 90px;
    resize: none;
}

/* Orange CTA Button */
.hero_banner_form button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: var(--btn-gradient);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(247, 148, 51, 0.3);
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero_banner_form button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hero_banner_form button:hover {
    box-shadow: 0 6px 20px rgba(247, 148, 51, 0.5);
    opacity: 0.95;
}

.form-control::placeholder {
    color: var(--text-mute);
}

.inline_btn {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* CTA Buttons inside banner left side */
.btn_1 {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn_2 {
    background: transparent;
    color: #fff;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 7px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    text-decoration: none;
}

.btn_1 svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.btn_1:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn_1:hover svg {
    transform: translateX(4px);
}

.btn_2:hover {
    background: #fff;
    color: var(--dark-color);
    transform: translateY(-3px);
}

@media(max-width:991px) {
    .hero_banner {
        padding: 50px 0;
    }

    .hero_banner_form {
        max-width: 100%;
        margin: 40px auto 0;
    }
}

@media(max-width:767px) {
    .hero_banner ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .inline_btn {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn_1, .btn_2 {
        text-align: center;
        justify-content: center;
    }

    .banner_rating .star_rating span {
        font-size: 22px;
    }

    .banner_rating .base_on {
        margin-top: 10px;
    }
}

/* Page title with breadcrumb */
.page_title {
    background: var(--dark-color);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb {
    margin-bottom: 10px;
}

.breadcrumb li {
    display: inline;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 300;
}

.breadcrumb li a {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #f79433; /* High visibility corporate gold/accent anchor */
}

.breadcrumb li a:after {
    content: '';
    transform: rotate(-45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 6px 1px;
}

.page_title h1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 0px;
    font-weight: 700;
}