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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}
.my-gradient {
    background-image: linear-gradient(to bottom, #507391, #28394b);
}
.my-gradients {
  background: linear-gradient(to right, #f59e0b 0%, #d97706 100%);
}
/* Gold Gradient Classes */
.to-gold-600 {
    --tw-gradient-to: #d97706 var(--tw-gradient-to-position);
}

.from-gold-500 {
    --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
}

/* Navy Gradient Classes */
.from-navy-600 {
    --tw-gradient-from: #507391 var(--tw-gradient-from-position);
}

.to-navy-800 {
    --tw-gradient-to: #28394b var(--tw-gradient-to-position);
}
/* .my-text-color{
    color: rgba(252, 211, 77, 0.7);
} */
.hover\:from-gold-400:hover {
    --tw-gradient-from: #facc15 var(--tw-gradient-from-position); /* Example: gold-400 */
  }
  
  .hover\:to-gold-500:hover {
    --tw-gradient-to: #f59e0b var(--tw-gradient-to-position); /* Example: gold-500 */
  }
/* Color Variables */
:root {
    --primary-color: #f59e0b;
    --secondary-color: #212529;
    --dark-blue: #212529;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #212529;
    --text-light: #6c757d;
    --footer-bg: #212529;
    --footer-text: #bdc3c7;
    --footer-link: #bdc3c7;
    --footer-link-hover: #f59e0b;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6px 0;
    font-size: 13px;
}

.contact-info span {
    margin-right: 20px;
    display: inline-block;
}

.contact-info i {
       --tw-text-opacity: 0.8;
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}

.social-links {
    text-align: right;
}

.social-links span {
    margin-right: 10px;
}

.social-links a {
    color: var(--white);
    margin-left: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hover Dropdown Styles */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    background-color: white;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: background-color 0.15s ease-in-out;
}

.navbar-nav .dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef;
}

.navbar-brand {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
}

.logo-text h4 {
    color: var(--text-dark);
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.logo-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 12px;
}

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

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 500;
  border: none;
    transition: all 0.3s ease;
}

/* .btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
} */

/* Hero Section */
.hero-section {
    background-image: linear-gradient(to bottom, #141c28, #28394b);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.rating-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.rating-badge i {
    color: #ffd700;
    margin-right: 5px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.success-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.success-badge i {
    color: #27ae60;
    font-size: 20px;
}

.success-badge strong {
    color: var(--text-dark);
    display: block;
    font-size: 14px;
}

.success-badge span {
    color: var(--text-light);
    font-size: 12px;
}

/* Statistics Section */
.stats-section {
    background-color: var(--white);
    padding: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

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

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

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    /* color: var(--text-dark); */
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    /* color: var(--text-light); */
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    /* margin-bottom: 25px; */
}

.service-features li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-features i {
    color: #27ae60;
    margin-right: 10px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #e55a2b;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    padding: 120px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.stars {
    margin-bottom: 30px;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 4px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 25px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author .service {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 8px;
}

/* CTA Section */
.cta-section {
    background-image: linear-gradient(to bottom, #141c28, #28394b);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 0 0;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text h4 {
    color: var(--white);
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.footer-logo .logo-text p {
        color: rgb(252 211 77 / var(--tw-text-opacity, 1));
    margin: 0;
    font-size: 12px;
}

.footer-logo p {
    color: var(--footer-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer h5 {
    /* color: rgba(252, 211, 77, 0.7); */
    color: rgb(252 211 77 / var(--tw-text-opacity, 1));
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* .contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
    font-size: 1.1rem;
} */

/* .contact-item div {
    flex: 1;
} */

.contact-item span {
    color: var(--white);
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-item small {
    color: #95a5a6;
    font-size: 0.8rem;
    display: block;
}

.footer-bottom {
    background-color: var(--footer-bg);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--footer-text);
    margin: 0;
}

.footer-bottom-links {
    /* text-align: right; */
}
.box-shadow-card {
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .3) !important;
}
.footer-bottom-links a {
    color: var(--footer-text);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 8px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .contact-info,
    .top-bar .social-links {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .success-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .service-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Additional Styles for Other Pages */

/* About Page Styles */
.mission-section {
    padding: 20px 0;
    background-color: var(--white);
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.mission-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-image {
    position: relative;
}

.mission-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.excellence-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.values-section {
    background-color: var(--white);
    padding: 30px 0;
}

.value-card {
    height: 450px;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.founder-section {
    /* padding: 100px 0; */
    background-color: var(--white);
}

.founder-image {
    position: relative;
}

.founder-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.certification-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.founder-content .founder-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.1);
    padding: 50px 15px;
    border-radius: 20px;
}

.founder-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.founder-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.certifications h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.certification-list {
    list-style: none;
    padding: 0;
}

.certification-list li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.certification-list i {
    color: #28a745;
    margin-right: 10px;
}

.achievements-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 80px 0;
}

.achievement-item {
    text-align: center;
    padding: 0px 15px;
    margin-bottom: 20px;
}

.achievement-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f1c40f;
}

.achievement-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.why-choose-section {
    background-color: var(--white);
    padding: 50px 0;
}

.feature-card {

    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Page Styles */
.service-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-badge i {
    margin-right: 5px;
}

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

.service-detail-section {
    padding: 100px 0;
}

.service-detail-section.bg-light {
    background-color: var(--light-gray);
}

.service-content {
    padding: 20px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

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

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-info-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.info-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-card strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.features-column h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.features-column ul {
    list-style: none;
}

.features-column li {
    margin-bottom: 12px;
    color: var(--text-light);
}

.features-column i {
    margin-right: 10px;
}

.features-column i.fa-check {
    color: #27ae60;
}

.features-column i.fa-plus {
    color: var(--primary-color);
}

.service-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border: none;
}

/* Process Section */
.process-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.success-stories-section {
    background-color: var(--white);
    padding: 100px 0;
}

.success-story-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.story-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.story-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.story-author h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.story-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-author small {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Tests Page Styles */

/* Tests Hero Section */
.tests-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tests-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.tests-hero .highlight {
    color: var(--primary-color);
}

.tests-hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Assessments Section */
.assessments-section {
    background: var(--white);
    padding: 100px 0;
}

.assessment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.assessment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.assessment-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
    position: relative;
    text-align: left;
}

.assessment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assessment-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.assessment-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.assessment-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    margin: 0 0 5px 0;
}

.assessment-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.assessment-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    flex-shrink: 0;
}

.assessment-badge.free {
    background: #007bff;
}

.assessment-badge.paid {
    background: #28a745;
}

.assessment-badge.premium {
    background: #6f42c1;
}

/* Last card - Leadership Potential Test - Red badge to match red button */
.assessments-section .row .col-lg-6:nth-child(4) .assessment-badge.premium,
.assessments-section .row .col-lg-6:last-child .assessment-badge.premium {
    background: #dc3545 !important;
}

.assessment-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.assessment-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e9ecef;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 3px;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.assessment-features {
    margin-bottom: 25px;
}

.assessment-features h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.assessment-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assessment-features li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.assessment-features li i {
    color: #28a745;
    font-size: 1rem;
    flex-shrink: 0;
}

.assessment-buttons {
    display: flex;
    gap: 12px;
}

.assessment-buttons .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    flex: 1;
}

/* Custom button colors to match badges */
.assessments-section .row .col-lg-6:nth-child(1) .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.assessments-section .row .col-lg-6:nth-child(1) .btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.assessments-section .row .col-lg-6:nth-child(2) .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.assessments-section .row .col-lg-6:nth-child(2) .btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.assessments-section .row .col-lg-6:nth-child(3) .btn-warning {
    background-color: #6f42c1;
    border-color: #6f42c1;
    color: white;
}

.assessments-section .row .col-lg-6:nth-child(3) .btn-outline-warning {
    color: #6f42c1;
    border-color: #6f42c1;
}

/* Last card - Leadership Potential Test */
.assessments-section .row .col-lg-6:nth-child(4) .btn-danger,
.assessments-section .row .col-lg-6:last-child .btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}

.assessments-section .row .col-lg-6:nth-child(4) .btn-outline-danger,
.assessments-section .row .col-lg-6:last-child .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545   ;
}

/* Additional specificity for the last card */
.assessment-card .assessment-badge.premium + .assessment-description + .assessment-details + .assessment-features + .assessment-buttons .btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}

/* Direct targeting for the last card's button */
.assessments-section .row .col-lg-6:last-child .assessment-card .assessment-buttons .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white !important;
}

.assessments-section .row .col-lg-6:last-child .assessment-card .assessment-buttons .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}
.assessment-buttons .btn-outline-success:hover,
.assessment-buttons .btn-outline-warning:hover ,
.assessment-buttons .btn-outline-danger:hover {
    border: none;
    color:  #fff !important;
}
/* Why Tests Section */
.why-tests-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--white);
    padding: 100px 0;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d97706);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive for Tests Page */
@media (max-width: 768px) {
    .tests-hero {
        padding: 80px 0;
    }
    
    .tests-hero h1 {
        font-size: 2.8rem;
    }
    
    .tests-hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .assessments-section,
    .why-tests-section,
    .how-it-works-section {
        padding: 80px 0;
    }
    
    .assessment-card {
        padding: 30px 25px;
    }
    
    .assessment-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .assessment-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .assessment-buttons {
        flex-direction: column;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .tests-hero h1 {
        font-size: 2.4rem;
    }
    
    .assessment-card {
        padding: 25px 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-hero .hero-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-hero .highlight {
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.quick-connect {
    margin-top: 40px;
}

.quick-connect h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.quick-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-buttons .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #f0f0f0;
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.contact-form .btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    width: 100%;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px;
    background: var(--white);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        /* flex-direction: column; */
        /* text-align: center; */
        /* gap: 15px; */
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .quick-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

/* Highlighted text in benefits */
.highlight-text {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* Service Images - Fixed sizing */
.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    height: 400px;
}

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

.price-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.price-overlay span {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.price-overlay small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Home page hero image */
.hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* About page images */
.mission-image,
.founder-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.mission-image img,
.founder-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Service card images */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Testimonial author images */
.testimonial-author img,
.story-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

/* Mobile responsive image adjustments */
@media (max-width: 768px) {
    .service-image {
        height: 300px;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .mission-image img,
    .founder-image img {
        height: 300px;
    }
    
    .service-card img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 250px;
    }
    
    .hero-image img {
        height: 350px;
    }
    
    .mission-image img,
    .founder-image img {
        height: 250px;
    }
    
    .service-card img {
        height: 160px;
    }
}

/* Services Page Styles - Updated for exact match */
.services-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.services-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
}

.services-hero .hero-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.services-hero .highlight {
    color: var(--primary-color);
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Services Main Section */
.services-main {
    padding: 20px 0;
    background-color: var(--white);
}

.service-item {
    margin-bottom: 0px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-content {
    padding: 40px;
}

.service-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-titles h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-titles h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

.service-info-boxes {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-features {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* margin-bottom: 40px; */
}

.feature-group h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group li {
    padding: 0px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* What's Included uses green checkmarks */
.service-features .feature-group:first-child li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Key Benefits uses orange arrows */
.service-features .feature-group:last-child li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.service-buttons .btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.process-card:hover {
    transform: translateY(-10px);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d97706);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.process-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    height: 100%;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stars {
    margin-bottom: 25px;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.testimonial-author .service {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Mobile Responsive for Services Page */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0;
    }
    
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .service-item {
        margin-bottom: 0px;
        padding: 40px 0;
    }
    
    .service-content {
        padding: 30px 20px;
    }
    
    .service-header {
        flex-direction: column;
        /* text-align: center; */
        gap: 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-titles h2 {
        font-size: 2rem;
    }
    
    .service-titles h4 {
        font-size: 1.1rem;
    }
    
    .service-info-boxes {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process-card {
        padding: 40px 25px;
        margin-bottom: 30px;
    }
    
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .process-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .process-card p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-content {
        padding: 25px 15px;
    }
    
    .service-titles h2 {
        font-size: 1.8rem;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .process-card h4 {
        font-size: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Mobile Menu - Slide from Left */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background-color: #4b4d4f;;
        box-shadow: 2px 0 20px rgba(0,0,0,0.15);
        transition: left 0.3s ease;
        z-index: 1050;
        padding: 100px 0 30px;
        overflow-y: auto;
        border-right: 1px solid #e9ecef;
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0 25px;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 18px 0;
        font-size: 16px;
        font-weight: 500;
        color: #fff !important;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color);
        background-color: rgba(245, 158, 11, 0.05);
        padding-left: 15px;
    }
    
    .navbar-nav .nav-link.active {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .navbar-nav .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }
    
    .navbar-nav .btn {
        margin: 25px 0 0 0;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-weight: 600;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }
    
    /* Overlay when menu is open */
    .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.4);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .navbar-collapse.show::before {
        opacity: 1;
    }
    
    /* Close button for mobile menu */
    .navbar-toggler {
        position: relative;
        z-index: 1051;
        border: none;
        padding: 8px;
        border-radius: 6px;
        background-color: rgba(255,255,255,0.1);
        transition: background-color 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background-color: rgba(255,255,255,0.2);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Menu header */
    .navbar-collapse::after {
        content: 'Menu';
        position: absolute;
        top: 30px;
        left: 25px;
        font-size: 14px;
        font-weight: 600;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}