
    .footer-container {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
        align-items: start;
    }

    .footer-brand {
        max-width: 0px;
        margin: 0 auto;
    }
.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.footer-content {
    width: 73%;
    /* max-width: 1117px; */
    /* margin: 0 auto; */
    /* padding: 0; */
    /* position: relative; */
    /* z-index: 1; */
}
.footer,
.footer-section,
.footer-logo,
.newsletter-form {
  opacity: 0;
  transform: translateY(40px);
}

.footer.animate,
.footer-section.animate,
.footer-logo.animate,
.newsletter-form.animate {
  animation: fadeInUpFooter 0.6s ease forwards;
}
@keyframes fadeInUpFooter {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
.footer {
    background: linear-gradient(135deg, #001F3F 0%, #065471 100%);
    padding: 4rem 0 1rem;
    position: relative;
    width: 100%;
    margin: 0;
    color: white;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: white;
}

.footer-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: white;
}

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

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

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

.footer-section ul a:hover {
    color: #00FFB9;
}

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

.social-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00FFB9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: #00FFB9;
    border: none;
    border-radius: 4px;
    color: #001F3F;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 900px) {
    .footer-container {
        grid-template-columns: 300px 1fr;
        gap: 4rem;
        align-items: start;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        min-width: 200px;
    }
}

.footer-brand {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: white;
}

.footer-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: white;
}

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

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

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

.footer-section ul a:hover {
    color: #00FFB9;
}

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

.social-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00FFB9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: #00FFB9;
    border: none;
    border-radius: 4px;
    color: #001F3F;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 900px) {
    .footer-container {
        grid-template-columns: 300px 1fr;
        gap: 4rem;
        align-items: start;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        min-width: 200px;
    }
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .footer-container {
        grid-template-columns: 300px 1fr;
        gap: 4rem;
        align-items: start;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        min-width: 200px;
    }
}

.footer-brand {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: white;
}

.footer-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
   
}
.footer-section {
    text-align: center;
    width: 100%;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul a:hover {
    color: #00FFB9;
}

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

.social-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00FFB9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: #00FFB9;
    border: none;
    border-radius: 4px;
    color: #001F3F;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 900px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-brand {
        flex: 0 0 auto;
    }

    .footer-contact {
        flex: 0 0 auto;
        flex-direction: row;
        gap: 3rem;
    }

    .contact-item:hover {
        transform: translateY(-2px);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    /* gap: 1.5rem; */
    justify-content: center;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-title h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

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

.contact-info span:first-child {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.contact-info span:last-child {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #6d42e5 0%, #4ECDC4 50%, #00d6a4 100%);
    opacity: 0.1;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 4rem;
    }

    .footer-top {
        flex: 0 0 40%;
        margin-bottom: 0;
        text-align: left;
    }

    .footer-grid {
        flex: 0 0 55%;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-bottom {
        position: absolute;
        bottom: -2rem;
        left: 0;
        width: 100%;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
   
}

.footer-top {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 62px;
    margin-bottom: 7px ;
    margin-top: -65px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.btn-footer {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-brand {
    text-align: left;
}

.footer-brand p {
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-grid h3 {
    margin-bottom: 1rem;
    text-align: center;
}

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

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 245px;
    margin-bottom: -4rem;
}

.footer-column p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

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

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

.footer-column ul a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    font-size: 0.7rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.footer-links a,
.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}
.footer-contact{
    width: 100%;

}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    list-style: none;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.footer-brand {
    width: 100%;
    align-items: center;
    text-align: center;
    

}

@media (min-width: 900px) {
    .footer-container {
        grid-template-columns: 300px 1fr;
        gap: 4rem;
        align-items: start;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        min-width: 200px;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 5rem 0 2rem;
    }

    .footer-tagline {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-info {
        grid-column: 1/-1;
    }

    .footer-contact-list {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-top {
        margin-bottom: 3rem;
    }

    .footer-tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-bottom: 2rem;
    }

    .footer-contact-list li {
        justify-content: center;
    }

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

    .footer-links a:hover {
        transform: translateX(0) translateY(-2px);
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1rem 0 2rem;
    }

    .footer-container {
        width: 95%;
    }

    .btn-footer {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul a:hover {
        transform: translateX(0) scale(1.05);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

    .footer-contact li {
        justify-content: center;
    }
}
/* 426px - 500px */
@media (min-width: 426px) and (max-width: 500px) {
    .footer-container {
        width: 85%;
    }
}