:root {
    --primary-color: #010535;
    --secondary-color: #F2F2F5;
    --text-color: #707070;
    --accent-color: #000;
    --accent-secondary-color: #ba6f25;
    --white-color: #FFFFFF;
    --divider-color: #F5F5F5;
    --dark-divider-color: #FFFFFF33;
    --error-color: rgb(230, 87, 87);
    --default-font: "Plus Jakarta Sans", sans-serif;
}

/************************************/

/*** 	   02. General css		  ***/

/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    background-color: var(--white-color);
    color: var(--text-color);
}

::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
}

p {
    line-height: 1.7em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 60px 17px 30px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background-position: right center;
}

.btn-default::before {
    content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-30px, -50%);
    font-size: 20px;
    color: var(--white-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translate(-27px, -50%);
}

.btn-default.btn-highlighted {
    background: var(--white-color);
    color: var(--accent-color);
}

.btn-default.btn-highlighted::before {
    color: var(--accent-color);
}

.btn-default.btn-highlighted::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    border-radius: 100px;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.btn-default.btn-highlighted:hover {
    background-color: transparent;
    color: var(--white-color);
}

.btn-default.btn-highlighted:hover::before {
    color: var(--white-color);
}

.btn-default.btn-highlighted:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.cb-cursor:before {
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: end;
}

.section-title-content p {
    margin: 0;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-left: 30px;
    margin-bottom: 20px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.section-title h1 {
    font-size: 68px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 0;
    cursor: none;
}

.section-title h1 span,
.section-title h2 span {
    background: linear-gradient(90.15deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.section-title.dark-section h3,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section p {
    color: var(--white-color);
}

.section-title.dark-section h3::before {
    filter: brightness(0) invert(1);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/

/**** 	   03. Header css		 ****/

/************************************/

.topbar {
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    padding: 10px 0;
}

.topbar-info-text p {
    color: var(--white-color);
    opacity: 80%;
    margin-bottom: 0;
}

.topbar-info-text p a {
    font-weight: 700;
    text-transform: capitalize;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease-in-out;
}

.topbar-info-text p a:hover {
    color: var(--primary-color);
}

.topbar-links {
    display: flex;
    align-items: center;
    justify-content: end;
}

.topbar-contact-info {
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 25px;
    padding-right: 25px;
}

.topbar-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-contact-info ul li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    color: var(--white-color);
    opacity: 80%;
    transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a {
    color: inherit;
}

.topbar-contact-info ul li:hover {
    color: var(--primary-color);
}

.topbar-contact-info ul li:last-child {
    margin: 0;
    padding: 0;
}

.topbar-contact-info ul li::before {
    content: '/';
    position: absolute;
    top: 0;
    right: -16px;
    bottom: 0;
    font-size: 16px;
    color: var(--white-color);
    opacity: 80%;
}

.topbar-contact-info ul li:last-child:before {
    display: none;
}

.topbar-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-social-links ul li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
    margin: 0;
}

.topbar-social-links ul li a {
    display: block;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:hover a {
    color: var(--primary-color);
}

.topbar-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

header.main-header {
    position: relative;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background-color: var(--white-color);
    border-bottom: 1px solid var(--divider-color);
}

.navbar {
    padding: 20px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    padding: 14px 20px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-secondary-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 8px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-52%) rotate(-180deg);
    color: var(--primary-color);
}

/************************************/

/***        04. Hero css	      ***/

/************************************/

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a6e 50%, var(--accent-secondary-color) 100%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 140px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(1, 5, 53, 0.28) 43.57%, rgba(1, 5, 53, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video {
    padding: 205px 0;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 205px 0;
}

.hero.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(1, 5, 53, 0.28) 43.57%, rgba(1, 5, 53, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 70px;
    text-align: left;
    padding-left: calc(((100vw - 1300px) / 2) + 15px);
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 635px;
    z-index: 2;
}

.hero-content-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.video-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button a {
    height: 50px;
    width: 50px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
    background: var(--accent-color);
}

.video-play-button i {
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
    color: var(--white-color);
}

.video-play-button h3 {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--white-color);
    margin: 0;
}

.hero-content-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
}

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

.hero-list ul li {
    position: relative;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--white-color);
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 25px;
    padding: 0 0 25px 35px;
}

.hero-list ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--white-color);
}

.hero-list ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.our-client-images {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-image {
    display: inline-block;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    margin-left: -14px;
    width: 62px;
    height: 62px;
    overflow: hidden;
    z-index: 1;
}

.client-image:first-child {
    margin: 0;
}

.client-image figure {
    display: block;
}

.client-image img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.client-image.client-counter {
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.client-image.client-counter:hover {
    background-position: right center;
}

.client-image.client-counter h3 {
    font-size: 22px;
    color: var(--white-color);
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.client-image.client-counter:hover h3 {
    color: var(--primary-color);
}

.our-client-content {
    margin-top: 10px;
}

.our-client-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

/* Hero Scam Report Form Styles */
.hero-scam-form {
    margin: 40px 0;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-container .form-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.quick-scam-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.quick-scam-form .form-row .form-group {
    flex: 1;
}

.quick-scam-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.quick-scam-form .form-group input,
.quick-scam-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white-color);
    font-size: 16px;
    color: var(--primary-color);
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.quick-scam-form .form-group input:focus,
.quick-scam-form .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

.quick-scam-form .form-group input::placeholder,
.quick-scam-form .form-group textarea::placeholder {
    color: #bdc3c7;
}

.quick-scam-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.quick-scam-form .amount-input {
    position: relative;
}

.quick-scam-form .amount-placeholder {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bdc3c7;
    font-size: 14px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quick-scam-form .description-group {
    position: relative;
}

.quick-scam-form .description-hint {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #bdc3c7;
    font-size: 12px;
    pointer-events: none;
}

.quick-scam-form .form-submit-btn {
    width: 100%;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* New Hero Form Styling (matching design) */
.hero-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--secondary-color);
}

.hero-form-container-new {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 360px;
    position: relative;
}

.hero-form-container-new .form-title {
    text-align: center;
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.hero-form-container-new .form-group {
    margin-bottom: 35px;
    position: relative;
}

.hero-form-container-new .form-group label {
    display: block;
    color: #9b9b9b;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-form-container-new .form-group input,
.hero-form-container-new .form-group textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 2px solid #e6e6e6;
    background: transparent;
    font-size: 16px;
    color: #2c3e50;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.hero-form-container-new .form-group input:focus,
.hero-form-container-new .form-group textarea:focus {
    border-bottom-color: #2c3e50;
}

.hero-form-container-new .form-group textarea {
    resize: vertical;
    min-height: 100px;
    margin-top: 10px;
}

.hero-form-container-new .amount-input {
    position: relative;
}

.hero-form-container-new .amount-placeholder {
    position: absolute;
    right: 0;
    top: 46px;
    color: #bdc3c7;
    font-size: 16px;
    pointer-events: none;
}

.hero-form-container-new .description-group {
    position: relative;
}

.hero-form-container-new .description-hint {
    position: absolute;
    right: 0;
    top: 12px;
    color: #bdc3c7;
    font-size: 14px;
}

.hero-form-container-new .submit-btn {
    width: 100%;
    background: #40e0d0;
    color: white;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.hero-form-container-new .submit-btn:hover {
    background: #36c7b8;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.3);
}

.hero-form-container-new .submit-btn:active {
    transform: translateY(0);
}

@media only screen and (max-width: 991px) {
    .hero-form-container-new {
        padding: 40px 30px;
        margin: 10px;
    }

    .hero-form-container-new .form-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .hero-form-container {
        padding: 25px;
    }

    .quick-scam-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-form-container .form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .quick-scam-form .form-group input,
    .quick-scam-form .form-group textarea {
        padding: 12px;
    }
}

/* Quick Scam Report Section */
.quick-scam-report-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

@media only screen and (max-width: 767px) {
    .topbar-info-text {
        display: none;
    }

    .topbar-links {
        justify-content: center;
    }

    .hero-form-container {
        padding: 20px;
    }

    .hero-form-container .form-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .quick-scam-form .form-group {
        margin-bottom: 15px;
    }

    .hero-form-section {
        padding: 40px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-form-container-new {
        padding: 35px 25px;
    }

    .hero-form-container-new .form-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .hero-form-container-new .form-group {
        margin-bottom: 30px;
    }
}

/* About Us Section Fixes */
.about-us {
    padding: 80px 0;
    background-color: var(--white-color);
}

.about-us-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.about-img-1 img {
    max-width: 100%;
    margin-bottom: 20px;
}

.about-img-2 img {
    max-width: 250px;
    position: absolute;
    bottom: -30px;
    right: -20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.get-free-security-circle {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(186, 111, 37, 0.4);
}

.get-free-security-circle img {
    width: 60px;
    height: 60px;
    max-width: 60px;
    border-radius: 50%;
}

.about-us-body {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: var(--secondary-color);
    border-radius: 15px;
    margin: 30px 0;
}

.about-us-body-img {
    flex-shrink: 0;
}

.about-us-body-img img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.about-us-body-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-us-body-content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

.about-footer-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.about-footer-list ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 15px;
}

.about-footer-list ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-secondary-color);
    font-weight: 700;
    font-size: 16px;
}

.about-contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.about-contact-btn .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-contact-btn .icon-box i {
    color: var(--white-color);
    font-size: 20px;
}

.about-contact-btn h3 {
    font-size: 18px;
    margin: 0;
}

.about-contact-btn h3 a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.about-contact-btn h3 a:hover {
    color: var(--accent-secondary-color);
}

.about-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.about-footer-btn .btn-default {
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    .about-footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================================================
   REDESIGNED HOMEPAGE SECTIONS
   ===================================================== */

/* Section Base Styles */
.section {
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-secondary-color);
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-heading h2 .highlight {
    color: var(--accent-secondary-color);
}

.section-heading p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 0;
}

.section-heading.text-center {
    text-align: center;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-secondary-color), #d4882b);
    color: var(--white-color);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(186, 111, 37, 0.3);
}

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

.btn-white:hover {
    background: var(--accent-secondary-color);
    color: var(--white-color);
}

.btn-outline-white {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-outline-white:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* About Section */
.about-section {
    background: var(--white-color);
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-secondary-color), #d4882b);
    color: var(--white-color);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(186, 111, 37, 0.4);
}

.about-experience-badge .counter {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge span:last-child {
    font-size: 14px;
    opacity: 0.9;
}

.about-content .section-heading {
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-secondary-color), #d4882b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: var(--white-color);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.about-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    font-size: 20px;
    color: var(--accent-secondary-color);
}

.contact-item span a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Services Section */
.services-section {
    background: var(--secondary-color);
}

.service-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a1a6e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white-color);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--white-color);
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    font-weight: 700;
    color: rgba(186, 111, 37, 0.1);
    line-height: 1;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-secondary-color), #d4882b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 36px;
    color: var(--white-color);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--secondary-color);
}

.why-choose-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-feature-icon {
    width: 55px;
    height: 55px;
    background: var(--white-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-feature-icon i {
    font-size: 24px;
    color: var(--accent-secondary-color);
}

.why-feature-text h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.why-feature-text p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.why-choose-image-wrapper {
    position: relative;
}

.why-choose-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    right: -30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-color), #1a1a6e);
    padding: 30px;
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    color: var(--white-color);
}

.stat-item .counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item span:last-child {
    font-size: 13px;
    opacity: 0.8;
}

/* Security Section */
.security-section {
    background: var(--white-color);
}

.security-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.security-image {
    height: 200px;
    overflow: hidden;
}

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

.security-card:hover .security-image img {
    transform: scale(1.1);
}

.security-content {
    padding: 30px;
}

.security-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.security-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a6e 50%, var(--accent-secondary-color) 100%);
    padding: 60px 0;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-buttons .btn {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-color);
}

.faq-item {
    background: var(--white-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-header .accordion-button {
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.faq-header .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-secondary-color), #d4882b);
    color: var(--white-color);
}

.faq-body {
    padding: 0 25px 20px;
}

.faq-body p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .section {
        padding: 60px 0;
    }
    
    .section-heading h2 {
        font-size: 32px;
    }
    
    .about-experience-badge {
        right: 0;
        bottom: 0;
        padding: 15px 20px;
    }
    
    .about-experience-badge .counter {
        font-size: 36px;
    }
    
    .about-contact-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .why-choose-features {
        grid-template-columns: 1fr;
    }
    
    .why-stats {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }
    
    .cta-wrapper {
        padding: 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .cta-buttons .btn {
        width: auto;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Icon Box Styles for Font Awesome Icons */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    border-radius: 15px;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 28px;
    color: var(--white-color);
}

.service-item .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.service-item .icon-box i {
    font-size: 24px;
}

.ferature-list-item .icon-box,
.why-choose-item .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.ferature-list-item .icon-box i,
.why-choose-item .icon-box i {
    font-size: 22px;
}

.cta-contact-item .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 0;
}

.cta-contact-item .icon-box i {
    font-size: 20px;
}

/* Fix image containers */
.feature-image img,
.why-choose-image img,
.cta-box-image img,
.faq-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Our Feature Section */
.our-feature {
    padding: 80px 0;
    background-color: var(--white-color);
}

.our-feature-images {
    position: relative;
}

.feature-image {
    margin-bottom: 20px;
}

.company-experience-info {
    position: relative;
}

.company-experience-box {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    border-radius: 20px;
    padding: 30px;
    max-width: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.company-experience-content h2 {
    font-size: 48px;
    color: var(--white-color);
    margin-bottom: 5px;
}

.company-experience-content p {
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.9;
}

.company-client-images {
    margin-top: 20px;
}

.our-feature-content {
    padding-left: 30px;
}

.ferature-list-item,
.why-choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.ferature-list-content,
.why-choose-item-content {
    flex: 1;
}

.ferature-list-content h3,
.why-choose-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ferature-list-content p,
.why-choose-item-content p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.why-choose-image {
    margin-bottom: 40px;
}

.why-choose-content {
    padding-left: 30px;
}

/* Our Security Section */
.our-security {
    padding: 80px 0;
    background-color: var(--white-color);
}

.our-security-content {
    padding-right: 30px;
}

.security-content-box {
    margin-top: 30px;
}

.security-content-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 15px;
}

.security-content-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.security-content-item p {
    margin-bottom: 0;
    font-size: 15px;
}

.our-security-image-content {
    position: relative;
}

.security-image {
    margin-bottom: 25px;
}

.security-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.security-list-item {
    flex: 1 1 300px;
    padding: 25px;
    background-color: var(--secondary-color);
    border-radius: 15px;
}

.security-list-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.security-list-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* CTA Box Section */
.cta-box-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.cta-box-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-box .section-title h2 {
    color: var(--white-color);
    font-size: 32px;
    margin-bottom: 30px;
}

.cta-contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-contact-item .icon-box {
    background: rgba(255, 255, 255, 0.2);
}

.cta-contact-item .icon-box i {
    color: var(--white-color);
}

.cta-contact-content h3 {
    font-size: 14px;
    color: var(--white-color);
    opacity: 0.8;
    margin-bottom: 5px;
}

.cta-contact-content p a {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
}

.cta-box-image {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    opacity: 0.3;
}

.cta-box-image img {
    width: 100%;
}

/* FAQs Section */
.our-faqs {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.faq-content {
    padding-right: 30px;
}

.faq-image {
    margin-top: 30px;
}

.faq-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
}

.faq-accordion {
    margin-top: 30px;
}

.accordion-item {
    background: var(--white-color);
    border: none;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
    color: var(--white-color);
}

.accordion-body {
    padding: 20px 25px;
    background: var(--white-color);
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .our-feature-content,
    .why-choose-content,
    .our-security-content,
    .cta-box-content,
    .faq-content {
        padding-right: 0;
        padding-left: 0;
    }

    .company-experience-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        max-width: 100%;
    }

    .cta-box {
        padding: 30px;
    }

    .cta-box-image {
        display: none;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .security-list {
        flex-direction: column;
    }

    .ferature-list-item,
    .why-choose-item {
        flex-direction: column;
        text-align: center;
    }

    .ferature-list-item .icon-box,
    .why-choose-item .icon-box {
        margin: 0 auto 15px;
    }
}

    .about-us-image {
        margin-bottom: 40px;
    }

    .about-img-2 img {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .get-free-security-circle {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 20px auto 0;
    }

    .about-us-body {
        flex-direction: column;
        text-align: center;
    }

    .about-footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =====================================================
   REDESIGNED FOOTER
   ===================================================== */

.main-footer {
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #1a1a1a;
    padding-top: 0;
}

.footer-main {
    padding: 80px 0 50px;
    border-bottom: 1px solid #ddd;
}

.footer-about {
    padding-right: 30px;
}

.footer-about .footer-logo {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-about .footer-logo img {
    max-width: 160px;
    height: auto;
}

.footer-about p {
    color: #333333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ba6f25, #d4882b);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(186, 111, 37, 0.35);
    border-color: transparent;
    color: #ffffff;
}

.footer-links {
    margin-bottom: 0;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ba6f25, #d4882b);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: #333333;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 0;
}

.footer-links ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #ba6f25;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ba6f25;
    padding-left: 15px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-links ul li a i {
    font-size: 14px;
    color: #ba6f25;
    margin-right: 10px;
}

.footer-contact ul li {
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact ul li i {
    color: #ba6f25;
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact ul li a {
    color: #333333;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: #ba6f25;
}

.footer-newsletter {
    background: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #ddd;
}

.newsletter-content {
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    border-radius: 20px;
    padding: 40px 50px;
    border: 1px solid #ddd;
}

.newsletter-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.newsletter-content p {
    color: #555555;
    font-size: 15px;
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid #ddd;
    border-radius: 12px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #888888;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ba6f25;
    background: #ffffff;
}

.newsletter-form button {
    padding: 16px 30px;
    background: linear-gradient(135deg, #ba6f25, #d4882b);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(186, 111, 37, 0.4);
}

.footer-bottom {
    padding: 30px 0;
    background: #f5f5f5;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #333333;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ba6f25;
}

@media (max-width: 1199px) {
    .footer-about {
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-about {
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .footer-links {
        margin-bottom: 35px;
    }
    
    .newsletter-content {
        padding: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        margin-top: 25px;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-links h4 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .footer-links ul li {
        margin-bottom: 12px;
    }
    
    .footer-links ul li a {
        font-size: 14px;
    }
    
    .newsletter-content h4 {
        font-size: 20px;
    }
}

/* =====================================================
   ABOUT PAGE SECTIONS
   ===================================================== */

.approach-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

.approach-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-secondary-color), #d4882b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.approach-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.approach-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.approach-image img {
    width: 100%;
    border-radius: 20px;
    margin-top: 40px;
}

.story-section {
    padding: 80px 0;
    background: var(--white-color);
}

.story-images {
    position: relative;
}

.story-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.story-stats {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), #1a1a6e);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-box {
    text-align: center;
    color: var(--white-color);
}

.stat-box .counter {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-box span:last-child {
    font-size: 13px;
    opacity: 0.8;
}

.story-content .section-heading {
    margin-bottom: 30px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .story-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
    }
    
    .approach-card {
        margin-bottom: 20px;
    }
}
