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

:root {
    /* ACS Colors */
    --primary-dark: #0d47a1;
    --primary-medium: #1976d2;
    --primary-light: #bbdefb;
    --accent:  rgb(150, 148, 148);
    --accent-dark: #f57c00;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-light: #f4f4f4;
    --background-white: #ffffff;
    --border-light: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --whatsapp-green:  #1976d2;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.certinho{
    width: 80px;
    margin-top: 15px;
}
.btn-primary {
   background-color: rgb(150, 148, 148);
    color: white;
    border-radius: 30px;
}
.btn-primary2 {
   background-color: rgb(150, 148, 148);
    color: white;
    border-radius: 30px;
}
.btn-primary:hover {
      background-color: rgb(196, 194, 194);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}
.btn-primary2:hover {
      background-color: rgb(196, 194, 194);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-secondary {
    background-color: var(--primary-medium);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.btn-outline1 {
    background-color: transparent;
    color: rgb(239, 239, 239);
    border: 2px solid rgb(233, 233, 233);
}
.btn-outline {
    background-color: transparent;
    color: rgb(33, 33, 33);
    border: 2px solid rgb(33, 33, 33);
}
.btn-outline:hover {
    background-color: var(--primary-medium);
    color: white;
}
.btn-outline1:hover {
    background-color: var(--primary-medium);
    color: white;
}
.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* Sections */
.section-light {
    background-color: var(--background-light);
}

.section-white {
    background-color: var(--background-white);
}

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

.section-header h2,
.section-header h3 {
    margin-bottom: 1rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 135px;
    background-color: white;
    box-shadow: 0 2px 10px var(--shadow);
}

.top-bar {
    background-color: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-header {
    padding: 1rem 0;
    background-color: var(--primary-dark);
    height: 90px;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -15px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

.logo-acs {
    color: var(--primary-dark);
    width: 150px;
    margin-top: 14px;
}
.logo-separator {
    color: var(--accent);
    margin: 0 0.5rem;
}

.logo-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-desktop a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 30px;
}

.nav-desktop a:hover {
    color: var(--primary-medium);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.nav-mobile {
    display: none;
    background-color: white;
    border-top: 1px solid var(--border-light);
    padding: 1rem 0;
}

.nav-mobile ul {
    list-style: none;
    margin-bottom: 1rem;
}

.nav-mobile li {
    margin-bottom: 0.5rem;
}

.nav-mobile a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    text-align: center;
}

.nav-mobile button {
    display: block;
    width: 100%;
    padding: 0.5rem 10px;
    background-color: var(--primary-medium);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-color:  #0d48a1d9;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(52, 57, 214);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 1.4rem;
    color: white;
}

.hero-subtitle {
    display: block;
    font-size: 2.7rem;
    color: rgb(255, 255, 255);;
    margin-top: 1rem;
}

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

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    color: rgb(133, 168, 255);
}
.benefit-item span {
   font-size: 1.2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-contact {
    color: rgba(255, 255, 255, 0.8);
}

.contact-numbers span {
    color: white;
}

.contact-numbers {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    color: white;
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background-color: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 0; transform: translateY(-8px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(8px); }
}

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

.about-intro {
    padding: 4rem 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.quote-box {
    background-color: var(--accent);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.quote-box p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: var(--accent);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.experience-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.experience-text {
    font-size: 0.9rem;
}

/* Principles */
.principles {
    padding: 4rem 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.principle-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.principle-icon {
    font-size: 2rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
}

/* Differentials */
.differentials {
    padding: 4rem 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.differential-item {
    display: flex;
    gap: 1rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-3px);
}

.differential-icon {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.differential-content h4 {
    margin-bottom: 0.5rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-category {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
}

.service-header h3 {
    margin-bottom: 0.5rem;
}

.service-header p {
    color: var(--text-secondary);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--background-light);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: white;
    box-shadow: 0 2px 8px var(--shadow);
}

.service-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.service-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-us {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    margin-bottom: 3rem;
}

.why-choose-us h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.benefit-icon {
    background-color: var(--primary-light);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Services CTA */
.services-cta {
    text-align: center;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 8px;
}

.services-cta h3 {
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.partner-logo {
    background-color: var(--background-light);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}
.partner-logo img{
    background-color: var(--background-light);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 100px    ;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}
.partner-logo:hover {
     background-color: var(--background-light);
    transform: translateY(-3px);
}

.partnership-benefits {
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.partnership-benefits h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.partnership-benefits .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.benefit-item .benefit-icon {
    font-size: 2rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-secondary);
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.story-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.stat-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.stat-sublabel {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Testimonial */
.testimonial {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.testimonial-content {
    text-align: center;
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Partners CTA */
.partners-cta {
    text-align: center;
}

.partners-cta h3 {
    margin-bottom: 1rem;
}

.partners-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

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

/* Contact Form */
.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    display: flex;
    gap: 1rem;
}

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

.info-content h4 {
    margin-bottom: 0.5rem;
}

.info-content p {
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.whatsapp-card {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.whatsapp-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.whatsapp-content h4 {
    color: white;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    overflow: hidden;
}

.map-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.map-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.map-placeholder {
    padding: 3rem;
    text-align: center;
    background-color: var(--background-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-subtitle {
    color: var(--accent);
    font-weight: 500;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background-color: var(--accent-dark);
}

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

.footer-contact .contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contact .contact-item i {
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact .contact-item p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.3rem;
    margin-bottom: 15px;
    right: 8rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.certinho-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-primary {
   background-color:rgba(255, 255, 255, 0);
    color: white;
    border-radius: 4px;
    width: 0px;
    height: 0px;
    font-size: 0;
}
.btn-primary:hover {
      background-color: rgba(179, 87, 87, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0);
}
    .container {
        padding: 0 15px;
    }
    .header {
        height: 6rem;
    }
    .whatsapp-float {
        margin-right: 100px;
    }
    /* Header */
    .top-bar {
        display: none;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        margin-right: 40px;
    }

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

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-numbers {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .experience-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .success-stories {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .hero-title {
        font-size: 2rem;
    }
       .btn-primary {
   background-color:rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 0);
    border-radius: 4px;
    width: 0px;
    height: 0px;
    font-size: 0;
}
.btn-primary:hover {
      background-color: rgba(179, 87, 87, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0);
}
 .mobile-menu-toggle {
        display: block;
        margin-right: 35px;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .service-item span {
        font-size: 0.8rem;
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

