/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.logo i {
    color: #2563eb;
    margin-right: 0.5rem;
    width: 2rem;
    height: 2rem;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    text-decoration: none;
    color: #374151;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #2563eb;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
}

.nav-mobile {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile nav {
    padding: 0.5rem 0;
}

.nav-mobile a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #374151;
    transition: color 0.3s;
}

.nav-mobile a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    padding: 8rem 0 5rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    gap: 0.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.3s;
    gap: 0.5rem;
    cursor: pointer;
    background-color: #2563eb; 
    color: white;
    
    padding: 0.75rem;

}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #eff6ff;
}

.btn-success {
    background: #16a34a;
    color: white;
}

.btn-success:hover {
    background: #15803d;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    padding: 2rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    background: #dbeafe;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin-bottom: 1rem;
}

.service-icon i {
    color: #2563eb;
    width: 1.5rem;
    height: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    gap: 5px;
}

.service-card li i {
    color: #10b981;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge i {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.badge-blue {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-blue i {
    color: #2563eb;
}

.badge-green {
    background: #f0fdf4;
    color: #15803d;
}

.badge-green i {
    color: #16a34a;
}

.badge-orange {
    background: #fff7ed;
    color: #c2410c;
}

.badge-orange i {
    color: #ea580c;
}

.about-visual {
    background: linear-gradient(135deg, #dbeafe, #dcfce7);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.about-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.about-icon {
    background: white;
    border-radius: 50%;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon i {
    color: #2563eb;
    width: 4rem;
    height: 4rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.about-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.coverage-list {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: left;
}

.coverage-list h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.coverage-list ul {
    list-style: none;
    font-size: 0.875rem;
    color: #6b7280;
}

.coverage-list li {
    margin-bottom: 0.25rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stars {
    display: flex;
    margin-bottom: 1rem;
}

.star-filled {
    fill:#fbbf24;
    color: #fbbf24;
    width: 1.25rem;
    height: 1.25rem;
}

.testimonial-card p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #1f2937;
    display: block;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-author small {
    color: #9ca3af;
    font-size: 0.75rem;
    display: block;
    margin-top: 0.25rem;
}

.videos-section {
    margin-top: 3rem;
}

.videos-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.video-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.video-wrapper {
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Location Section */
.location {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.location-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.location-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
        gap: 5px;

}

.feature-item i {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
}

.feature-blue {
    background: #eff6ff;
}

.feature-blue i {
    color: #2563eb;
}

.feature-green {
    background: #f0fdf4;
}

.feature-green i {
    color: #16a34a;
}

.feature-orange {
    background: #fff7ed;
}

.feature-orange i {
    color: #ea580c;
}

.feature-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.address-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.address-card h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.address-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.address-card .btn {
    margin-top: 1rem;
}

.location-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.images-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.images-column.offset {
    margin-top: 2rem;
}

.image-item {
    background: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partnerships Section */
.partnerships {
    padding: 5rem 0;
    background: #f9fafb;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.partnerships-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.partnerships-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.advantages {
    margin-bottom: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 5px;
}

.advantage-item i {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.advantage-item:nth-child(1) i { color: #16a34a; }
.advantage-item:nth-child(2) i { color: #2563eb; }
.advantage-item:nth-child(3) i { color: #ea580c; }
.advantage-item:nth-child(4) i { color: #7c3aed; }

.advantage-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.advantage-item p {
    color: #6b7280;
    margin: 0;
}

.partnership-card {
    background: white;
    padding: 10px;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.card-icon {
    background: #dbeafe;
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: #2563eb;
    width: 2rem;
    height: 2rem;
}

.partnership-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.partnership-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
}

.benefit-item i {
    color: #10b981;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Representatives Section */
.representatives {
    padding: 5rem 0;
    background: white;
}

.representatives-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    width: 2rem;
    height: 2rem;
}

.feature-icon.feature-blue {
    background: #dbeafe;
}

.feature-icon.feature-blue i {
    color: #2563eb;
}

.feature-icon.feature-green {
    background: #dcfce7;
}

.feature-icon.feature-green i {
    color: #16a34a;
}

.feature-icon.feature-orange {
    background: #fed7aa;
}

.feature-icon.feature-orange i {
    color: #ea580c;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
}

.representatives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.representatives-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.representatives-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.benefit-item i {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.benefit-blue {
    background: #eff6ff;
}

.benefit-blue i {
    color: #2563eb;
}

.benefit-green {
    background: #f0fdf4;
}

.benefit-green i {
    color: #16a34a;
}

.benefit-orange {
    background: #fff7ed;
}

.benefit-orange i {
    color: #ea580c;
}

.benefit-purple {
    background: #faf5ff;
}

.benefit-purple i {
    color: #7c3aed;
}

.requirements-card {
    background: linear-gradient(135deg, #eff6ff, #dcfce7);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.requirements-card h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.requirements-card ul {
    list-style: none;
    font-size: 0.875rem;
    color: #6b7280;
}

.requirements-card li {
    margin-bottom: 0.25rem;
}

.representative-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.card-icon-green {
    background: #dcfce7;
}

.card-icon-green i {
    color: #16a34a;
}

.representative-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.representative-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.highlights {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    gap: 5px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.highlight-item:nth-child(1) i { color: #16a34a; }
.highlight-item:nth-child(2) i { color: #2563eb; }
.highlight-item:nth-child(3) i { color: #ea580c; }

.card-footer {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.75rem;
}

/* Consultant Section */
.consultant {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
}

.consultant-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.consultant-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.consultant-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.consultant-avatar {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.consultant-details {
    text-align: center;
}

.consultant-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.consultant-title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.consultant-susep {
    color: #6b7280;
    font-size: 0.875rem;
}

.consultant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.stat {
    text-align: center;
}

.stat .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat:nth-child(1) .stat-number { color: #2563eb; }
.stat:nth-child(2) .stat-number { color: #16a34a; }
.stat:nth-child(3) .stat-number { color: #16a34a; }

.stat .stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.consultant-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.consultant-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    
}

.specializations h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    
}

.specializations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.specialization-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 0.875rem;
        gap: 5px;

}


.specialization-item i {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.specialization-item:nth-child(1) i { color: #2563eb; }
.specialization-item:nth-child(2) i { color: #16a34a; }
.specialization-item:nth-child(3) i { color: #ea580c; }
.specialization-item:nth-child(4) i { color: #7c3aed; }

.consultant-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #2563eb;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.contact-features {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.contact-features h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.contact-features li {
    display: flex;
    align-items: center;
    color: #6b7280;
    margin-bottom: 0.5rem;
    gap: 5px;
}

.contact-features li i {
    color: #10b981;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.contact-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    border-radius: 0.75rem;
    text-align: center;
}

.cta-icon {
    background: white;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    color: #2563eb;
    width: 2.5rem;
    height: 2.5rem;
}

.cta-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cta-footer {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #60a5fa;
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.image77logo{
    width:200px;
}

.image77banner{
        width:200px;

}

















/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .consultant-info {
        flex-direction: row;
        text-align: left;
    }
    
    .consultant-details {
        text-align: left;
    }
    
    .consultant-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnerships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .representatives-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .representatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}








 /* FORM SESSION:*/

.botaolegal{
    background-color: #2563eb; 
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    gap: 0.5rem;
}



 .textp{
    color: #000000;
    text-align: center;
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 30px;
    margin-top: 10px;
}

.textpp{
    color: #000000;
    text-align: center;
    font-size: 0.8em;
    font-weight: 900;
    margin-bottom: 30px;
}

.forms {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.forms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.form-container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 5em;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.title {
    display: flex;
    color: #091745;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 1000;
    padding-bottom: 20px;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: #e0e0e0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active {
    background: #091745;
    color: white;
}

.step i {
    font-size: 18px;
}

.form-steps-container {
    overflow: hidden;
}

.form-steps-wrapper {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease-in-out;
}

.form-step {
    width: 50%;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    position: absolute;
    transform: translateX(100%);
}

.form-step.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.required {
    color: #860000;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f8f8f8;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #091745;
    outline: none;
}

.form-group input::placeholder {
    color: #999;
}

    
.btn-secondary {
    background: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #091745;
    border: 1px solid #091745;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

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

.form-buttons button {
    flex: 1;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInReverse {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutReverse {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.slide-in {
    animation: slideIn 0.5s forwards;
}

.slide-out {
    animation: slideOut 0.5s forwards;
}

.slide-in-reverse {
    animation: slideInReverse 0.5s forwards;
}

.slide-out-reverse {
    animation: slideOutReverse 0.5s forwards;
}

.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #00cfab;
    color: #1a1a2e;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease-in-out;
    z-index: 1000;
}

.notification.show {
    bottom: 20px;
}

.form-container .logo-mobile {
    display: none;
    width: 8em;
    height: 10em;
    padding-bottom: 10px;
    margin: 0 auto;
}

.form-container .logo-desktop {
    width: 80%;
    height: auto;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
   
    .form-container {
        padding: 20px;
        min-height: auto;
    }

    .form-container .logo-desktop {
        display: none;
    }

    .form-container .logo-mobile {
        display: block;
        width: 200px;
        height: auto;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }
}
