* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
    --primary-color: #ff4500;
    --secondary-color: #ff6b35;
    --accent-color: #ffd700;
    --gradient-bg: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #ffd700 100%);
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--gradient-bg);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: var(--gradient-bg);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.service-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.stats-card {
    text-align: center;
    padding: 30px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stats-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: var(--gradient-bg);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 40px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-section h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.marTopSh {
    margin-top: 100px;
    padding-bottom: 20px;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
}












/* about page Css */




.hero-section {
    background: url("../../../img.freepik.com/free-photo/business-colleagues-having-job-interview-with-potential-candidate-office_637285-89274ec8.jpg?t=st=1752259316~exp=1752262916~hmac=aa0b9c94bf4c4eeb079e0926016fc84f60dd13b057f839e55bbc3dd83a5107de&amp;w=1380") top/cover;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-title-about {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fff;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
}

.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.who-we-are {
    padding: 80px 0;
    background: white;
}

.offerings-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: none;
}

.lead {
    color: #fff;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.offerings-section .lead {
    color: #1a1a1a;
}

.textHeadSh {
    color: #1a1a1a;
    font-weight: 600;
}

.team-image-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    object-position: top;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-primary-custom {
    background: var(--gradient-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

.stats-section {
    padding: 60px 0;
    background: var(--gradient-bg);
    color: white;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.pricavyText p a {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.75;
    color: #878c8f;
    margin-bottom: 15px;
}

.company-journey-hero {
    background: var(--gradient-bg);
    color: var(--bg-light);
    padding: 70px 0 40px 0;
    text-align: center;
    margin-top: 80px;
}

.timeline {
    position: relative;
    margin: 40px 0 60px 0;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    opacity: .5;
}

.timeline-step {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}

.timeline-date {
    flex: 0 0 90px;
    text-align: right;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    padding-top: 0px;
}

.timeline-dot {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 4px solid var(--accent-color);
    margin: 0 25px;
}

.timeline-content {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: 0px 3px 15px rgba(255, 108, 0, 0.08);
    flex: 1;
}

.timeline-content img {
    max-width: 200px;
    float: right;
    margin-left: 1rem;
    border-radius: 8px;
    background: #fffbe6;
}

.quote-section {
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 38px 0 28px 0;
    text-align: center;
    font-style: italic;
}

.awards-hero {
    background: var(--gradient-bg);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

/* Awards Stats Section */
.awards-stats {
    padding: 60px 0;
    background: var(--bg-light);
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Major Awards Section */
.major-awards {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.award-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.2);
}

.award-card.featured {
    border-top: 4px solid var(--accent-color);
}

.award-image {
    height: 250px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.award-card:hover .award-image img {
    transform: scale(1.05);
}

.award-content {
    padding: 30px 25px;
}

.award-year {
    display: inline-block;
    background: var(--gradient-bg);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.award-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.award-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.award-organization {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Achievement Timeline */
.achievement-timeline {
    padding: 80px 0;
    background: var(--bg-light);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dateee {
    flex: 0 0 100px;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 15px 10px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 0 30px;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 25px;
}

.timeline-image {
    flex: 0 0 120px;
}

.timeline-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
}

.certification-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-5px);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.cert-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification-card h5 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.certification-card p {
    color: var(--text-light);
    margin: 0;
}

/* Recognition Quote */
.recognition-quote {
    padding: 60px 0;
    background: var(--accent-color);
    text-align: center;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}



.partners-hero-banner {
    background: var(--gradient-bg);
    color: white;
    padding: 90px 0 70px 0;
    text-align: center;
    margin-top: 80px;
}

.banner-heading {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.banner-description {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

/* Partnership Metrics */
.partnership-metrics {
    padding: 70px 0;
    background: var(--bg-light);
}

.metric-box {
    background: white;
    padding: 45px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.metric-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.15);
}

.metric-symbol {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.metric-figure {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.metric-title {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Strategic Partnerships */
.strategic-partnerships {
    padding: 90px 0;
}

.partnership-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.partnership-subtext {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.partner-showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.partner-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
}

.partner-logo-area {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.partner-logo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partner-showcase-card:hover .partner-logo-area img {
    transform: scale(1.08);
}

.partner-details {
    padding: 35px 30px;
}

.partner-company-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.partner-category {
    display: inline-block;
    background: var(--gradient-bg);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-summary {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.partnership-duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Partner Categories Grid */
.partner-categories-grid {
    padding: 90px 0;
    background: var(--bg-light);
}

.category-block {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.category-block:hover {
    transform: translateY(-5px);
}

.category-visual {
    height: 280px;
    overflow: hidden;
}

.category-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-block:hover .category-visual img {
    transform: scale(1.05);
}

.category-info {
    padding: 40px 35px;
}

.category-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.category-details {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.category-benefits {
    list-style: none;
    padding: 0;
}

.category-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.category-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Partner Testimonials */
.partner-testimonials-section {
    padding: 90px 0;
}

.testimonial-block {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-block:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    margin-bottom: 30px;
}

.testimonial-quote p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-position {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Partnership CTA */
.partnership-cta-section {
    padding: 80px 0;
    background: var(--accent-color);
    text-align: center;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-secondary-cta {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 35px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.dropBtn{
    background: none;
    color: black;
    border: none;
    padding: 0;
}

.dropBtn:hover{
    background: none;
    color: #000;
}


.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
     background: none !important;
    color: #000 !important;
}

.navbar-nav {
    align-items: center;
}
