 body {
            margin: 0;
            padding: 0;
			
        }

        
        .top-bar {
            background-color: #1a1a1a;
            padding: 12px 0;
        }
        
        .top-bar .address {
            color: #ffffff;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .top-bar .address i {
            color: #ffffff;
        }
        
        .top-bar .social-icons {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            align-items: center;
        }
        
        .top-bar .social-icons a {
            color: #1a1a1a;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .top-bar .social-icons a:hover {
            color: #1a1a1a;
        }
		
		.social-circle {
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #e0e0e0;
  color: black;
  text-decoration: none;
  margin-left: 5px;
  transition: all 0.3s ease;
  font-size: 12px;
}

/* Hover colors */
.social-circle.facebook:hover {
  background: #EB9601;   /* Facebook blue */
  color: #1a1a1a;
}

.social-circle.linkedin:hover {
  background: #EB9601;   /* LinkedIn blue */
  color: #1a1a1a;
}

 .hero-section {
            position: relative;
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }
        .hero-section > * {
            position: relative;
            z-index: 2;
        }

        /* Transparent Header */
        .transparent-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
           
            background-color: rgba(0, 0, 0, 0.3);
           
            transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
        }
        
        .transparent-header .container {
            position: relative;
            z-index: 2;
        }
        
        .transparent-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #000000;
            opacity: 1;
            z-index: -1;
        }

        .logo-img {
            height: 76px;
            width: auto;
        }

        .navbar-nav {
            gap: 30px;
        }

        .nav-link {
            color: #ffffff !important;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #f5a623 !important;
        }

        .nav-link.active {
            color: #f5a623 !important;
        }

        .btn-capability {
            background-color: #f5a623;
            color: #000000;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-capability:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
        }

        /* Hero Content */
        .hero-content {
            flex: 1;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero-description {
            font-size: 18px;
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 700px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary-hero {
            background-color: #f5a623;
            color: #000000;
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-hero:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            color: #000000;
        }

        .btn-secondary-hero {
            background-color: #ffffff;
            color: #000000;
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-hero:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            color: #000000;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }

            .navbar-nav {
                gap: 15px;
            }
        }
		
		
		
		.about-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .about-label {
            color: #f5a623;
            font-size: 16px;
            font-weight: 600;
          
            letter-spacing: 1px;
            margin-bottom: 15px;
			font-family:"Montserrat", Sans-serif;
        }

        .about-title {
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .about-description {
            font-size: 16px;
            color: black;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .btn-read-more {
            background-color: #f5a623;
            color: #ffffff;
            padding: 15px 40px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }

        .btn-read-more:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
            color: #ffffff;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image-wrapper {
            height: 100%;
            min-height: 500px;
        }

        @media (max-width: 991px) {
            .about-title {
                font-size: 36px;
            }

            .about-image-wrapper {
                min-height: 400px;
                margin-top: 40px;
            }

            .about-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .about-title {
                font-size: 28px;
            }

            .about-image-wrapper {
                min-height: 300px;
            }
        }
		
		.services-section {
            padding: 80px 0;
            background-color: #f5f5f5;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle1 {
            font-size: 16px;
            color: black;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .service-card {
            background: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .service-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .service-content {
            padding: 30px 25px;
            background: #ffffff;
            position: relative;
        }

        .service-icon {
            position: absolute;
            right: 25px;
            top: -30px;
            width: 60px;
            height: 60px;
            background: #f5a623;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
        }

        .service-icon i {
            font-size: 24px;
            color: #ffffff;
        }

        .service-title1 {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            text-decoration: none;
            display: block;
        }

        .service-title1:hover {
            color: #f5a623;
        }

        .learn-more {
            color: #f5a623;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .learn-more:hover {
            gap: 12px;
            color: #e69500;
        }

        .learn-more i {
            font-size: 12px;
        }

        .btn-explore {
            background-color: #f5a623;
            color: #ffffff;
            padding: 15px 50px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 40px;
        }

        .btn-explore:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
            color: #ffffff;
        }

        .text-center-btn {
            text-align: center;
        }

        @media (max-width: 991px) {
            .section-title {
                font-size: 36px;
            }

            .service-image {
                height: 240px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 28px;
            }

            .services-section {
                padding: 60px 0;
            }
        }
		 .naics-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #8b6914 100%);
            position: relative;
            overflow: hidden;
        }

        .naics-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(139,105,20,0.4));
            pointer-events: none;
        }

        .naics-content {
            position: relative;
            z-index: 1;
        }

        .section-title1 {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #e0e0e0;
            text-align: center;
            margin-bottom: 60px;
        }

        .naics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .naics-column {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .naics-item {
            margin-bottom: 20px;
            color: #ffffff;
            font-size: 15px;
            line-height: 1.6;
        }

        .naics-item:last-child {
            margin-bottom: 0;
        }

        .naics-code {
            font-weight: 700;
            color: #f5a623;
            margin-right: 5px;
        }

        .naics-description {
            color: #e0e0e0;
        }

        @media (max-width: 991px) {
            .naics-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 36px;
            }

            .naics-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 28px;
            }

            .naics-column {
                padding: 30px 20px;
            }

            .naics-item {
                font-size: 14px;
            }
        }
		
		 .testimonials-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .testimonials-header {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.8;
            max-width: 450px;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 40px 35px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .quote-icon {
            font-size: 48px;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #e9ecef;
        }

        .author-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #f5a623;
        }

        .author-name {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }

        @media (max-width: 991px) {
            .section-title {
                font-size: 36px;
            }

            .testimonials-section {
                padding: 60px 0;
            }

            .testimonial-card {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 28px;
            }

            .testimonial-card {
                padding: 30px 25px;
            }

            .quote-icon {
                font-size: 36px;
            }
        }
		
		.cta-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1600') center/cover no-repeat;
            background-attachment: fixed;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 52px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 18px;
            color: #e0e0e0;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .btn-contact {
            background-color: #f5a623;
            color: #ffffff;
            padding: 18px 50px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: capitalize;
        }

        .btn-contact:hover {
            background-color: #e69500;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
            color: #ffffff;
        }

        @media (max-width: 991px) {
            .cta-title {
                font-size: 38px;
            }

            .cta-description {
                font-size: 16px;
            }

            .cta-section {
                padding: 80px 0;
            }
        }

        @media (max-width: 576px) {
            .cta-title {
                font-size: 28px;
            }

            .cta-description {
                font-size: 15px;
            }

            .cta-section {
                padding: 60px 0;
                background-attachment: scroll;
            }

            .btn-contact {
                padding: 15px 35px;
                font-size: 15px;
            }
        }
		
		 .footer-section {
            background-color: #3d4556;
            padding: 60px 0 0;
            color: #ffffff;
        }

        .footer-brand {
            background-color: #f5a623;
            padding: 40px 35px;
            border-radius: 5px;
            margin-bottom: 30px;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 25px;
        }

        .footer-brand-text {
            font-size: 16px;
            color: #ffffff;
            line-height: 1.8;
            margin: 0;
        }

        .footer-title {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #f5a623;
            padding-left: 5px;
        }
		
		
		.services-header {
            position: relative;
            height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
        }
        .services-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }
        .services-header > * {
            position: relative;
            z-index: 2;
        }
		.aboutus-header{
			    position: relative;
            height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;

		}
        .aboutus-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }
        .aboutus-header > * {
            position: relative;
            z-index: 2;
        }
		.contacus-header{

			position: relative;
            height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;

		}
        .contacus-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }
        .contacus-header > * {
            position: relative;
            z-index: 2;
        }
		.page-header{

			position: relative;
            height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;

		}
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }
        .page-header > * {
            position: relative;
            z-index: 2;
        }
		/* Page Title */
        .page-title-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 80px;
        }

        .page-title {
            font-size: 64px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            .services-header {
                height: 300px;
            }

            .page-title {
                font-size: 42px;
            }

            .navbar-nav {
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .services-header {
                height: 250px;
            }

            .page-title {
                font-size: 32px;
            }
        }

        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #d1d5db;
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-info i {
            color: #f5a623;
            font-size: 16px;
            margin-top: 3px;
            min-width: 18px;
        }

        .contact-info a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #f5a623;
        }

        .social-title {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 42px;
            height: 42px;
            background-color: #f5a623;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-icon:hover {
            background-color: #e69500;
            transform: translateY(-3px);
            color: #ffffff;
        }

        .footer-bottom {
            margin-top: 50px;
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .copyright {
            color: #d1d5db;
            font-size: 14px;
            margin: 0;
        }

        .copyright a {
            color: #f5a623;
            text-decoration: none;
            font-weight: 600;
        }

        .copyright a:hover {
            color: #e69500;
        }

        @media (max-width: 991px) {
            .footer-section {
                padding: 40px 0 0;
            }

            .footer-brand {
                margin-bottom: 40px;
            }

            .footer-col {
                margin-bottom: 35px;
            }
        }

        @media (max-width: 576px) {
            .footer-brand {
                padding: 30px 25px;
            }

            .footer-title {
                font-size: 18px;
            }
        }
		
		        .services-page {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .service-item {
            margin-bottom: 80px;
        }

        .service-item:last-child {
            margin-bottom: 0;
        }

        .service-label {
            color: #f5a623;
            font-size: 17px;
            font-weight: 800;
          
            letter-spacing: 1px;
            margin-bottom: 15px;
			font-family:"Montserrat", Sans-serif;
        }

        .service-title {
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .service-description {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-list li {
            font-size: 15px;
            color: #2c3e50;
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .service-list li::before {
            content: '●';
            color: black;
            font-size: 17px;
            position: absolute;
            left: 0;
            top: 0;
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .service-image-wrapper {
            height: 100%;
            min-height: 350px;
        }

        /* Alternate Layout */
        .service-item:nth-child(even) .row {
            flex-direction: row-reverse;
        }

        @media (max-width: 991px) {
            .service-title {
                font-size: 28px;
            }

            .service-item {
                margin-bottom: 60px;
            }

            .service-image-wrapper {
                min-height: 300px;
                margin-top: 30px;
            }

            .service-item:nth-child(even) .row {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .service-title {
                font-size: 24px;
            }

            .services-page {
                padding: 60px 0;
            }

            .service-image-wrapper {
                min-height: 250px;
            }
        }
		
		
		.about-intro-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .intro-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 50px;
            line-height: 1.3;
        }

        .intro-text {
            font-size: 18px;
            color: black;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .stats-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid #dee2e6;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 80px;
            background-color: #dee2e6;
        }

        .stat-number {
            font-size: 56px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 15px;
            color: #6c757d;
            font-weight: 500;
        }

        @media (max-width: 991px) {
            .intro-title {
                font-size: 32px;
            }

            .stat-number {
                font-size: 42px;
            }

            .stat-item:not(:last-child)::after {
                display: none;
            }

            .stat-item {
                margin-bottom: 30px;
                padding-bottom: 30px;
                border-bottom: 1px solid #dee2e6;
            }

            .stat-item:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
        }

        @media (max-width: 576px) {
            .intro-title {
                font-size: 26px;
                margin-bottom: 30px;
            }

            .about-intro-section {
                padding: 60px 0;
            }

            .stats-section {
                margin-top: 40px;
                padding-top: 40px;
            }

            .stat-number {
                font-size: 36px;
            }
        }
		
		        .office-video-section {
            padding: 80px 0;
            background-color: #ffffff;
            overflow: hidden;
        }

        .video-wrapper {
            position: relative;
        }

        .team-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            left: -50px;
            background-color: #f5a623;
            padding: 35px 45px;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }

        .experience-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .trophy-icon {
            width: 60px;
            height: 60px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trophy-icon i {
            font-size: 28px;
            color: #f5a623;
        }

        .experience-text {
            color: #ffffff;
        }

        .experience-text h3 {
            font-size: 26px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .experience-text p {
            font-size: 16px;
            margin: 0;
            font-weight: 500;
        }

        .video-content {
            background-color: #f8f9fa;
            padding: 60px 50px;
            position: relative;
        }

        .video-label {
            color: #f5a623;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .play-button {
            width: 90px;
            height: 90px;
            background-color: #f5a623;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 20px rgba(245, 166, 35, 0.3);
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
        }

        .play-button i {
            font-size: 32px;
            color: #ffffff;
            margin-left: 5px;
        }

        .video-title {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .video-description {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.8;
        }

        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }

        .video-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content-video {
            position: relative;
            width: 90%;
            max-width: 900px;
            animation: slideIn 0.3s ease;
        }

        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            font-size: 40px;
            color: #ffffff;
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }

        .close-modal:hover {
            color: #f5a623;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @media (max-width: 991px) {
            .experience-badge {
                left: 20px;
                bottom: 20px;
                padding: 25px 30px;
            }

            .experience-text h3 {
                font-size: 22px;
            }

            .video-content {
                padding: 40px 30px;
                margin-top: 80px;
            }

            .video-title {
                font-size: 26px;
            }
        }

        @media (max-width: 576px) {
            .office-video-section {
                padding: 60px 0;
            }

            .experience-badge {
                left: 10px;
                bottom: 10px;
                padding: 20px 25px;
            }

            .trophy-icon {
                width: 50px;
                height: 50px;
            }

            .trophy-icon i {
                font-size: 22px;
            }

            .experience-text h3 {
                font-size: 18px;
            }

            .experience-text p {
                font-size: 14px;
            }

            .video-content {
                padding: 30px 20px;
            }

            .play-button {
                width: 70px;
                height: 70px;
            }

            .play-button i {
                font-size: 26px;
            }

            .video-title {
                font-size: 22px;
            }

            .modal-content-video {
                width: 95%;
            }
        }
		
		.contact-map-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .map-container {
            position: relative;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .location-info-card {
            position: absolute;
            top: 30px;
            left: 30px;
            background-color: #ffffff;
            padding: 25px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            z-index: 10;
            max-width: 350px;
        }

        .location-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .location-address {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .directions-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0066cc;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .directions-link:hover {
            color: #f5a623;
        }

        .directions-link i {
            font-size: 16px;
        }

        .view-larger-link {
            color: #0066cc;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.3s ease;
            display: inline-block;
            margin-top: 8px;
        }

        .view-larger-link:hover {
            color: #f5a623;
        }

        @media (max-width: 768px) {
            .contact-map-section {
                padding: 60px 0;
            }

            .map-wrapper {
                height: 400px;
            }

            .location-info-card {
                position: static;
                margin: 20px;
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .map-wrapper {
                height: 350px;
            }

            .location-info-card {
                padding: 20px;
                margin: 15px;
            }

            .location-title {
                font-size: 18px;
            }
        }
		
		
		 .contact-form-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-description {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-info-box {
            background-color: #f8f9fa;
            padding: 25px 30px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .contact-info-box:hover {
            background-color: #f5a623;
        }

        .contact-info-box:hover .contact-icon {
            background-color: #ffffff;
        }

        .contact-info-box:hover .contact-icon i {
            color: #f5a623;
        }

        .contact-info-box:hover .contact-details h4,
        .contact-info-box:hover .contact-details p {
            color: #ffffff;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background-color: #f5a623;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-icon i {
            font-size: 28px;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .contact-details h4 {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .contact-details p {
            font-size: 15px;
            color: #6c757d;
            margin: 0;
            transition: all 0.3s ease;
        }

        .contact-form {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
        }

        .form-control {
            background-color: #ffffff;
            border: 1px solid #dee2e6;
            padding: 14px 20px;
            font-size: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.15);
            background-color: #ffffff;
        }

        .form-control::placeholder {
            color: #adb5bd;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            background-color: #f5a623;
            color: #ffffff;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-submit:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
        }

        @media (max-width: 991px) {
            .section-title {
                font-size: 32px;
            }

            .contact-form {
                margin-top: 40px;
            }
        }

        @media (max-width: 576px) {
            .contact-form-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 26px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .contact-info-box {
                padding: 20px;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
            }

            .contact-icon i {
                font-size: 24px;
            }

            .contact-details h4 {
                font-size: 16px;
            }

            .contact-details p {
                font-size: 14px;
            }
        }