        /* Top Bar */
        .top-bar {
            background-color: #3D3D3D;
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar .address {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .top-bar .address i {
            color: #c49b63;
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        .social-icons a {
            width: 32px;
            height: 32px;
          
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: opacity 0.3s;
        }
        
        .social-icons a:hover {
            opacity: 0.8;
        }
        
        .social-icons .facebook {
            background-color: #1877f2;
        }
        
        .social-icons .linkedin {
            background-color: #0077b5;
        }
        
        /* Main Header */
        .main-header {
            background-color: #e8e8e8;
            padding: 20px 0;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-circle {
            width: 60px;
            height: 60px;
            background-color: #c49b63;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .logo-circle::before {
            content: 'GC';
            font-size: 24px;
            font-weight: bold;
            color: white;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .logo-text .top-text {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .logo-text .bottom-text {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Navigation */
        .navbar {
            padding: 0;
        }
        
        .navbar-nav {
            gap: 30px;
        }
        
        .navbar-nav .nav-link {
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            padding: 0;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: black;
        }
        
        /* CTA Button */
        .cta-button {
            background-color: #a08557;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 600;
            transition: background-color 0.3s;
            white-space: nowrap;
        }
        
       .cta-button:hover {
    background-color: #000000; /* Changed to black */
    color: white;
}




  .hero-section {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            background: url('images/omg-banner.jpg') center/cover no-repeat;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 80px 0;
        }

        .welcome-badge {
            display: inline-block;
            background-color: white;
            color: #a08557;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-btn {
            display: inline-block;
            background-color: #000000;
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: background-color 0.3s, transform 0.3s;
            border: 2px solid #000000;
        }

        .hero-btn:hover {
            background-color: #a08557;
            border-color: #a08557;
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }

            .hero-section {
                min-height: 500px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 36px;
            }
        }
		
		  .about-section {
            background: white;
            border-radius: 15px;
           
            overflow: hidden;
        }

        .section-badge {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            display: inline-block;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 14px;
            color: #8b7355;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 30px;
            border: 1px solid #d4c4b0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .section-title .highlight {
            color: #8b7355;
        }

        .section-text {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 25px;
			font-weight:500;
        }

        .image-container {
            position: relative;
            height: 100%;
            min-height: 400px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container img {
          
            object-fit: cover;
        }

      

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .image-container {
                min-height: 300px;
            }

            
        }
		
		
		
		 .top-bar1 {
            background: white;
            padding: 20px 0;
            margin-bottom: 40px;
           
        }

        .cert-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 30px;
            font-size: 0.95rem;
        }

        .cert-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cert-info-label {
            font-weight: 700;
            color: #2c2c2c;
        }

        .cert-info-value {
            color: #666;
        }

        .cert-info-separator {
            color: #ddd;
            font-weight: 300;
        }

        .content-section {
            margin-bottom: 30px;
        }

        .mission-card,
        .naics-card {
            background: #F5F5F5;
            border-radius: 10px;
            padding: 40px;
          
            height: 100%;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 25px;
        }

        .mission-text {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .naics-codes {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .cert-info {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .cert-info-separator {
                display: none;
            }

            .mission-card,
            .naics-card {
                padding: 30px 20px;
                margin-bottom: 20px;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }
		
		
		
		 .services-section {
        background: linear-gradient(135deg, #e8e8ea 0%, #d5d5d9 100%);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: -30%;
        width: 60%;
        height: 100%;
        background: linear-gradient(135deg, rgba(200,200,210,0.3) 0%, rgba(180,180,190,0.2) 100%);
        transform: skewX(-15deg);
        z-index: 0;
    }

    .services-section .container-fluid {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    .services-section .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .services-section .section-badge {
        background: white;
        display: inline-block;
        padding: 8px 25px;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #8b7355;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .services-section .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c2c2c;
    }

    .services-section .section-title .highlight {
        color: #8b7355;
    }

    .services-section .service-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .services-section .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .services-section .service-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .services-section .service-content {
        padding: 30px;
    }

    .services-section .service-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .services-section .service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .services-section .service-list li {
        color: #666;
        font-size: 0.95rem;
        padding: 8px 0;
        padding-left: 20px;
        position: relative;
    }

    .services-section .service-list li::before {
        content: '•';
        color: #8b7355;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    @media (max-width: 768px) {
        .services-section .section-title {
            font-size: 2rem;
        }

        .services-section .service-image {
            height: 200px;
        }

        .services-section .service-content {
            padding: 20px;
        }
    }
	
	
	.projects-section {
        background: #f8f9fa;
        padding: 80px 0;
    }

    .projects-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .projects-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .projects-section .section-badge {
        background: white;
        display: inline-block;
        padding: 8px 25px;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #9d8b7a;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .projects-section .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #2c2c2c;
    }

    .projects-section .section-title .highlight {
        color: #9d8b7a;
    }

    .projects-section .project-card {
        background: white;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .projects-section .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .projects-section .project-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .projects-section .project-content {
        padding: 35px 30px;
    }

    .projects-section .project-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .projects-section .project-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .projects-section .project-list li {
        color: #6c757d;
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 22px;
        position: relative;
        line-height: 1.6;
    }

    .projects-section .project-list li::before {
        content: '•';
        color: #9d8b7a;
        font-weight: bold;
        font-size: 1.2rem;
        position: absolute;
        left: 0;
        top: 8px;
    }

    @media (max-width: 768px) {
        .projects-section {
            padding: 50px 0;
        }

        .projects-section .section-title {
            font-size: 2rem;
        }

        .projects-section .project-image {
            height: 220px;
        }

        .projects-section .project-content {
            padding: 25px 20px;
        }

        .projects-section .project-title {
            font-size: 1.1rem;
        }
    }
	
	.differentiators-section {
        background: #947F57;
        padding: 60px 0;
        text-align: center;
    }

    .differentiators-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .differentiators-section .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: white;
        margin-bottom: 40px;
    }

    .differentiators-section .differentiator-item {
        color: white;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 15px;
        font-weight: 400;
    }

    @media (max-width: 768px) {
        .differentiators-section {
            padding: 40px 0;
        }

        .differentiators-section .section-title {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .differentiators-section .differentiator-item {
            font-size: 1rem;
            margin-bottom: 12px;
        }
    }
	
	
	.footer-section {
        background: #3c3c3c;
        color: white;
        padding: 60px 0 0;
        position: relative;
    }

    .footer-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .footer-section .footer-column h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: white;
    }

    .footer-section .footer-description {
        color: #d0d0d0;
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .footer-section .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section .footer-links li {
        margin-bottom: 12px;
    }

    .footer-section .footer-links a {
        color: #d0d0d0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

    .footer-section .footer-links a:hover {
        color: #9d8b7a;
    }

    .footer-section .service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section .service-list li {
        color: #d0d0d0;
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-left: 20px;
        position: relative;
    }

    .footer-section .service-list li::before {
        content: '▸';
        color: #9d8b7a;
        position: absolute;
        left: 0;
        font-size: 1rem;
    }

    .footer-section .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        color: #d0d0d0;
        font-size: 0.95rem;
    }

    .footer-section .contact-icon {
        color: #9d8b7a;
        margin-right: 12px;
        font-size: 1.1rem;
        min-width: 20px;
    }

    .footer-section .contact-text {
        line-height: 1.6;
    }

    .footer-section .contact-text a {
        color: #d0d0d0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section .contact-text a:hover {
        color: #9d8b7a;
    }

    .footer-bottom {
        background: #9d8b7a;
        color: white;
        text-align: center;
        padding: 20px 0;
        margin-top: 50px;
        font-size: 0.9rem;
    }

    .footer-bottom a {
        color: white;
        text-decoration: none;
        font-weight: 600;
    }

    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #0033cc;
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
        z-index: 1000;
        text-decoration: none;
    }

    .back-to-top:hover {
        background: #0029a3;
        transform: translateY(-3px);
    }

    @media (max-width: 768px) {
        .footer-section {
            padding: 40px 0 0;
        }

        .footer-section .footer-column {
            margin-bottom: 40px;
        }

        .footer-bottom {
            margin-top: 30px;
            padding: 15px;
            font-size: 0.85rem;
        }

        .back-to-top {
            width: 40px;
            height: 40px;
            bottom: 20px;
            right: 20px;
        }
    }
	
	
	  .principles-section {
      
        padding: 80px 0;
    }

    .principles-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .principles-section .section-badge {
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        display: inline-block;
        padding: 8px 25px;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #8b7355;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 25px;
        border: 1px solid #d4c4b0;
    }

    .principles-section .section-title {
        font-size: 2.3rem;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .principles-section .intro-text {
        color: #666;
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .principles-section .principle-item {
        margin-bottom: 25px;
    }

    .principles-section .principle-title {
        color: #2c2c2c;
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .principles-section .principle-description {
        color: #666;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .principles-section .image-container {
        position: relative;
        height: 100%;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .principles-section .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .principles-section .content-column {
        padding: 40px;
        background: white;
    }

    @media (max-width: 991px) {
        .principles-section {
            padding: 50px 0;
        }

        .principles-section .section-title {
            font-size: 1.8rem;
        }

        .principles-section .content-column {
            padding: 30px 20px;
        }

        .principles-section .image-container {
            min-height: 400px;
            margin-top: 30px;
        }
    }

    @media (max-width: 768px) {
        .principles-section .image-container {
            min-height: 300px;
        }
    }
	
	<!-- Mission and Vision Section - Add this to your home page -->
<style>
    .mission-vision-section {
        background: white;
        padding: 80px 0;
    }

    .mission-vision-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .mission-vision-section .card-box {
        background: #F5F5F5;
        border-radius: 8px;
        padding: 45px 40px;
        height: 100%;
       
       
    }

    .mission-vision-section .card-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .mission-vision-section .card-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 25px;
    }

    .mission-vision-section .card-text {
        color: #666;
        font-size: 1.05rem;
        line-height: 1.8;
        margin: 0;
    }

    @media (max-width: 768px) {
        .mission-vision-section {
            padding: 50px 0;
        }

        .mission-vision-section .card-box {
            padding: 35px 25px;
            margin-bottom: 25px;
        }

        .mission-vision-section .card-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .mission-vision-section .card-text {
            font-size: 1rem;
        }
    }
	
	
	  .core-services-detailed {
        background: white;
        padding: 80px 0;
    }

    .core-services-detailed .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .core-services-detailed .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 60px;
        text-align: center;
    }

    .core-services-detailed .section-title .highlight {
        color: #9d8b7a;
    }

    .core-services-detailed .service-row {
        display: flex;
        align-items: center;
        margin-bottom: 80px;
        gap: 40px;
    }

    .core-services-detailed .service-row:last-child {
        margin-bottom: 0;
    }

    .core-services-detailed .service-image {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .core-services-detailed .service-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
    }

    .core-services-detailed .service-content {
        flex: 1;
    }

    .core-services-detailed .service-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c2c2c;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .core-services-detailed .service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .core-services-detailed .service-list li {
        color: #666;
        font-size: 1rem;
     
        padding-left: 20px;
        position: relative;
    }

    .core-services-detailed .service-list li::before {
        content: '•';
        color: #9d8b7a;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* Reverse layout for alternating rows */
    .core-services-detailed .service-row.reverse {
        flex-direction: row-reverse;
    }

    @media (max-width: 992px) {
        .core-services-detailed {
            padding: 50px 0;
        }

        .core-services-detailed .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .core-services-detailed .service-row {
            flex-direction: column !important;
            margin-bottom: 50px;
            gap: 25px;
        }

        .core-services-detailed .service-image {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .core-services-detailed .service-title {
            font-size: 1.15rem;
        }
    }