: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 {
            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;
        }

        /* Sections */
        .section-padding {
            padding: 80px 0;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            height: 60vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            overflow: hidden;  
        }

        .page-banner .container {
            position: relative;
            z-index: 3;
        }

        .page-title {
            color: white;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .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);
            text-decoration: underline;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: #fff;
        }

        .tagline {
            color: var(--theme-primary-color);
            font-family: var(--theme-primary-font);
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: block;
        }

        .main-title {
            font-family: var(--theme-primary-font);
            font-weight: 700;
            color: var(--theme-secondary-color);
            margin-bottom: 30px;
            font-size: 2.5rem;
            line-height: 1.2;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://www.globalguardian.com/hubfs/Header%20Image.jpeg');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        
        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .down-line-primary::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--theme-primary-color);
            margin-top: 15px;
        }

        /* Company Intro */
        .company-intro {
            background: white;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }

        .feature-list li {
            padding: 8px 0;
            color: var(--theme-general-color);
            position: relative;
            padding-left: 30px;
        }

        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--theme-primary-color);
            position: absolute;
            left: 0;
            top: 8px;
        }

        /* Image Grid */
        .image-grid {
            background: var(--theme-light-color);
        }

        .grid-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .grid-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .grid-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .grid-item-content {
            padding: 25px;
        }

        .grid-item h4 {
            font-family: var(--theme-primary-font);
            font-weight: 600;
            color: var(--theme-secondary-color);
            margin-bottom: 15px;
        }

        /* Experience Section */
        .experience-section {
            background: white;
        }

        .timeline-item {
            border-left: 3px solid var(--theme-primary-color);
            padding-left: 30px;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 13px;
            height: 13px;
            background: var(--theme-primary-color);
            border-radius: 50%;
        }

        .timeline-year {
            font-family: var(--theme-primary-font);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--theme-primary-color);
            margin-bottom: 10px;
        }

        .timeline-title {
            font-family: var(--theme-primary-font);
            font-weight: 600;
            color: var(--theme-secondary-color);
            margin-bottom: 15px;
        }

        /* Stats Section */
        .stats-section {
            background: #101A38;
            color: white;
        }

        .counter-item {
            text-align: center;
            padding: 30px 15px;
        }

        .counter-number {
            font-size: 48px;
            font-weight: 700;
            font-family: var(--theme-primary-font);
            color: var(--theme-primary-color);
            margin-bottom: 10px;
            display: block;
        }

        .counter-title {
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: white;
        }

          .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;
        }

       

        /* Buttons */
        .btn-primary-custom {
            background: var(--theme-primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background: var(--theme-secondary-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-info {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .page-banner {
                height: 50vh;
                min-height: 350px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 50px 0;
            }
            
            .main-title {
                font-size: 1.8rem;
            }
            
              
            .footer {
                padding: 40px 0 0;
            }
            
            .footer-widget {
                margin-bottom: 30px;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-info li {
                justify-content: center;
                text-align: center;
            }
            
        
            
            .social-links {
                justify-content: center;
            }
            
            
            
           
        }

        @media (max-width: 991px) {
            .header-sticky {
                display: none; 
            }
            
            .form-control {
                font-size: 16px; 
            }
            
            .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);
            }
            
            .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;
            }
        }