/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.asc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.asc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 123, 255, 0.1);
}

.asc-nav {
    padding: 1rem 0;
}

.asc-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.asc-logo {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #007BFF;
    text-decoration: none;
}

.asc-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.asc-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.asc-nav-link {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.asc-nav-link:hover,
.asc-nav-link.active {
    color: #007BFF;
}

.asc-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007BFF;
    transition: width 0.3s ease;
}

.asc-nav-link:hover::after,
.asc-nav-link.active::after {
    width: 100%;
}

.asc-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.asc-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #007BFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.asc-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #007BFF;
}

.asc-hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
}

.asc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.asc-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}

.asc-slide:first-child {
    opacity: 1;
    z-index: 2;
}

.asc-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
}

.asc-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.asc-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out;
}

.asc-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.2s both;
}

.asc-cta-btn {
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    animation: slideUp 1s ease-out 0.4s both;
}

.asc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.asc-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.asc-hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    transform: translateY(-50%);
}

.asc-hero-nav button {
    background: rgba(0, 123, 255, 0.8);
    border: 2px solid white;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.asc-hero-nav button:hover {
    background: rgba(0, 123, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.asc-hero-nav button:active {
    transform: scale(0.95);
    background: rgba(0, 100, 200, 1);
}

.asc-hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.asc-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 123, 255, 0.8);
    z-index: 1000;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.asc-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    border-color: #007BFF;
}

.asc-dot.active {
    background: #007BFF;
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
}

/* About 
Section */
.asc-about {
    padding: 100px 0;
    background: #f8f9fa;
}

.asc-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.asc-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.asc-about-image img:hover {
    transform: scale(1.05);
}

.asc-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1.5rem;
    position: relative;
}

.asc-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    border-radius: 2px;
}

.asc-about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.asc-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.asc-stat {
    text-align: center;
}

.asc-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.asc-stat p {
    color: #666;
    font-weight: 500;
}

.asc-btn-secondary {
    background: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.asc-btn-secondary:hover {
    background: #007BFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Services Section */
.asc-services {
    padding: 100px 0;
    background: white;
}

.asc-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.asc-services .asc-section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.asc-services .asc-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.asc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.asc-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.asc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
    border-color: #007BFF;
}

.asc-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.asc-service-card:hover .asc-service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.asc-service-icon i {
    font-size: 2rem;
    color: white;
}

.asc-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.asc-service-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.asc-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: white;
}

.asc-testimonials .asc-section-title {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.asc-testimonials .asc-section-title::after {
    background: white;
    left: 50%;
    transform: translateX(-50%);
}

.asc-testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.asc-testimonial {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.asc-testimonial.active {
    display: block;
}

.asc-testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.asc-stars {
    margin-bottom: 1.5rem;
}

.asc-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.asc-testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.asc-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.asc-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.asc-testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.asc-testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Contac
t Section */
.asc-contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.asc-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.asc-contact-methods {
    margin: 2rem 0;
}

.asc-contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.asc-contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.asc-contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.asc-contact-method h4 {
    color: #222222;
    margin-bottom: 0.25rem;
}

.asc-contact-method p {
    color: #666;
    font-weight: 500;
}

.asc-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.asc-btn-primary {
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.asc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.asc-btn-whatsapp {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.asc-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.asc-contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.asc-form-group {
    margin-bottom: 1.5rem;
}

.asc-form-group input,
.asc-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.asc-form-group input:focus,
.asc-form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.asc-btn-submit {
    width: 100%;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.asc-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.asc-map {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.asc-footer {
    background: #222222;
    color: white;
    padding: 60px 0 20px;
}

.asc-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.asc-footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 1rem;
}

.asc-footer-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.asc-footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.asc-footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.asc-footer-section ul {
    list-style: none;
}

.asc-footer-section ul li {
    margin-bottom: 0.5rem;
}

.asc-footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.asc-footer-section ul li a:hover {
    color: #007BFF;
}

.asc-social-links {
    display: flex;
    gap: 1rem;
}

.asc-social-links a {
    width: 40px;
    height: 40px;
    background: #007BFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.asc-social-links a:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.asc-footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.asc-footer-contact i {
    color: #007BFF;
    width: 20px;
}

.asc-footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Anim
ations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.asc-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.asc-fade-in.asc-visible {
    opacity: 1;
    transform: translateY(0);
}

.asc-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.asc-slide-left.asc-visible {
    opacity: 1;
    transform: translateX(0);
}

.asc-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.asc-slide-right.asc-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .asc-nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .asc-nav-menu.active {
        left: 0;
    }

    .asc-nav-toggle {
        display: flex;
    }

    .asc-nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .asc-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .asc-nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .asc-hero-title {
        font-size: 2.5rem;
    }

    .asc-hero-subtitle {
        font-size: 1.2rem;
    }

    .asc-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .asc-stats {
        justify-content: center;
    }

    .asc-services-grid {
        grid-template-columns: 1fr;
    }

    .asc-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .asc-cta-buttons {
        flex-direction: column;
    }

    .asc-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .asc-section-title {
        font-size: 2rem;
    }

    .asc-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .asc-hero-title {
        font-size: 2rem;
    }

    .asc-hero-subtitle {
        font-size: 1rem;
    }

    .asc-cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .asc-service-card {
        padding: 2rem 1.5rem;
    }

    .asc-testimonial-content {
        padding: 2rem 1.5rem;
    }

    .asc-contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Loading Animation */
.asc-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.asc-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.asc-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007BFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.asc-text-center {
    text-align: center;
}

.asc-mb-1 {
    margin-bottom: 1rem;
}

.asc-mb-2 {
    margin-bottom: 2rem;
}

.asc-mb-3 {
    margin-bottom: 3rem;
}

.asc-mt-1 {
    margin-top: 1rem;
}

.asc-mt-2 {
    margin-top: 2rem;
}

.asc-mt-3 {
    margin-top: 3rem;
}

.asc-p-1 {
    padding: 1rem;
}

.asc-p-2 {
    padding: 2rem;
}

.asc-p-3 {
    padding: 3rem;
}

/* Accessibility */
.asc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #007BFF;
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .asc-header,
    .asc-hero-nav,
    .asc-hero-dots,
    .asc-cta-btn,
    .asc-btn-primary,
    .asc-btn-whatsapp,
    .asc-btn-secondary,
    .asc-btn-submit {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .asc-section-title {
        font-size: 18pt;
    }
}

/* Pa
ge Header Styles */
.asc-page-header {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.asc-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.asc-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out;
}

.asc-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.2s both;
}

/* About Page Styles */
.asc-about-detailed {
    padding: 100px 0;
    background: white;
}

.asc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.asc-feature {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.asc-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.asc-feature i {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.asc-feature h4 {
    color: #222222;
    margin-bottom: 0.5rem;
}

.asc-mission-vision {
    padding: 100px 0;
    background: #f8f9fa;
}

.asc-mv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.asc-mission,
.asc-vision {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.asc-mission:hover,
.asc-vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
}

.asc-mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.asc-mv-icon i {
    font-size: 2rem;
    color: white;
}

.asc-why-choose {
    padding: 100px 0;
    background: white;
}

.asc-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.asc-reason {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.asc-reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    background: white;
}

.asc-reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.asc-reason-icon i {
    font-size: 1.5rem;
    color: white;
}

.asc-reason h4 {
    color: #222222;
    margin-bottom: 0.5rem;
}

.asc-reason p {
    color: #666;
    line-height: 1.6;
}

.asc-team {
    padding: 100px 0;
    background: #f8f9fa;
}

.asc-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.asc-team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.asc-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
}

.asc-team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #007BFF;
}

.asc-team-member h4 {
    color: #222222;
    margin-bottom: 0.5rem;
}

.asc-team-member p {
    color: #007BFF;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.asc-team-member span {
    color: #666;
    font-size: 0.9rem;
}

/* Services Page Styles */
.asc-services-overview {
    padding: 100px 0;
    background: white;
}

.asc-services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.asc-services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.asc-service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.asc-service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.1);
}

.asc-service-detail:nth-child(even) {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.asc-service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.asc-service-content h3 {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 1rem;
}

.asc-service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.asc-service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.asc-service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.asc-service-features i {
    color: #28a745;
    font-size: 0.9rem;
}

.asc-service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.asc-service-price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007BFF;
}

.asc-service-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.asc-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.asc-process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.asc-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
}

.asc-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.asc-process-step h4 {
    color: #222222;
    margin-bottom: 0.5rem;
}

.asc-process-step p {
    color: #666;
    line-height: 1.6;
}

.asc-service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: white;
    text-align: center;
}

.asc-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.asc-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.asc-contact-page {
    padding: 100px 0;
    background: white;
}

.asc-contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.asc-contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.asc-contact-info-detailed h3 {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 2rem;
}

.asc-contact-methods-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.asc-contact-method-detailed {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.asc-contact-method-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
    background: white;
}

.asc-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.asc-contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.asc-contact-details h4 {
    color: #222222;
    margin-bottom: 0.5rem;
}

.asc-contact-details p {
    color: #007BFF;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.asc-contact-details span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.asc-contact-action {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.asc-contact-action:hover {
    color: #0056b3;
}

.asc-service-areas {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.asc-service-areas h4 {
    color: #222222;
    margin-bottom: 1rem;
}

.asc-service-areas p {
    color: #666;
    margin-bottom: 1rem;
}

.asc-areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.asc-areas-list li {
    color: #007BFF;
    font-weight: 500;
    position: relative;
    padding-left: 1rem;
}

.asc-areas-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.asc-contact-form-detailed {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.asc-contact-form-detailed h3 {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 2rem;
    text-align: center;
}

.asc-form-detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.asc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.asc-form-group label {
    display: block;
    color: #222222;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.asc-form-group input,
.asc-form-group select,
.asc-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.asc-form-group input:focus,
.asc-form-group select:focus,
.asc-form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.asc-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.asc-form-checkbox input[type="checkbox"] {
    width: auto;
}

.asc-btn-submit-detailed {
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.asc-btn-submit-detailed:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.asc-map-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.asc-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.asc-faq {
    padding: 100px 0;
    background: white;
}

.asc-faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.asc-faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asc-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.asc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.asc-faq-question:hover {
    background: #e9ecef;
}

.asc-faq-question h4 {
    color: #222222;
    margin: 0;
}

.asc-faq-question i {
    color: #007BFF;
    transition: transform 0.3s ease;
}

.asc-faq-item.active .asc-faq-question i {
    transform: rotate(45deg);
}

.asc-faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asc-faq-item.active .asc-faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.asc-faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/ * Debug styles for slider - make everything super visible */ .asc-hero-nav {
    pointer-events: auto !important;
}

.asc-hero-nav button {
    pointer-events: auto !important;
    background: #007BFF !important;
    border: 3px solid white !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
}

.asc-hero-dots {
    pointer-events: auto !important;
}

.asc-dot {
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 2px solid #007BFF !important;
}

.asc-dot.active {
    background: #007BFF !important;
    border: 2px solid white !important;
}

/* Ensure slides have content */
/* .asc-slide-bg {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%) !important;
} */

.asc-slide-content {
    z-index: 10 !important;
}

/*
 Floating Action Buttons */
.asc-floating-buttons {
    position: fixed;
    top: 80%;
    transform: translateY(-50%);
    z-index: 9999;
    pointer-events: none;
}

.asc-float-call,
.asc-float-whatsapp {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 9999;
}

/* Call Button - Left Side */
.asc-float-call {
    left: 20px;
    top: 40%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #007BFF, #0056b3) !important;
    animation: pulse-call 2s infinite;
    display: flex !important;
    visibility: visible !important;
    z-index: 10000 !important;
}

.asc-float-call:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
    color: white;
}

/* WhatsApp Button - Right Side */
.asc-float-whatsapp {
    right: 20px;
    top: 60%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #25D366, #128C7E) !important;
    animation: pulse-whatsapp 2s infinite;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10001 !important;
}

.asc-float-whatsapp:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Pulse Animations */
@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .asc-float-call,
    .asc-float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .asc-float-call {
        left: 15px;
    }

    .asc-float-whatsapp {
        right: 15px;
    }
}

@media (max-width: 480px) {

    .asc-float-call,
    .asc-float-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .asc-float-call {
        left: 10px;
    }

    .asc-float-whatsapp {
        right: 10px;
    }
}

/* Ensure buttons stay above everything */
.asc-float-call,
.asc-float-whatsapp {
    z-index: 10000 !important;
}

/* Add bounce effect on click */
.asc-float-call:active,
.asc-float-whatsapp:active {
    transform: translateY(-50%) scale(0.95);
}

/* Tooltip effect */
.asc-float-call::before {
    content: 'Call Now';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.asc-float-call:hover::before {
    opacity: 1;
}

.asc-float-whatsapp::before {
    content: 'WhatsApp';
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.asc-float-whatsapp:hover::before {
    opacity: 1;
}

/* Discla
imer Styling */
.asc-disclaimer {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.asc-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: justify;
}

.asc-disclaimer strong {
    color: #fff;
    font-weight: 600;
}

/* Mobile responsive for disclaimer */
@media (max-width: 768px) {
    .asc-disclaimer {
        margin-top: 15px;
        padding: 12px;
    }

    .asc-disclaimer p {
        font-size: 0.8rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .asc-disclaimer {
        margin-top: 10px;
        padding: 10px;
    }

    .asc-disclaimer p {
        font-size: 0.75rem;
    }
}

/* 
Service Card Call Now Button */
.asc-service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.asc-service-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

.asc-service-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/* Service card adjustments to accommodate button */
.asc-service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.asc-service-card p {
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Mobile responsive for service buttons */
@media (max-width: 768px) {
    .asc-service-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-top: 12px;
    }

    .asc-service-card {
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    .asc-service-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .asc-service-card {
        min-height: 240px;
    }
}/* Enhanced
 Mobile Menu Styles - Force Working */
@media (max-width: 768px) {
    .asc-nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .asc-nav-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .asc-nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 2rem !important;
        transition: left 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    .asc-nav-menu.active {
        left: 0 !important;
    }
    
    .asc-nav-menu li {
        margin: 1rem 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .asc-nav-menu .asc-nav-link {
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1.2rem !important;
        color: #333 !important;
        text-decoration: none !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
        width: 80% !important;
        margin: 0 auto !important;
    }
    
    .asc-nav-menu .asc-nav-link:hover,
    .asc-nav-menu .asc-nav-link.active {
        background: #007BFF !important;
        color: white !important;
        transform: translateY(-2px) !important;
    }
    
    /* Hamburger animation */
    .asc-nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px) !important;
    }
    
    .asc-nav-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .asc-nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px) !important;
    }
}

/* Ensure mobile menu works on smaller screens too */
@media (max-width: 480px) {
    .asc-nav-menu {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }
    
    .asc-nav-menu .asc-nav-link {
        font-size: 1.1rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}