
        :root {
            --primary-purple: #7b3fa0;
            --secondary-purple: #a855c7;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
        }

        .navbar {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 20px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 20px;
            font-weight: bold;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .navbar-nav .nav-link {
            color: #252525;
            font-weight: 800;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0.5rem 1.2rem;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color:  #612b8c;
        }

        .btn-download {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
            white-space: nowrap;
        }

        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(123, 63, 160, 0.3);
            color: white;
        }

        .navbar-toggler {
            border-color: var(--primary-purple);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(123, 63, 160, 0.25);
        }

        @media (max-width: 991px) {
            .btn-download {
                margin-top: 15px;
                width: 100%;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 15px;
            }
        }


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('images/banner.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 199, 0.7) 0%, rgba(123, 63, 160, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 60px 0;
}

.hero-title {
   
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	
	
	color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 120px;
   
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 59px;
	color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 700px;
    opacity: 0.95;

	color:#FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
}

.btn-hero {
	font-family: "Montserrat", Sans-serif;
    font-weight: 600;
  
    background-color: #612B8C;
		
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
   
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background-color: #9b51e0;
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 50px;
    }
    .hero-subtitle {
        font-size: 32px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-section {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 26px;
    }
    .hero-description {
        font-size: 15px;
    }
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
   
    text-align: center;
    margin: 0;
  
	
	
	
    color: #5C5265;
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
	
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.7;
    }
}
/* About Aspire Section */
.about-aspire-section {
    background-color: #f0f0f5;
    padding: 100px 0;
}

.about-image-wrapper {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-image {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.about-content {
    padding-left: 30px;
}

.about-label {
   
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
	
	color: #8A2789;
    font-family: "Montserrat", Sans-serif;
   
    text-transform: uppercase;
}

.about-title {
    color: #612B8C;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
	
	
    font-family: "Montserrat", Sans-serif;

    text-transform: uppercase;
}

.about-description {
    
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
	text-align: left;
    color: #5C5265;
    font-family: "Montserrat", Sans-serif;
}


@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .certification-badges {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-aspire-section {
        padding: 60px 0;
    }
    
    .badge-sba {
        flex-direction: column;
        text-align: center;
        border-radius: 15px;
    }
}


/* Services Section */

/* Aspire Partner Solutions Section */
.aspire-partner-section {
    background-color: white;
    padding: 80px 0;
}

.aspire-partner-title {
    color: #612B8C;
    font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    text-transform: uppercase;
	
    font-size: 28px;
   
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.aspire-partner-subtitle {
      color: #612B8C;
    font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
  
    letter-spacing: 1px;
    margin-bottom: 0;
}

.aspire-card {
    background-color: #F6F9FE;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
	
	border-style: solid;
    border-width: 0px 0px 10px 0px;
    border-color: #733772;
    box-shadow: 0px 0px 10px 0px rgba(42.715753804082446, 46.94547663942851, 55.349990844726555, 0.15);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 10px 15px 20px 15px;
 

	
	
	
}

.aspire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(123, 63, 160, 0.15);
}

.aspire-card-inner {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aspire-card-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.aspire-icon-box {
    background-color: #f5f5f8;
  
    border-radius: 8px;
    flex-shrink: 0;
}

.aspire-card-title {
  
    font-size: 15px;
    font-weight: 800;
   
    margin-top:16px;
    text-transform: uppercase;
	
	    color: #2F3D48;
    font-family: "Montserrat", Sans-serif;
   

	
	
}

.aspire-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex: 1;
}

.aspire-list li {
    color: #5C5265;
    font-size: 14px;
 
    padding-left: 20px;
    position: relative;
    font-weight: 400;
	font-family: "Montserrat", Sans-serif;
	    transition: color 0.3s;
}

.aspire-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-purple);
    border-radius: 50%;
}

.aspire-naics {
    background-color: #f5f5f8;
    padding: 18px;
    border-radius: 6px;
    margin-top: auto;
}

.aspire-naics h5 {
    color: var(--primary-purple);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.aspire-naics p {
    color: #666;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.aspire-card-bottom {
    height: 8px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

@media (max-width: 991px) {
    .aspire-partner-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .aspire-card-inner {
        padding: 25px 20px;
    }
    
    .aspire-card-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .aspire-card-title {
        font-size: 14px;
    }
}


/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #7b3fa0 0%, #a855c7 100%);
    color: white;
    padding: 60px 0 0 0;
}

.footer-content {
    padding: 0 15px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding: 25px 0;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 991px) {
    .footer-section {
        padding: 50px 0 0 0;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0 0 0;
    }
    
    .footer-description,
    .footer-list li {
        font-size: 14px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

/* About Detail Section */
.about-detail-section {
    background-color: #ffffff;
    padding: 80px 0 0 0;
}

.about-intro-text {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: left;
	
	font-family: 'Montserrat', sans-serif;
    font-weight: 300;
   
	
}

.about-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-detail-content {
    padding-left: 30px;
}

.about-detail-label {
    color: #333;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-detail-title {
    color: #333;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-detail-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.certifications-detail-title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.certifications-detail-list {
    margin-bottom: 30px;
}

.certifications-detail-list p {
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
}

.certification-detail-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.badge-detail-sba {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #003d7a;
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
}

.sba-detail-circle {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sba-detail-text {
    color: #003d7a;
    font-weight: 900;
    font-size: 24px;
}

.sba-detail-content p {
    margin: 0;
    line-height: 1.3;
    font-size: 11px;
}

.sba-detail-line.bold {
    font-size: 13px;
    font-weight: 700;
}

.badge-detail-cage {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 15px 30px;
    border-radius: 8px;
    color: white;
    text-align: center;
}

.cage-detail-label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.cage-detail-code {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
}

.purple-bottom-border {
    height: 8px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    margin-top: 80px;
}

@media (max-width: 991px) {
    .about-detail-content {
        padding-left: 0;
    }
    
    .about-detail-title {
        font-size: 28px;
    }
    
    .certification-detail-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .about-detail-section {
        padding: 50px 0 0 0;
    }
    
    .about-intro-text p {
        font-size: 15px;
    }
    
    .badge-detail-sba {
        flex-direction: column;
        text-align: center;
        border-radius: 15px;
    }
    
    .purple-bottom-border {
        margin-top: 50px;
    }
}

/* Aspire Services Detail Section */
.aspire-services-detail {
    background-color: #ffffff;
    padding: 80px 0;
}

.service-detail-card {
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 5px 20px rgba(123, 63, 160, 0.1);
    transform: translateY(-3px);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.service-detail-icon {
    flex-shrink: 0;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.service-detail-title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-detail-list li {
    color: #666;
    font-size: 15px;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.service-detail-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #333;
    border-radius: 50%;
}

.service-detail-naics {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

.service-detail-naics h4 {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-detail-naics p {
    color: #666;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .aspire-services-detail {
        padding: 60px 0;
    }
    
    .service-detail-card {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    .service-detail-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-detail-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .service-detail-card {
        padding: 25px;
    }
    
    .service-detail-list li {
        font-size: 14px;
        padding: 8px 0;
    }
}