/* NisaSoft - Custom Styles */

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

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2 0%, #f093fb 100%);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #2d3748;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile */
    .nav-link,
    .btn,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .portfolio-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

/* Additional Page Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navbar Styles */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 150px;
    width: auto;
    filter: brightness(1.2);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 900px;
        padding: 0 0 100px;
        max-width: 100vw !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slider-item.active {
    opacity: 1;
}

.slider-bg-1 {
    background: linear-gradient(135deg, #2D1B69 0%, #11998e 100%);
}

.slider-bg-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slider-bg-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slider-bg-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.slider-bg-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.slider-bg-6 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: white;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.hero-visual img {
    animation: float 6s ease-in-out infinite;
    display: block;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.slider-nav i {
    color: white;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #2d3748 !important;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: white;
}

.slider-item .container,
.slider-item .row,
.slider-item .col-lg-7,
.slider-item .col-lg-5 {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 450px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.6);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-outline-custom:hover {
    background: white;
    color: #2D1B69;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    text-align: center;
    margin-bottom: 4rem;
}

/* Services Section */
.service-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.service-icon-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.service-icon-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.service-icon-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.service-icon-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.service-icon-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: #718096;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.stats-card {
    text-align: center;
    padding: 2rem;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-text {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
}

/* Portfolio Section Slider */
.portfolio-slider {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 0 60px;
}

.portfolio-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    gap: 2rem;
}

.portfolio-card {
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s ease;
}

.portfolio-card:hover::before {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.3) 0%, rgba(102, 126, 234, 0.95) 100%);
}

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

.portfolio-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-link:hover {
    color: #667eea;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.portfolio-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-nav-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.portfolio-dots {
    text-align: center;
    margin-top: 2rem;
}

.portfolio-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dots .dot.active {
    background: #667eea;
    transform: scale(1.3);
}

.portfolio-dots .dot:hover {
    background: #764ba2;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .portfolio-card {
        min-width: calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }
  
}

@media (max-width: 768px) {
    .portfolio-card {
        min-width: calc(100vw - 90px) !important;
        max-width: calc(100vw - 90px) !important;
        height: 350px;
    }
    .portfolio-slider {
        padding: 0 35px !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .portfolio-container {
        max-width: 100% !important;
        gap: 0.5rem !important;
    }
    
    .portfolio-nav-btn {
        width: 35px !important;
        height: 35px !important;
        z-index: 100 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    }
    
    .portfolio-nav-btn:active {
        transform: scale(0.9) !important;
    }
    
    .portfolio-nav-btn i {
        color: #667eea !important;
    }
}

/* Pricing Section */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #f093fb;
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(240, 147, 251, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2d3748;
}

.pricing-card.featured .pricing-title {
    color: white;
}

.pricing-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #667eea;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-price .currency {
    font-size: 1rem;
    font-weight: 600;
}

.pricing-subtitle {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 0.3rem;
}

.pricing-card.featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    color: #4a5568;
    font-size: 0.8rem;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-features li i {
    color: #667eea;
    margin-top: 1px;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.pricing-card.featured .pricing-features li i {
    color: #f093fb;
}

.pricing-button {
    width: 100%;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-button.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.pricing-button.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pricing-button.btn-featured {
    background: white;
    color: #667eea;
}

.pricing-button.btn-featured:hover {
    background: #f093fb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 1rem;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: #667eea;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
}

.testimonial-info h5 {
    margin: 0;
    font-weight: 700;
}

.testimonial-info p {
    margin: 0;
    color: #718096;
}

/* Testimonials Slider Styles */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    width: 100%;
    padding: 0 60px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.testimonial-card {
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    margin: 0;
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(100vw - 90px) !important;
        max-width: calc(100vw - 90px) !important;
    }
    .testimonials-slider {
        padding: 0 35px !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .testimonials-container {
        max-width: 100% !important;
        gap: 0.5rem !important;
    }
    
    .testimonial-nav-btn {
        width: 35px !important;
        height: 35px !important;
        z-index: 100 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    }
    
    .testimonial-nav-btn:active {
        transform: scale(0.9) !important;
    }
    
    .testimonial-nav-btn i {
        color: #667eea !important;
    }
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btn i {
    color: #667eea;
    font-size: 1.2rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: #667eea;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-form form .row {
    flex-grow: 1;
}

.contact-form h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: #a0aec0;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.contact-info-card:last-child {
    margin-bottom: 0;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

.contact-info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info-card p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

@media (max-width: 991px) {
    .contact-form {
        margin-top: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0 !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .contact-section .container {
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .contact-section .row {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }
    
    .contact-form {
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.75rem !important;
        font-size: 0.9rem;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-info-card {
        padding: 1.2rem !important;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Better mobile form handling */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Full width inputs on mobile */
    .contact-form .col-md-6,
    .contact-form .col-12 {
        margin-bottom: 0.5rem !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .contact-form .row {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 4rem 0 2rem;
}

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

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #25D366;
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: visible;
    width: 60px;
    animation: bounce-in 1s ease-out;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    width: auto;
    padding: 12px 20px 12px 12px;
    gap: 12px;
}

@keyframes bounce-in {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: whatsapp-pulse 2s infinite;
    transform: translate(-50%, -50%);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.whatsapp-icon i {
    color: #25D366;
    font-size: 20px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon i {
    transform: scale(1.2);
}

.whatsapp-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    opacity: 0;
    max-width: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    max-width: 300px;
    margin-left: 8px;
    transform: translateX(0);
    animation: slide-in-text 0.5s ease-out;
}

@keyframes slide-in-text {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    60% {
        transform: translateX(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes whatsapp-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    /* Force proper sizing on mobile */
    * {
        box-sizing: border-box !important;
    }
    
    body, html {
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: clip !important;
        position: relative;
    }
    
    body > * {
        max-width: 100vw !important;
    }
    
    .container, .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
        max-width: 100vw !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    section, .section, nav, footer {
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
    }
    
    .row {
        margin-left: -12px !important;
        margin-right: -12px !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .col, [class*="col-"] {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    img, svg, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 1rem 0 !important;
        max-width: 100vw !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .navbar .container {
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .navbar-brand img {
        height: 60px !important;
    }
    
    .navbar-toggler {
        border: 2px solid rgba(102, 126, 234, 0.5);
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    }
    
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
    }
    
    .nav-link:after {
        display: none;
    }
    
    /* Slider Item Mobile Fix */
    .slider-item {
        max-width: 100vw !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding-top: 90px !important;
        min-height: 900px !important;
    }
    
    .slider-item .container {
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .slider-item .row {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }
    
    .slider-item .col-lg-6 {
        margin-bottom: 0 !important;
    }
    
    /* Hero Section Mobile */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-top: 0 !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: center !important;
        margin-bottom: 40px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 90%;
        margin-left: 0 !important;
        margin-top: 0 !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        visibility: visible !important;
        opacity: 1 !important;
        display: inline-block !important;
    }
    
    .hero-buttons {
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-visual {
        max-width: 100%;
        overflow: hidden;
        padding: 0 20px 20px 20px !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-visual img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
        margin: 0 auto;
        display: block;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Hero content comes after image on mobile */
    .hero-content {
        padding: 0 10px;
        margin-bottom: 20px !important;
    }
    
    /* Slider Controls Mobile */
    .slider-nav {
        width: 35px !important;
        height: 35px !important;
        position: absolute !important;
        z-index: 100 !important;
        cursor: pointer !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    }
    
    .slider-nav.prev {
        left: 8px !important;
    }
    
    .slider-nav.next {
        right: 8px !important;
    }
    
    .slider-nav i {
        font-size: 1rem !important;
        color: #667eea !important;
    }
    
    .slider-nav:active {
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    .slider-controls {
        position: relative !important;
        bottom: auto !important;
        margin-top: 20px !important;
        z-index: 100 !important;
        max-width: 250px !important;
        gap: 8px !important;
    }
    
    .slider-dot {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
    }
    
    .slider-dot.active {
        background: white !important;
        transform: scale(1.3) !important;
    }
    
    /* Section Styles Mobile */
    .section {
        padding: 60px 0 !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .section .container {
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .section .row {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    /* About Section Mobile */
    .about-section h3 {
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
    }
    
    .about-section p {
        font-size: 1rem !important;
        text-align: center;
    }
    
    .about-section img {
        margin-top: 2rem;
    }
    
    .about-section .btn-primary-custom {
        width: 100%;
        max-width: 100%;
    }
    
    .stats-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-text {
        font-size: 1rem;
    }
    
    /* Pricing Cards Mobile */
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem !important;
        text-align: center;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .footer .container {
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .footer .row {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }
    
    .footer [class*="col-"] {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .footer-logo {
        height: 80px !important;
        margin: 0 auto 1rem;
        display: block;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    .footer h5 {
        margin-bottom: 1rem !important;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
        margin-top: 1rem !important;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float-container {
        bottom: 20px;
        left: 15px;
        max-width: calc(100% - 30px);
    }
    
    .whatsapp-float {
        padding: 10px;
        width: 50px;
    }
    
    .whatsapp-float:hover {
        padding: 10px 15px 10px 10px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-icon i {
        font-size: 16px;
    }
    
    .whatsapp-text {
        font-size: 11px;
    }
    
    /* Scroll to Top Mobile */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
    }
    
    .scroll-top i {
        font-size: 1.2rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .navbar-brand img {
        height: 80px;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Force proper sizing for small devices */
    body, html {
        max-width: 100vw !important;
        overflow-x: clip !important;
    }
    
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .hero-slider {
        min-height: 800px;
        max-width: 100vw !important;
        padding: 0 0 80px !important;
    }
    
    .slider-item {
        padding-top: 80px !important;
        min-height: 800px !important;
    }
    
    .hero-visual {
        padding: 0 10px 15px 10px !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .hero-visual img {
        max-width: 100% !important;
        border-radius: 10px !important;
    }
    
    .portfolio-slider,
    .testimonials-slider {
        padding: 0 30px !important;
    }
    
    .portfolio-card,
    .testimonial-card {
        min-width: calc(100vw - 75px) !important;
        max-width: calc(100vw - 75px) !important;
    }
    
    .slider-nav {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }
    
    .slider-nav i {
        font-size: 0.8rem !important;
    }
    
    .portfolio-nav-btn,
    .testimonial-nav-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }
    
    .portfolio-nav-btn i,
    .testimonial-nav-btn i {
        font-size: 0.8rem !important;
    }
    
    .hero-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 1rem !important;
    }
    
    .hero-buttons {
        margin-bottom: 35px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .slider-controls {
        margin-top: 15px !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        font-size: 0.85rem;
        padding: 10px 20px;
        visibility: visible !important;
        opacity: 1 !important;
        display: inline-block !important;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .footer-logo {
        height: 60px !important;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

