 :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 */
       /* Remove these CSS rules */
.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;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: var(--theme-light-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .tagline {
            color: var(--theme-primary-color);
            font-family: var(--theme-primary-font);
            font-size: 20px;
            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: 20px;
            font-size: 2.5rem;
            line-height: 1.2;
        }

        .gallery-filter {
            margin-bottom: 40px;
            text-align: center;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid var(--theme-border-color);
            padding: 8px 20px;
            margin: 0 5px 10px;
            border-radius: 30px;
            color: var(--theme-secondary-color);
            font-family: var(--theme-primary-font);
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--theme-primary-color);
            color: white;
            border-color: var(--theme-primary-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(245, 143, 71, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.3s ease;
            padding: 20px;
            text-align: center;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: white;
            font-family: var(--theme-primary-font);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .gallery-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .gallery-icon {
            color: white;
            font-size: 24px;
            margin-bottom: 15px;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            text-align: center;
            background: var(--theme-light-color);
            border-radius: 8px;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--theme-primary-color);
        }

        .team-name {
            font-family: var(--theme-primary-font);
            font-weight: 600;
            color: var(--theme-secondary-color);
            margin-bottom: 5px;
        }

        .team-role {
            color: var(--theme-primary-color);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .team-desc {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Equipment Section */
        .equipment-section {
            padding: 80px 0;
            background: #101A38;
            color: white;
        }

        .equipment-section .main-title {
            color: white;
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .equipment-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .equipment-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .equipment-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .equipment-content {
            padding: 20px;
        }

        .equipment-title {
            font-family: var(--theme-primary-font);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: white;
        }

        .equipment-desc {
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
        }

       

       

        /* 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: 2.5rem;
            }
            
            .gallery-section, .team-section, .equipment-section {
                padding: 50px 0;
            }
            
            .gallery-grid, .team-grid, .equipment-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .filter-btn {
                padding: 6px 15px;
                font-size: 0.9rem;
            }
            
            .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;
            }
           
        }

        @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;
            }
            
          
        }


         /* 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;
        }