 /* Your existing CSS styles */
        :root {
            --theme-primary-color: #F58F47;
            --theme-secondary-color: #555555;
            --theme-dark-color: #181A1D;
            --theme-light-color: #F8F8F8;
            --theme-gray-color: #E7E7E8;
            --theme-white-color: #FFFFFF;
            --theme-border-color: #EEEEEE;
            --theme-general-color: #7B7C7E;
            --text-light-color: #B5B5B5;
            --text-gray-color: #8F8F8F;
            --theme-general-font: 'Roboto', sans-serif;
            --theme-primary-font: 'Outfit', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--theme-general-font);
            color: var(--theme-general-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
        }

        /* Header Styles */
        .header-style-default {
            background: white;
            position: absolute;
            width: 100%;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .main-nav {
            padding: 10px 0;
        }

        .navbar-brand img {
            width: 70px;
            height: auto;
        }

        .navbar-nav .nav-link {
            color: #4e4d4d !important;
            font-family: var(--theme-primary-font);
            font-size: 16px;
            font-weight: 400;
            padding: 0 20px !important;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--theme-primary-color) !important;
        }

        /* Search Pop */
        .search-pop {
            position: relative;
        }

        .search-pop .toggle-icon {
            color: #000000;
            font-size: 16px;
            cursor: pointer;
            padding: 10px;
        }

        .search-form {
            position: absolute;
            top: 100%;
            right: 0;
            width: 300px;
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: none;
            z-index: 1000;
        }

        .search-form.show {
            display: block;
        }

        .searchform {
            position: relative;
        }

        .searchform input {
            width: 100%;
            padding: 10px 40px 10px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }

        .btn-search {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--theme-primary-color);
        }

        /* Sticky Header */
        .header-sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-bottom: 1px solid #e9e9e9;
            z-index: 10;
            padding: 10px 0;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-sticky.show {
            transform: translateY(0);
        }

        .header-sticky .navbar-nav .nav-link {
            color: #333 !important;
        }

        .header-sticky .navbar-nav .nav-link:hover,
        .header-sticky .navbar-nav .nav-link.active {
            color: var(--theme-primary-color) !important;
        }

        .header-sticky .search-pop .toggle-icon {
            color: #353535;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            height: 60vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://www.globalguardian.com/hubfs/Header%20Image.jpeg');
            background-size: cover;
            background-position: center;
        }

        .page-banner .container {
            position: relative;
            z-index: 3;
        }

        .page-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: var(--theme-primary-font);
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-item.active {
            color: var(--theme-primary-color);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: #fff;
        }

        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }

        .down-line-primary::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--theme-primary-color);
            margin-top: 15px;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: var(--theme-light-color);
            padding: 60px 30px;
            border-radius: 8px;
        }

        .contact-form-section h2 {
            font-family: var(--theme-primary-font);
            font-weight: 700;
            color: var(--theme-secondary-color);
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .contact-form-section .subtitle {
            font-size: 18px;
            font-style: italic;
            color: var(--theme-general-color);
            margin-bottom: 30px;
            display: block;
        }

        .form-control {
            border: 1px solid var(--theme-border-color);
            border-radius: 5px;
            padding: 15px;
            font-size: 15px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--theme-primary-color);
            box-shadow: 0 0 0 0.2rem rgba(245, 143, 71, 0.25);
        }

        .btn-primary-filter {
            background: var(--theme-primary-color);
            color: #fff;
            border: none;
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary-filter:hover {
            background: var(--theme-secondary-color);
            transform: translateY(-2px);
        }

        /* Contact Details Section */
        .contact-detail {
            background: var(--theme-dark-color);
            color: white;
            padding: 60px 30px;
            border-radius: 8px;
        }

        .contact-detail h3 {
            font-family: var(--theme-primary-font);
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .contact-detail .subtitle {
            font-size: 18px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            display: block;
        }

        .contact-info-item {
            margin-bottom: 25px;
        }

        .contact-info-item .label {
            color: var(--theme-primary-color);
            font-weight: 600;
            font-size: 16px;
            display: block;
            margin-bottom: 8px;
        }

        .contact-info-item p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.6;
        }

        

        /* Footer */
        .footer {
            background: #0e1621;
            color: var(--theme-general-color);
            padding: 50px 0 0;
        }

        .footer-widget {
            margin-bottom: 30px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 130px;
        }

        .widget-title {
            color: #fff;
            font-family: var(--theme-primary-font);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: #8b8b8e;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--theme-primary-color);
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--theme-primary-color);
            color: #fff;
        }

        /* Copyright */
        .copyright {
            background: #0b0b16;
            text-align: center;
            padding: 20px 0;
            color: var(--theme-general-color);
            margin-top: 50px;
        }

        .copyright a {
            color: var(--theme-primary-color);
            text-decoration: none;
        }

        /* Error/Success Messages */
        .error-handel {
            margin-top: 20px;
        }

        #success, #error {
            display: none;
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
        }

        #success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        #error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .page-banner {
                height: 50vh;
                min-height: 350px;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
            
            .content-section {
                padding: 50px 0;
            }
            
            .contact-form-section,
            .contact-detail {
                padding: 40px 20px;
                margin-bottom: 30px;
            }
            
            .contact-form-section h2,
            .contact-detail h3 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 991px) {
            .header-sticky {
                display: none; 
            }
            
            .navbar-toggler {
                border: none;
                padding: 5px 10px;
            }
            
            .navbar-toggler:focus {
                box-shadow: none;
            }
            
            .navbar-collapse {
                background: rgba(0, 0, 0, 0.9);
                padding: 15px;
                margin-top: 10px;
                border-radius: 5px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                color: white !important;
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
            
            .search-pop {
                margin-top: 15px;
                text-align: center;
            }
            
            .search-form {
                position: static;
                width: 100%;
                margin-top: 10px;
            }
        }