@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.btn-class {
    background-color: #AB8743 !important;
    border: 2px solid #AB8743;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
}

.btn-class:hover {
    background-color: #9B7535;
    border-color: #9B7535;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(171, 135, 67, 0.4);
    animation: none;
    text-decoration: none;
}
p{
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 500;
}

ul li, ol li{
    font-family: "Montserrat", sans-serif;
    padding: 0px;
    margin: 0px;
}

img{
    /*width: 100%;*/
    /*width: 60% !important;*/
    height: auto;
}

.bg-1{
    background-color: #000000;
}

.bg-2{
    background-color: #0b008b;
}

.bg-3{
    background-color: #f5f5f5;
}

.bg-4 {
    background-color: #000000;
}

.w-100{
    width: 100%; 
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Basic grid system */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    padding-left: 15px;
    padding-right: 15px;
}

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

.d-block{
    display: block;
}

.p-0{
    padding: 0px;
}

.pt-10{
    padding-top: 10px;
}

.pt-20{
    padding-top: 20px;
}

.pb-10{
    padding-bottom: 10px;
}

.pb-15{
    padding-bottom: 15px;
}

.pb-20{
    padding-bottom: 20px;
}

.m-0{
    margin: 0px;
}

.com-padd{
    padding: 15px 0px;
}

.main-btn {
    padding-top: 30px;;
}

.cta-button {
    background-color: #000af2;
    color: #ffffff;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

a.cta-button{
    text-decoration: none;
}

ul.social-links {
    display: flex;
    align-items: center;
    justify-content: end;
}

ul.social-links li {
    list-style: none;
    margin: 0px 5px;
    background-color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.social-links li:last-child{
    margin-right: 0px;
}

ul.social-links li a {
    color: #0b008b;
}
/* Header with Left Sidebar Menu and Right Background with Form */
.header-inquiry {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.header-bg-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.left-sidebar {
    width: 100%;
    background-color: #0b008b;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-logo img {
    width: 100px;
    height: auto;
}

.sidebar-menu h3 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu ul li {
    margin-bottom: 8px;
}

.sidebar-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 15px;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #ffffff;
    transform: translateX(5px);
}

.right-bg-form {
    width: 75%;
    background-image: url(../img/bg-1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    max-width: 450px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.inquiry-form-wrapper h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0b008b;
    text-align: center;
    margin-bottom: 20px;
}

.inquiry-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.inquiry-form .form-row input,
.inquiry-form .form-row select {
    flex: 1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.inquiry-form button {
    width: 100%;
    padding: 12px;
    background-color: #0b008b;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.inquiry-form button:hover {
    background-color: #000000;
}

/* Mobile responsiveness */
@media only screen and (max-width: 768px) {
    .header-inquiry {
        height: auto;
    }
    
    .header-bg-container {
        flex-direction: column;
    }
    
    .left-sidebar {
        width: 100%;
        padding: 20px;
    }
    
    .sidebar-menu ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .sidebar-menu ul li {
        margin-bottom: 0;
        flex: 1;
        min-width: calc(50% - 5px);
    }
    
    .sidebar-menu ul li a {
        text-align: center;
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .right-bg-form {
        width: 100%;
        min-height: 300px;
    }
    
    .inquiry-form-wrapper {
        margin: 10px;
        padding: 20px;
        max-width: none;
    }
    
    .inquiry-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Sidebar Dropdown */
.left-sidebar {
    width: 100%;
    background-color: #fff;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
    width: 110px;
    height: auto;
}

.sidebar-menu h3 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.sidebar-menu ul {
    list-style: none;
    padding: -25px 20px;
    margin: 0;
}

.sidebar-menu ul li {
    margin-bottom: 3px;
}

.sidebar-menu ul li a {
    /*color: #0b008b;*/
    color: #071e55;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 16px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a.active {
    background-color: #346692;
    border-left: 5px solid #AB8743;
    color: #ffffff;
    padding-left: 20px;
}

.left-sidebar .dropdown {
    position: relative;
    display: block;
}

.left-sidebar .dropdown::after {
    content: "\f054";
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    color: #e0e0e0;
    transform: rotate(0deg);
    top: 16px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.left-sidebar .dropdown:hover::after {
    transform: rotate(90deg);
}

.left-sidebar .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #0b008b;
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    left: 100%;
    top: 0;
    z-index: 1000;
    border-radius: 6px;
    padding: 10px 0;
}

.left-sidebar .dropdown:hover .dropdown-menu {
    display: block;
}

.left-sidebar .dropdown-menu li {
    margin-bottom: 2px;
}

.left-sidebar .dropdown-menu li a {
    font-size: 13px;
    padding: 11px 18px;
    border-left: none;
    color: #e0e0e0;
}

.left-sidebar .dropdown-menu li a:hover {
    background-color: rgba(0, 212, 255, 0.2);
    color: #ffffff;
}

/* Hero Section */

.hero{
    background-color: #fff;
}

.hero-bg {
    background-image: url(../img/slider/slider-1.jpg);
    background-size: cover;
    background-position: center;
    min-height: 520px;
    position: relative;
}

.hero-bg .row{
    align-items: center;
}

.hero-overlay {
    background: linear-gradient(135deg, #346692 0%, rgba(26, 26, 46, 0.88) 100%);
  
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.hero-content h1 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-form {
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
    color: #1a1a2e;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    text-align: center;
}

/* Header */

.top-bar {
    background-color: #0b008b;
    color: #fff;
    padding: 5px 20px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.top-bar .row {
    align-items: center;
    text-align: left;
}

.top-bar p{
    font-size: 13px;
}

.top-bar .right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.top-bar .call-us {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    border-right: 1px solid #ffffff;
    margin-right: 10px;
}

.top-bar .call-us span.call{
    padding-right: 10px;
}

.top-bar .call-us a{
    color: #ffffff;
    text-decoration: none;
}

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

a.w-chat {
    background-color: #25d366;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 16px;
    text-decoration: none;
}


.header{
    position: sticky;
    top: 0;
    background-color: #fefefe;
    padding: 5px 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header .container { 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    width: auto;
    height: 100px;
    display: block;
}

.header .menu {
    display: flex;
    gap: 40px;
}

.header .menu a {
    text-decoration: none;
    color: #000000;
    font-family: "Montserrat", sans-serif;
}

.header .menu a:hover{
    color: #0b008b;
}

.header .menu a.active {
    color: #0b008b;
    font-weight: 600;
}

.header .cta-button {
    background-color: #0b008b;
    color: #16371a;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fefefe;
}

a.cta-button{
    text-decoration: none;
}

/* Dropdown Styling */
.menu .dropdown {
    position: relative;
    display: inline-block;
}

.menu .dropdown::after {
    content: "\f054";
    font-family: "FontAwesome";
    position: absolute;
    right: -15px;
    color: #000000;
    transform: rotate(90deg);
    top: 3px;
    font-size: 12px;
}

.menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 230px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
}

.menu ul.dropdown-menu li{
    list-style: none;
}

.menu .dropdown-menu a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.menu .dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.menu .dropdown:hover .dropdown-menu {
    display: block;
}

/* Off-Canvas Dropdown */
.off-canvas .dropdown {
    position: relative;
    display: block;
}

.off-canvas .dropdown-menu {
    display: none;
    position: relative;
    background-color: #000000;
    min-width: 100%;
    box-shadow: none;
    padding-left: 0px;
}

.off-canvas .dropdown:hover .dropdown-menu {
    display: block;
}

.off-canvas {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #000000;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s;
    padding: 20px;
    z-index: 9999;
}

.off-canvas.open {
    right: 0;
}

.off-canvas .close-btn {
    cursor: pointer;
    float: right;
    font-size: 24px;
    color: #ffffff;
}

.off-canvas .menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.off-canvas .menu a {
    text-decoration: none;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* main-heading */

.main-heading h3{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #000000;
}

.main-heading h3::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #000000;
    margin: 8px 0px;
}

.main-heading-center p {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #16371a;
    font-style: italic;
    text-align: center;
}

.main-heading-center h3{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #000000;
    text-align: center;
}

.main-heading-center h3::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #000000;
    margin: 8px auto;
}

.main-heading-center p {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #e5ca6a;
    font-style: italic;
}

.hero-slider img{
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}

.hero-slider .slick-slide {
    line-height: 0px;
    height: 520px;
}

.hero-slider .slick-prev, .hero-slider .slick-next {
    position: absolute;
    right: 14px;
    background: none;
    width: 30px;
    height: 30px;
    bottom: 0;
    top: auto;
}

.hero-slider .slick-prev {
    right: 50px;
    left: auto;
    z-index: 99;
}

.hero-slider .slick-next:before {
    content: '→';
    background-color: #16371a;
    padding: 0px;
    font-size: 35px;
    border-radius: 50%;
}

.hero-slider .slick-prev:before {
    content: '←';
    background-color: #16371a;
    padding: 0px;
    font-size: 36px;
    border-radius: 50%;
}

/* Form */

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    font-family: "Montserrat", sans-serif;
}

.form-group input[type="radio"],
.form-group input[type="checkbox"] {
    width: auto;
    font-family: "Montserrat", sans-serif;
}

/* Submit Button */
button[type="submit"] {
    padding: 10px 20px;
    background-color: #000af2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #000000;
}

.thank-you{
    text-align: center;
}

.thank-you h2{
    font-size: 30px;
    padding-bottom: 10px;
}

.thank-you p{
    font-size: 20px;
    padding-bottom: 30px;
}

/* slick slider */


.hero h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    padding: 10px 0px;
    color: #1a1a2e;
}

/* breadcrumb */

.breadcrumb {
    background-image: url(../img/breadcrumbs.jpg);
    padding: 80px 0px;
    position: relative;
    background-size: cover;
    width: 100%;
    background-position: inherit;
}
.breadcrumb h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    color: #ffffff;
    z-index: 999;
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

/* Our Approach Section */
.our-approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach-image {
    text-align: center;
}

.approach-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.approach-icon {
    width: 40px;
    height: 40px;
    background-color: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-icon i {
    font-size: 18px;
    color: #ffffff;
}

.approach-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.approach-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Reliable Security Section */
.reliable-security-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.reliable-security-content {
    padding-right: 40px;
}

.reliable-security-content .subtitle {
    color: #0066cc;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.reliable-security-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reliable-security-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 30px;
}

.reliable-security-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.reliable-security-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #1a1a2e;
}

.reliable-security-content ul li i {
    color: #0066cc;
    margin-right: 12px;
    font-size: 14px;
}

.reliable-security-image {
    text-align: center;
}

.reliable-security-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    text-decoration: none;
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title.text-start h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-title.text-start p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-info-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.contact-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    padding: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #0066cc;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.detail-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #333333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #0066cc;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form .form-control::placeholder {
    color: #999999;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.mt-5 {
    margin-top: 30px;
}

/* Reliable Security Section */
.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.approach-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.approach-icon i {
    font-size: 32px;
    color: #ffffff;
}

.approach-item h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.approach-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.solution-item {
    background-color: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #0066cc;
}

.solution-item:hover {
    background-color: #0066cc;
    transform: translateY(-3px);
}

.solution-item:hover h4 {
    color: #ffffff;
}

.solution-item h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    transition: color 0.3s ease;
}

.cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
}

/* About Us Section - New Design */
.about-us {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-us .row {
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-subtitle {
    color: #0066cc;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-title {
    color: #1a1a2e;
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    color: #666666;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-start-free {
    background-color: #0066cc;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-start-free:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    text-decoration: none;
    color: #ffffff;
}

.about-image-wrapper {
    position: relative !important;
    height: 500px !important;
    width: 100% !important;
    overflow: visible !important;
}

.about-image-wrapper .main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: block !important;
}

.about-image-wrapper .overlay-image {
    position: absolute !important;
    bottom: -20px !important;
    right: -20px !important;
    width: 250px !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: block !important;
}

.experience-badge {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    background-color: #ffffff !important;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 4;
    min-width: 160px;
    display: block !important;
}

.experience-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-text {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-image-wrapper {
        height: 400px !important;
        overflow: visible !important;
    }
    
    .about-image-wrapper .overlay-image {
        width: 180px !important;
        height: 180px !important;
        bottom: -10px !important;
        right: -10px !important;
    }
    
    .experience-badge {
        right: 15px !important;
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .experience-number {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .about-us {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-image-wrapper {
        height: 350px;
    }
    
    .about-image-wrapper .overlay-image {
        width: 180px;
        height: 180px;
        bottom: -15px;
        right: -15px;
    }
    
    .experience-badge {
        right: 15px;
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .experience-number {
        font-size: 32px;
    }
    
    .experience-text {
        font-size: 12px;
    }
}

/* About */



.about-us::before{
    content: "";
    background-color: transparent;
    background-size: cover;
}

.about-us .row{
    align-items: center;
}

/* .about-us img{
    width: 100% !important;
    height: auto;
    display: block;
} */

.about-us p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: normal;
}

.about-us p + p{
    padding-top: 15px;
}

/* Certification Process */

.certification-process {
    background-color: #f8f9fa;
}

.certification-process .subtitle {
    color: #0b008b;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
}

.step-badge {
    width: 120px;
    height: 140px;
    margin: 0 auto 15px;
    border-radius: 60px 60px 10px 10px;
    position: relative;
    padding: 20px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-badge:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.step-icon i {
    font-size: 28px;
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
}

.step-badge.step-1 { background: linear-gradient(135deg, #9b8fc9 0%, #7b6fb0 100%); color: #fff; }
.step-badge.step-2 { background: linear-gradient(135deg, #8ec9d6 0%, #6eb0c0 100%); color: #fff; }
.step-badge.step-3 { background: linear-gradient(135deg, #d4d68e 0%, #b8ba70 100%); color: #333; }
.step-badge.step-4 { background: linear-gradient(135deg, #8ed68e 0%, #70ba70 100%); color: #fff; }
.step-badge.step-5 { background: linear-gradient(135deg, #d6b08e 0%, #ba9070 100%); color: #fff; }
.step-badge.step-6 { background: linear-gradient(135deg, #d68eb0 0%, #ba7090 100%); color: #fff; }
.step-badge.step-7 { background: linear-gradient(135deg, #8eb0b0 0%, #709090 100%); color: #fff; }
.step-badge.step-8 { background: linear-gradient(135deg, #b09090 0%, #907070 100%); color: #fff; }

.step-badge.step-1 .step-icon i { color: #7b6fb0; }
.step-badge.step-2 .step-icon i { color: #6eb0c0; }
.step-badge.step-3 .step-icon i { color: #b8ba70; }
.step-badge.step-4 .step-icon i { color: #70ba70; }
.step-badge.step-5 .step-icon i { color: #ba9070; }
.step-badge.step-6 .step-icon i { color: #ba7090; }
.step-badge.step-7 .step-icon i { color: #709090; }
.step-badge.step-8 .step-icon i { color: #907070; }

.process-step h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin: 15px 0 10px;
    min-height: 40px;
}

.process-step p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

/* Services */


.services .main-heading h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 28px;
}

.services h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    padding-bottom: 10px;
    padding-top: 15px;
}

.services a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.services-home a.service-link{
    padding-top: 30px;
    display: block;
    text-decoration: none;
}

.services .video-container{
    margin-top: 15px;
}


.services-inner ul li {
    list-style: none;
    padding-bottom: 5px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.services-inner ul li::before{
    content: "\f192";
    color: #16371a;
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
}

.services-inner ul li:last-child{
    padding-bottom: 0px;
}

.services .types-slider{
    padding: 15px;
    width: 100%;
}

.services .types-slider div {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.services-box{
    position: relative;
    background-color: #0b008b;
    height: 100%;
}

.services-box .icon{
    background-color: #ffffff;
}

.services-box .icon img{
    display: block;
}

.services-box .heading-area {
    background-color: #000af2;
    padding: 10px 20px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.services-box .heading-area h4 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    padding-bottom: 10px;
    padding-top: 10px;
}


.services-box .heading-area p {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    padding-bottom: 15px;
}

.service-link .services-box .heading-area span.read-more {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 8px 12px;
    background-color: #000000;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;
}

.videos-services h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #16371a;
    padding-bottom: 20px;
    text-align: center;
}

.seo-text{
    color: #ffffff;
        font-family: "Montserrat", sans-serif;

    text-align: center;
    padding: 10px;
    margin: 20px 0px;
}

.seo-text h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.seo-text a.w-chat i {
    padding-right: 10px;
}

.seo-text a.w-chat {
    background-color: #25d366;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    margin-top: 12px;
    line-height: 15px;
}

.form-sec{
    padding: 30px 0px;
    margin: 20px 0px;
}
/* Services End */

/* why choose */

.why-choose{
    padding-top: 30px;
}

.why-choose-box{
    text-align: center;
}

.why-choose p{
    text-align: center;
}

.why-choose-box .icon-box {
    background-color: #0b008b;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.why-choose-box .icon-box img{
    width: 80px;
    height: 80px;
}

.why-choose-box .heading-area h4{
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    padding: 10px 0px;
    color: #0b008b;
}

.why-choose-box .heading-area p{
    font-size: 15px;
}

.iso-text h3{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    color: #ffffff;
    padding: 10px 0px;
    text-align: center;
}

/* why choose end */

/* clients */

.clients-slider{
    display: flex;
    padding-top: 20px;
}

.clients-slider .item{
    -webkit-box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    transition: transform 0.3sease, box-shadow 0.3sease;
}

.clients-slider img{
    width: 100%;
    height: auto;
}

.clients-slider .slick-slide {
    margin: 0 10px; /* Adjust the value for spacing */
}
.clients-slider .slick-list {
    margin: 0 -10px; /* To prevent overflow issues */
}

/* clients end */

/* call-action */

.call-action {
    padding: 90px 0px;
    text-align: center;
    background-image: url(../img/bg-1.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.call-action .row{
    align-items: center;
    justify-content: center;
}

.call-action h3{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.call-action p{
    font-size: 20px;
    color: #ffffff;
}

/* Basic button styling */
.call-action .button {
    background-color: #0b008b;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin-left: 20px;
  }
  
  /* Hover animation */
  .call-action .button:hover {
    background-color: #000000;
    transform: scale(1.05);
  }
  
  /* Optional: Active state to add depth on click */
  .call-action .button:active {
    transform: scale(0.98);
  }

/* call-action end */

/* gallery */

.gallery .col-3{
    padding-top: 20px;
}


.gallery .col-4{
    padding-top: 20px;
}

.gallery p.caption {
    background-color: #b09229;
    color: #ffffff;
    text-align: center;
    padding: 5px 0px;
    font-size: 16px;
    font-weight: 700;
}

/* Testimonials */

.testimonials {
    background-image: url(../img/ISO-Guide.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
}

.testimonials-bg {
    background-color: #f5f5f5;
    padding: 30px;
}


.testimonials-box {
    background-color: #0b008b;
    padding: 30px;
    position: relative;
    height: 100%;
}

.testimonials-box::before {
    content: "";
    background-image: url(../img/quotes.png);
    width: 64px;
    height: 64px;
    position: absolute;
    top: -35px;
    left: 10px;
}

.testimonials-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    padding-top: 12px;
}

.testimonials-box h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
}

.testimonials-slider .slick-slide {
    margin: 0 10px; /* Adjust the value for spacing */
}
.testimonials-slider .slick-list {
    margin: 0 -10px; /* To prevent overflow issues */
}

/* FAQ's */
.ab_accordion {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.ab_accordion_content {
    display: none;
}

.ab_accordion_header {
    cursor: pointer;
    background-color: 
#ffffff;
    padding: 12px;
    font-weight: bold;
    box-shadow: 0 0 5px 
rgba(0, 0, 0, .3);
    margin-top: 10px;
    border-radius: 3px;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.ab_accordion_header.active {
    background-color: 
    #0b008b;
    color: 
#fff;
}

.ab_accordion_content {
    padding: 12px;
    animation: fade-in-up 0.3s ease-in-out;
    border-left: 1px solid 
#ededed;
    border-right: 1px solid 
#ededed;
    border-bottom: 1px solid 
#ededed;
}

.ab_accordion_header i {
    float: right;
    font-size: 14px;
    margin-top: 2px;
    position: absolute;
    right: 15px;
    top: 13px;
}

.ab_accordion_header.active i {
    transform: rotate(180deg);
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* side menu */

.side-menu{
    background-color: #f5f5f5;
}

.side-menu h4 {
    background-color: #0b008b;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    padding: 15px 20px;
    font-weight: 800;
}

.side-menu ul {
    padding: 20px 20px;
}

.side-menu ul li{
    list-style: none;
    padding-bottom: 20px;
}

.side-menu ul li:last-child{
    padding-bottom: 0px;
}

.side-menu ul li a {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

.side-menu ul li a:hover{
    color: #0b008b;
}

.side-menu ul li a.active {
    color: #0b008b;
}

.side-menu ul li a.active:after {
    content: "➤";
    left: 6px;
    position: relative;
    top: 1px;
}

/* Service Inner Page */

.service-inner {
    background-color: #ffffff;
}

.service-content {
    padding-left: 20px;
}

.service-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-features {
    margin: 30px 0;
}

.feature-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #0b008b;
    color: #ffffff;
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 32px;
    color: #0b008b;
    margin-bottom: 10px;
}

.feature-box:hover i {
    color: #ffffff;
}

.feature-box h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.content-section {
    margin: 30px 0;
}

.content-section h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-benefits ul li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.service-benefits ul li i {
    color: #0b008b;
    margin-right: 10px;
}

.advantage-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.advantage-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
}

.advantage-item p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.process-item {
    background-color: #f8f9fa;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-item:hover {
    background-color: #0b008b;
    color: #ffffff;
    transform: translateY(-5px);
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: #0b008b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 15px;
    font-family: "Montserrat", sans-serif;
}

.process-item:hover .process-number {
    background-color: #ffffff;
    color: #0b008b;
}

.process-item h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
}

.process-item p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.industry-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 45s linear infinite;
  font-size: 15px;
  font-weight: 500;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* advantages */

.advantages{
    padding: 30px;
    margin: 0px 0px;
}

.advantages-box{
    padding: 20px;
    margin-bottom: 20px;
}

.advantages-box h4{
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0b008b;
    padding-bottom: 15px;
}

.advantages-box h4 i{
    margin-right: 10px;
    color: #16371a;
}

.advantages-box p{
    font-size: 15px;
    line-height: 1.6;
}

.advantages h4{
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #16371a;
    padding-bottom: 20px;
}

.advantages ul li {
    list-style: none;
    padding-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

.advantages ul li::before{
    content: "\f192";
    color: #16371a;
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
}

.advantages ul li:last-child{
    padding-bottom: 0px;
}

/* Blogs */

a.blog-card  {
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    box-shadow: 0 5px 11px 0 rgb(62 79 101 / 11%);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

a.blog-card .blog-archive-content {
    background-color: #0b008b;
    color: #ffffff;
    padding: 20px 20px;
}

a.blog-card .blog-archive-content h3{
    font-family: "Montserrat", sans-serif;
}

a.blog-card .blog-archive-content p{
    padding: 15px 0px;
}

a.blog-card .blog-archive-content span{
    background-color: #000000;
    color: #ffffff;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fefefe;
    display: inline-block;
}



/* Contact us */

.contact-us h4{
    font-size: 25px;
    padding-bottom: 20px;
}

.contact-us h6{
    font-size: 18px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.contact-us span {
    margin-bottom: 20px;
    display: block;
}

.contact-us span a{
    color: #000000;
    font-weight: bold;
}

.contact-us li {
    list-style: none;
    position: relative;
    padding-bottom: 45px;
    padding-left: 60px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.contact-us li::before {
    content: "";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    width: 45px;
    height: 45px;
    background-color: #e1c16e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;
    color: #17371a;
}

.contact-us li:nth-child(1){
    padding-bottom: 35px;
}

.contact-us li:nth-child(1)::before {
    content: "\f3c5";
}

.contact-us li:nth-child(2)::before {
    content: "\f3ce";
}

.contact-us li:nth-child(3)::before {
    content: "\f0e0";
}

.services-inner-page h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #17371a;
    padding-bottom: 15px;
    padding-top: 15px;
}

.services-inner-page p.p2 {
    padding-bottom: 10px;
}

.services-inner-page p span {
    color: #d29c36;
}

.form-services{
    border: 2px solid #17371a;
    padding: 20px;
    margin-top: 30px;
}

.form-services h3{
    padding-bottom: 20px;
}

.recaptcha-container {
    transform: scale(0.8); /* Adjust scale as needed */
    transform-origin: 0 0; /* Keeps it aligned to the top-left */
    -webkit-transform-origin: 0 0;
}

.recaptcha-container iframe {
    max-width: 100% !important; /* Ensures it doesn't overflow */
    height: auto !important;
}

.call-us-toady {
    text-align: center;
    padding: 20px 12px;
    margin-top: 20px;
}

.call-us-toady h3{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #17371a;
    padding-bottom: 15px;
}

.call-us-toady p {
    line-height: 1.6;
}

.call-us-toady p a{
    color: #17371a;
    font-weight: bold;
    font-size: 20px;
}

.faq-form {
    margin-bottom: 30px;
}

.faq-form h2{
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 15px;
}

.faq-form .ab_accordion {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.faq-form .ab_accordion_content {
    display: none;
}

.faq-form .ab_accordion_header {
    cursor: pointer;
    background-color: 
#ffffff;
    padding: 12px;
    font-weight: bold;
    box-shadow: 0 0 5px 
rgba(0, 0, 0, .3);
    margin-top: 10px;
    border-radius: 3px;
    font-family: "Montserrat", sans-serif;
}

.faq-form .ab_accordion_header.active {
    background-color: 
    #e1c16e;
    color: 
    #17371a;
}

.faq-form .ab_accordion_content {
    padding: 12px;
    animation: fade-in-up 0.3s ease-in-out;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px 10px;
}

.faq-form .ab_accordion_header {
    cursor: pointer;
    background-color: #e1c16e;
    padding: 12px;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    margin-top: 10px;
    border-radius: 3px;
    color: #17371a;
    font-family: "Montserrat", sans-serif;
}

.faq-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #e1c16e;
    color: #17371a;
    font-weight: 600;
}
/* Footer */

footer {
    background-color: #0b008b;
    padding: 40px 0px 60px 0px;
}

.footer-heading{
    padding-bottom: 20px;
}

.footer-heading h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

footer h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 12px;
}

.footer-heading h4::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #000000;
    margin: 8px 0px;
}

footer p{
    font-size: 15px;
    color: #ffffff;
}

footer ul.quick-link li {
    list-style: none;
    padding-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

footer ul.quick-link li::before{
    content: "\f054";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
}

footer ul.quick-link li:last-child{
    padding-bottom: 0px;
}

footer ul.quick-link li a {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-decoration: none;
}

.contact-us-footer li {
    list-style: none;
    position: relative;
    padding-bottom: 30px;
    padding-left: 45px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
}

.contact-us-footer li::before {
    content: "";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    width: 40px;
    height: 40px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
}

.contact-us-footer li:nth-child(1){
    padding-bottom: 15px;
}

.contact-us-footer li:nth-child(1)::before {
    content: "\f3c5";
    top: 0; 
}

.contact-us-footer li:nth-child(2)::before {
    content: "\f3ce";
}

.contact-us-footer li:nth-child(3)::before {
    content: "\f0e0";
}



.contact-us-footer2 li {
    list-style: none;
    position: relative;
    padding-bottom: 30px;
    padding-left: 45px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
}

.contact-us-footer2 li::before {
    content: "";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    width: 40px;
    height: 40px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
}

.contact-us-footer2 li:nth-child(1){
    padding-bottom: 44px;
}

.contact-us-footer2 li:nth-child(1)::before {
    content: "\f3ce";
    top: 0; 
}

.contact-us-footer2 li:nth-child(2)::before {
    content: "\f232";
}

.contact-us-footer2 li:nth-child(3)::before {
    content: "\f0e0";
}

.footer-bottom {
    padding: 10px 0px;
}

.footer-bottom p{
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

footer ul.social-links {
    display: flex;
    align-items: center;
    justify-content: start;
}

footer ul.social-links li a {
    color: #000000;
}

.social-follow h5 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.social-follow ul.social-links {
    justify-content: start;
}

p.copy-right{
    text-align: left;
}

p.devlop{
    text-align: right;
}

.follow-us, .social{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 5px 0px;
}

.follow-us .trustpilot {
    display: flex;
    align-items: center;
}  

.follow-us .trustpilot span{
    color: #ffffff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    padding-right: 10px;
}

.follow-us .trustpilot img {
    width: auto;
    height: 40px;
}

.social span{
    color: #ffffff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    padding-right: 10px;
}


.seo-links {
    padding-top: 20px;
}

.seo-links .heading h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.seo-links .heading h4::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #16371a;
    margin: 0 auto;
    margin-top: 10px;
}

.seo-links li {
    list-style: none;
    padding-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.seo-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}
.seo-links li::before {
    content: "\f054";
    left: 0px;
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    color: #16371a;
}

.seo-links li:last-child{
    padding-bottom: 0px;
}

.float {
    
    /*position: fixed;*/
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .my-float {
    margin-top: 16px;
  }
  
  .mobile-quick {
    display: none;
  }


  /* Gallery */

.gallery {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next row */
    gap: 10px; /* Adds spacing between items */
    padding: 0;
    margin: 0;
    list-style: none;
}

.gallery li {
    flex: 1 1 calc(25% - 10px); /* 25% width per item, accounting for gap */
    box-sizing: border-box; /* Ensures padding and borders are included in width */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img {
    width: 100%; /* Ensures images fit within their container */
    height: auto; /* Maintains aspect ratio */
    display: block;
}


.gallery li:hover{
	transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Video */

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


  

/* Mobile responsiveness */
@media only screen and (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    
    .hero-slider img {
        height: 250px;
    }
    
    .hero-slider .slick-slide {
        height: 250px;
    }
    
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }

    .d-none{
        display: none;
    }

    .call-action p{
        margin-bottom: 30px;
    }

    .order-1 { order: 1; }
    .order-2 { order: 2; }

    a.w-chat {
        background-color: #25d366;
        color: #ffffff;
        padding: 5px 20px;
        border-radius: 16px;
        text-decoration: none;
        display: block;
        text-align: center;
        margin-top: 8px;
    }

    .header .logo img{
        height: 55px;
    }

    .top-bar .right{
        display: none;
    }

    .top-bar p {
        font-size: 13px;
        text-align: center;
        line-height: 1.2;
    }

    .iso-text h3{
        font-size: 15px;
    }

    .pb-0{
        padding-bottom: 0px !important;
    }

    .pb-10{
        padding-bottom: 10px;
    }

    .breadcrumb h1{
        font-size: 20px;
    }

    ul.social-links {
        justify-content: center;
        padding-top: 10px;
    }

    .header .cta-button{
        display: none;
    }

    .header .menu {
        display: none;
    }
    .menu-toggle {
        display: block;
        color: #000000;
    }

    .form-group {
        flex-direction: row;
        align-items: center;
    }

    .form-group label {
        width: 30%;
        margin-bottom: 0;
    }

    .form-group input, 
    .form-group textarea, 
    .form-group select {
        width: 100%;
    }

    .services .col-3 + .col-3 {
        padding-top: 35px;
    }

    .why-choose-box .heading-area h4 + p {
        padding-bottom: 20px;
    }

    .call-action h3 span {
        display: block;
        margin-top: 20px;
    }

    .call-action .button {
        font-size: 16px;
        margin-left: 0px;
    }

    .gallery .col-3 + .col-3{
        padding-top: 20px;
    }

    .videos .col-4 + .col-4{
        padding-top: 20px;
    }

    .videos-services .col-6 + .col-6{
        padding-top: 20px;
    }

    .faq-form {
        padding: 10px 0px;
    }

    .faq-form h2{
        padding-top: 20px;
        font-size: 20px;
    }

    .faq-form .ab_accordion_header{
        font-size: 15px;
    }

    .testimonials-slider .slick-list {
        overflow: hidden;
    }


.testimonials-box::before {
    content: "";
    background-image: url(../img/quotes.png);
    width: 40px;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 2px;
    background-size: cover;
}

.top-bar {
    padding: 10px 0px;
}

footer{
    padding-top: 10px;
}

.footer-heading {
    padding-top: 22px;
    padding-bottom: 10px;
}

    p.copy-right{
        text-align: center;
    }

    p.devlop {
        text-align: center;
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .float {
        display: none;
      }
    
      .mobile-quick {
        display: block;
        z-index: 999;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
      }
    
      .mobile-quick ul {
        padding: 0px;
        margin: 0px;
        display: flex;
        width: 100%;
        position: relative;
      }
    
      .mobile-quick li {
        width: 50%;
        color: #ffffff;
        padding: 6px;
        font-size: 18px;
        list-style: none;
        text-align: center;
      }
    
      .mobile-quick li:first-child {
        background-color: #34b7f1;
      }
    
      .mobile-quick li:last-child {
        background-color: #25d366;
      }
    
      .mobile-quick li a {
        color: #ffffff;
        text-decoration: none;
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .service-content {
        padding-left: 0;
        margin-top: 30px;
      }
}

/* Marquee Section */
.marquee-section {
    background: linear-gradient(135deg, #1a3a52 0%, #0d1b2a 50%, #1a3a52 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        linear-gradient(135deg, #1a3a52 0%, #0d1b2a 50%, #1a3a52 100%);
    padding: 0;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.marquee-section .container {
    position: relative;
    z-index: 2;
}

.marquee-section h2 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marquee-section .btn-outline-light {
    background-color: #AB8743;
    border: 2px solid #AB8743;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
}

.marquee-section .btn-outline-light:hover {
    background-color: #9B7535;
    border-color: #9B7535;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(171, 135, 67, 0.4);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(171, 135, 67, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
    }
}

/* About Us Section Styling - REMOVED DUPLICATE */
/* .about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
} */

.threat-detection-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 25px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.threat-detection-overlay .percentage {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #AB8743;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.threat-detection-overlay .description {
    display: block;
    font-size: 14px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.about-content {
    padding-left: 30px;
}

.about-content .section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a3a52;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.btn-primary-audit {
    background-color: #AB8743;
    border: 2px solid #AB8743;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
}

.btn-primary-audit:hover {
    background-color: #9B7535;
    border-color: #9B7535;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(171, 135, 67, 0.4);
    animation: none;
    text-decoration: none;
}

/* Mobile responsiveness for About Us section */
@media only screen and (max-width: 768px) {
    .about-image-wrapper {
        margin-bottom: 30px;
    }
    
    .threat-detection-overlay {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .threat-detection-overlay .percentage {
        font-size: 28px;
    }
    
    .threat-detection-overlay .description {
        font-size: 12px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-content .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 14px;
    }
    
    .btn-primary-audit {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Quality Section Styling */
.quality-section {
    background-color: #346692;
    padding: 80px 0;
}

.quality-section .main-heading-center {
    text-align: center;
    margin-bottom: 50px;
}

.quality-section .subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #AB8743;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.quality-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a3a52;
    margin-bottom: 0;
}

.quality-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.quality-item {
    flex: 0 0 calc(20% - 24px);
    max-width: calc(20% - 24px);
    text-align: center;
    transition: transform 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-10px);
}

.quality-item img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quality-item:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness for quality section */
@media only screen and (max-width: 1200px) {
    .quality-item {
        flex: 0 0 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}

@media only screen and (max-width: 992px) {
    .quality-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media only screen and (max-width: 768px) {
    .quality-section {
        padding: 60px 0;
    }
    
    .quality-section h3 {
        font-size: 28px;
    }
    
    .quality-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media only screen and (max-width: 576px) {
    .quality-section {
        padding: 40px 0;
    }
    
    .quality-section h3 {
        font-size: 24px;
    }
    
    .quality-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Security Services Marquee Styling */
.security-marquee {
    background: linear-gradient(135deg, #1a3a52 0%, #0d1b2a 50%, #1a3a52 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 0 50px;
    display: inline-block;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile responsiveness for security marquee */
@media only screen and (max-width: 768px) {
    .marquee-text {
        font-size: 14px;
        padding: 0 30px;
    }
}

/* Mobile Responsive Styling for All Sections */

/* Hero Section Mobile Responsive */
@media only screen and (max-width: 768px) {
    .hero-bg {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-overlay .row {
        flex-direction: column;
    }
    
    .hero-overlay .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-overlay .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .iso-certified {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .btn-class {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .hero-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group input {
        font-size: 14px;
        padding: 12px 15px 12px 40px;
    }
    
    .btn-submit {
        font-size: 14px;
        padding: 12px;
    }
}

/* Marquee Section Mobile Responsive */
@media only screen and (max-width: 768px) {
    .marquee-section {
        padding: 30px 0;
    }
    
    .marquee-section .row {
        flex-direction: column;
        text-align: center;
    }
    
    .marquee-section .col-md-9 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .marquee-section .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .marquee-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .marquee-section .btn-outline-light {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* About Us Section Mobile Responsive */
@media only screen and (max-width: 768px) {
    .about-us .row {
        flex-direction: column;
    }
    
    .about-us .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .about-image-wrapper {
        margin-bottom: 30px;
    }
    
    .threat-detection-overlay {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .threat-detection-overlay .percentage {
        font-size: 28px;
    }
    
    .threat-detection-overlay .description {
        font-size: 12px;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-content .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-primary-audit {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Quality Section Mobile Responsive */
@media only screen and (max-width: 768px) {
    .quality-section {
        padding: 60px 0;
    }
    
    .quality-section .main-heading-center {
        margin-bottom: 40px;
    }
    
    .quality-section h3 {
        font-size: 28px;
    }
    
    .quality-section .subtitle {
        font-size: 12px;
    }
    
    .quality-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        margin-bottom: 20px;
    }
    
    .quality-item img {
        max-height: 120px;
    }
}

@media only screen and (max-width: 576px) {
    .quality-section {
        padding: 40px 0;
    }
    
    .quality-section h3 {
        font-size: 24px;
    }
    
    .quality-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .quality-item img {
        max-height: 100px;
    }
}

/* Security Marquee Mobile Responsive */
@media only screen and (max-width: 768px) {
    .marquee-text {
        font-size: 14px;
        padding: 0 30px;
    }
}

/* Services Section Mobile Responsive */
@media only screen and (max-width: 768px) {
    .services-home .main-heading-center h2 {
        font-size: 24px;
    }
    
    .services-home .row .col-lg-3,
    .services-home .row .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    
    .services-box {
        padding: 20px 15px;
    }
    
    .services-box h4 {
        font-size: 16px;
    }
    
    .services-box p {
        font-size: 13px;
    }
    
    .read-more-text {
        font-size: 12px;
    }
}

@media only screen and (max-width: 576px) {
    .services-home .row .col-lg-3,
    .services-home .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .services-box {
        padding: 15px;
    }
}

/* General Mobile Responsive Adjustments */
@media only screen and (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .com-padd {
        padding: 60px 0;
    }
    
    .main-heading-center h2,
    .main-heading-center h3 {
        font-size: 24px;
    }
    
    .main-heading-center p.subtitle {
        font-size: 12px;
    }
    
    /* Adjust all buttons for mobile */
    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Adjust all headings for mobile */
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Adjust AOS animations for mobile */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media only screen and (max-width: 480px) {
    .com-padd {
        padding: 40px 0;
    }
    
    .hero-bg {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .main-heading-center h2,
    .main-heading-center h3 {
        font-size: 20px;
    }
    
    .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Tablet Responsive */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-overlay .col-7 {
        flex: 0 0 60%;
        max-width: 60%;
    }
    
    .hero-overlay .col-4 {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .about-us .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .quality-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .services-home .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Security Services Features Section Styling */
.security-features {
    background-color: #ffffff;
    padding: 80px 0;
}

.security-features .main-heading-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.security-features .subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #AB8743;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.security-features h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a3a52;
    margin-bottom: 25px;
    line-height: 1.2;
}

.security-features .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin: 0 auto;
    max-width: 700px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(171, 135, 67, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    border-color: #AB8743;
}


.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #AB8743 0%, #9B7535 100%);
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin: 0 auto 15px auto; 
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(171, 135, 67, 0.4);
}

.feature-icon i {
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content h4 {
    color: #AB8743;
}

.feature-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content p {
    color: #555555;
}

.feature-item .read-more-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #AB8743;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.feature-item .read-more-text i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover .read-more-text {
    color: #9B7535;
    transform: translateX(5px);
}

.feature-item:hover .read-more-text i {
    transform: translateX(3px);
}

.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Why Choose Us Section Styling */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.why-choose-us .main-heading-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us .subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #AB8743;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.why-choose-us h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a3a52;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-choose-us .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin: 0 auto;
    max-width: 700px;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pxl-inner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pxl-inner-link:hover {
    text-decoration: none;
    color: inherit;
}

.choose-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    min-height: 300px;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(171, 135, 67, 0.1), transparent);
    transition: left 0.5s ease;
}

.choose-card:hover::before {
    left: 100%;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    border-color: #AB8743;
}

.choose-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #AB8743 0%, #9B7535 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.choose-card:hover .choose-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(171, 135, 67, 0.4);
}

.choose-icon i {
    font-size: 28px;
    color: #ffffff;
}

.choose-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.choose-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.choose-card:hover .choose-content h4 {
    color: #AB8743;
}

.choose-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.choose-card:hover .choose-content p {
    color: #555555;
}

.choose-content .read-more-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #AB8743;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.choose-content .read-more-text i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.choose-card:hover .read-more-text {
    color: #9B7535;
    transform: translateX(5px);
}

.choose-card:hover .read-more-text i {
    transform: translateX(3px);
}

/* Mobile responsiveness for Why Choose Us section */
@media only screen and (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .choose-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .choose-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .choose-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
    }
    
    .choose-icon i {
        font-size: 24px;
    }
    
    .choose-content h4 {
        font-size: 18px;
        text-align: center;
    }
    
    .choose-content p {
        font-size: 14px;
        text-align: center;
    }
}

/* Security Stats Section Styling */
.security-stats {
    background-color: #f8f9fa;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.security-stats .container-fluid {
    padding: 0;
}

.security-stats .row {
    margin: 0;
}

.security-stats .g-0 > * {
    padding: 0;
}

.stats-content {
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.stats-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a3a52;
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 40px;
    max-width: 500px;
}

.stats-features {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #AB8743;
}

.stat-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #AB8743 0%, #9B7535 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(171, 135, 67, 0.4);
}

.stat-icon i {
    font-size: 20px;
    color: #ffffff;
}

.stat-text {
    flex: 1;
}

.stat-text h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-text h4 {
    color: #AB8743;
}

.stat-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-text p {
    color: #555555;
}

.stats-image {
    height: 100%;
    background: linear-gradient(135deg, #1a3a52 0%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
}

.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stats-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(171, 135, 67, 0.1);
    z-index: 1;
}

/* Mobile responsiveness for Security Stats section */
@media only screen and (max-width: 991px) {
    .stats-content {
        padding: 60px 40px;
        text-align: center;
    }
    
    .stats-content h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .stats-content p {
        margin: 0 auto 30px auto;
        text-align: center;
    }
    
    .stats-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        max-width: 300px;
    }
    
    .stats-image {
        min-height: 400px;
    }
}

@media only screen and (max-width: 768px) {
    .stats-content {
        padding: 40px 20px;
    }
    
    .stats-content h2 {
        font-size: 24px;
    }
    
    .stats-content p {
        font-size: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .stat-icon i {
        font-size: 18px;
    }
    
    .stat-text h4 {
        font-size: 15px;
    }
    
    .stat-text p {
        font-size: 13px;
    }
    
    .stats-image {
        min-height: 300px;
    }
}

/* Design Section Styling */
.design-section {
    background-color: #333;
    color: #ffffff;
    padding: 80px 0;
}

.design-section .subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #AB8743;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.design-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.design-section .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin: 0 auto;
    max-width: 700px;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.design-item {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    padding: 30px;
}

.design-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    border-color: #AB8743;
}

.design-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #AB8743 0%, #9B7535 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(171, 135, 67, 0.3);
    transition: all 0.3s ease;
}

.design-item:hover .design-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(171, 135, 67, 0.4);
}

.design-icon i {
    font-size: 24px;
    color: #ffffff;
}

.design-content {
    flex: 1;
}

.design-content h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.design-item:hover .design-content h4 {
    color: #AB8743;
}

.design-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    transition: color 0.3s ease;
}

.design-item:hover .design-content p {
    color: #555555;
}

/* Mobile responsiveness for Design section */
@media only screen and (max-width: 768px) {
    .design-section {
        padding: 60px 0;
    }
    
    .design-section h3 {
        font-size: 28px;
        text-align: center;
    }
    
    .design-section .section-description {
        font-size: 15px;
        text-align: center;
    }
    
    .design-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .design-item {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .design-icon {
        margin-right: 0;
        margin-bottom: 20px;
        width: 50px;
        height: 50px;
    }
    
    .design-icon i {
        font-size: 20px;
    }
    
    .design-content h4 {
        font-size: 16px;
        text-align: center;
    }
    
    .design-content p {
        font-size: 13px;
        text-align: center;
    }
}

/* Statistics Section Styling */
.statistics-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(171, 135, 67, 0.05) 0%, rgba(26, 58, 82, 0.05) 100%);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(171, 135, 67, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #AB8743;
}

.stat-number {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a3a52;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 24px;
    color: #AB8743;
    font-weight: 700;
}

.stat-label {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-label {
    color: #AB8743;
}

/* Mobile responsiveness for Statistics section */
@media only screen and (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-box {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-number::after {
        font-size: 18px;
        top: -8px;
        right: -15px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-number::after {
        font-size: 16px;
        top: -6px;
        right: -12px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Testimonials Scroll Section Styling */
.testimonials-scroll-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.testimonials-scroll-section .main-heading-center h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a3a52;
    margin-bottom: 20px;
}

.testimonials-scroll-section .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.testimonials-swiper {
    position: relative;
    overflow: hidden;
}

.pxl-swiper-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pxl-swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.pxl-swiper-slide {
    flex: 0 0 calc(25% - 30px);  /* assuming 4 slides per view with gap 30px */
    min-width: 250px;             /* optional: set a minimum width */
}

.pxl-item--inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.pxl-item--inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    border-color: #AB8743;
}

.pxl-item-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    
}

.pxl-holder-content {
    text-align: center;
}

.pxl-item--title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 5px;
    line-height: 1.2;
}

.pxl-item--position {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.pxl-item-image2 {
    display: none;
}

.pxl-item--star {
    margin-bottom: 15px;
}

.pxl-item--star i {
    color: #FFD700;
    font-size: 16px;
    margin-right: 2px;
}
.pxl-item--desc {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.7;       /* a bit more spacing for readability */
    color: #555555;
    margin: 0;
    padding-top: 15px;
    text-align: left;       /* aligns text nicely */
    word-wrap: break-word;  /* wrap long words */
    white-space: normal;    /* allows text to wrap naturally */
    display: block;
}

/* Swiper Navigation and Pagination */
.pxl-swiper-container .swiper-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pxl-swiper-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pxl-swiper-container .swiper-pagination-bullet-active {
    background-color: #AB8743;
    transform: scale(1.2);
}

/* Mobile responsiveness for Testimonials section */
@media only screen and (max-width: 1200px) {
    .pxl-swiper-wrapper {
        gap: 20px;
    }
    
    .pxl-item--inner {
        padding: 25px;
    }
}

@media only screen and (max-width: 768px) {
    .testimonials-scroll-section {
        padding: 60px 0;
    }
    
    .testimonials-scroll-section .main-heading-center h3 {
        font-size: 28px;
    }
    
    .testimonials-scroll-section .section-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .pxl-swiper-wrapper {
        gap: 15px;
    }
    
    .pxl-item--inner {
        padding: 20px;
    }
    
    .pxl-item-author {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .pxl-item--image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .pxl-item--title {
        font-size: 16px;
        text-align: center;
    }
    
    .pxl-item--position {
        font-size: 13px;
        text-align: center;
    }
    
    .pxl-item--desc {
        font-size: 14px;
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .pxl-item--inner {
        padding: 15px;
    }
    
    .pxl-item--image {
        width: 60px;
        height: 60px;
    }
    
    .pxl-item--title {
        font-size: 15px;
    }
    
    .pxl-item--desc {
        font-size: 13px;
    }
}

/* Mobile responsiveness for security features */
@media only screen and (max-width: 768px) {
    .security-features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .feature-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
}

@media only screen and (max-width: 480px) {
    .security-features {
        padding: 40px 0;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-content h4 {
        font-size: 15px;
    }
    
    .feature-content p {
        font-size: 12px;
    }
}

/* Tablet responsiveness */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 22px;
    }
    
    .feature-content h4 {
        font-size: 17px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
}

/* Mobile responsiveness for marquee section */
@media only screen and (max-width: 768px) {
    .marquee-section {
        padding: 30px 0;
    }
    
    .marquee-section h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .marquee-section .text-end {
        text-align: center !important;
    }
    
    .marquee-section .btn-outline-light {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Customer Logos Section */
.customer-logos-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.customer-logos-scroll {
    overflow: hidden;
    position: relative;
}

.logos-container {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    gap: 40px;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    min-height: 100px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.customer-logo {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover .customer-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.customer-logos-scroll:hover .logos-container {
    animation-play-state: paused;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    .customer-logos-section {
        padding: 60px 0;
    }
    
    .logo-item {
        min-width: 140px;
        min-height: 80px;
        padding: 15px;
    }
    
    .customer-logo {
        max-width: 120px;
        max-height: 50px;
    }
    
    .logos-container {
        gap: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .logo-item {
        min-width: 120px;
        min-height: 70px;
        padding: 10px;
    }
    
    .customer-logo {
        max-width: 100px;
        max-height: 40px;
    }
    
    .logos-container {
        gap: 20px;
    }
}

/* Heading Marquee Animation */
@keyframes marquee-heading {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.marquee-heading-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-heading-wrapper h2 {
    display: inline-block !important;
    padding-left: 100%;
    animation: marquee-heading 18s linear infinite;
}



