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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 80px;
    }
}

/* Header Styles - Improved Mobile */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

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

@media (min-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 80px;
    }
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFC107;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 24px;
    height: 3px;
    background: #FFC107;
    border-radius: 2px;
}

/* Phone Number Styling - Fixed for Mobile */
.cta-button {
    display: none; /* Hide on mobile by default */
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    color: #000000;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    transition: transform 0.3s;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .cta-button {
        display: flex;
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (min-width: 1024px) {
    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.cta-button:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav.active {
    max-height: 500px;
    border-bottom: 1px solid #333333;
}

.mobile-nav-list {
    list-style: none;
    padding: 24px 20px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #FFC107;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
}

/* Hero Section - Improved Mobile */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 60px;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 120px 20px 80px;
    }
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
    z-index: 1;
}

.hero-bg-animation::before,
.hero-bg-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-bg-animation::before {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-bg-animation::after {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00D084 0%, #0088CC 100%);
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@media (min-width: 768px) {
    .hero-bg-animation::before {
        width: 300px;
        height: 300px;
    }
    
    .hero-bg-animation::after {
        width: 400px;
        height: 400px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
}

.text-yellow {
    color: #FFC107;
}

.hero-subtitle {
    font-size: 18px;
    color: #FFC107;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.hero-description {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 40px;
    }
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    color: #000000;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .hero-cta {
        padding: 16px 48px;
        font-size: 18px;
    }
}

.hero-cta:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Services Section - Improved Mobile */
.services-section {
    padding: 80px 0;
    background: #000000;
}

@media (min-width: 768px) {
    .services-section {
        padding: 100px 0;
    }
}

.section-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #FFC107;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid #333333;
}

@media (min-width: 768px) {
    .section-badge {
        font-size: 14px;
        padding: 8px 24px;
        margin-bottom: 20px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 42px;
        margin-bottom: 60px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-card {
        padding: 40px 32px;
        border-radius: 20px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 193, 7, 0.2) 100%);
    transition: height 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.3);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 22px;
        margin-bottom: 16px;
    }
}

.service-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .service-description {
        font-size: 16px;
    }
}

/* Consultation CTA - Improved Mobile */
.consultation-cta {
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    padding: 40px 20px;
    margin: 60px 0;
}

@media (min-width: 768px) {
    .consultation-cta {
        padding: 60px 20px;
        margin: 80px 0;
    }
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

@media (min-width: 1024px) {
    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 24px;
    }
}

.cta-icon svg {
    color: #000000;
    width: 50px;
    height: 50px;
}

@media (min-width: 768px) {
    .cta-icon svg {
        width: 60px;
        height: 60px;
    }
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 24px;
    }
}

.cta-phone {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
    direction: ltr; /* Ensures proper display of phone numbers */
    unicode-bidi: embed;
}

@media (min-width: 768px) {
    .cta-phone {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .cta-phone {
        font-size: 48px;
    }
}

.cta-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 16px;
    }
}

.cta-appointment-btn {
    background: #FFFFFF;
    color: #000000;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .cta-appointment-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

.cta-appointment-btn:hover {
    transform: scale(1.05);
}

/* Portfolio Section - Improved Mobile */
.portfolio-section {
    padding: 80px 0;
    background: #0a0a0a;
}

@media (min-width: 768px) {
    .portfolio-section {
        padding: 100px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
}

.sparkle-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .sparkle-icon {
        font-size: 32px;
        margin-bottom: 16px;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 40px;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .portfolio-item {
        border-radius: 16px;
    }
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-mockup {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .portfolio-mockup {
        border-radius: 16px;
    }
}

.portfolio-image {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-portfolio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mobile-portfolio {
        gap: 32px;
        max-width: 600px;
    }
}

.mobile-mockup {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .mobile-mockup {
        border-radius: 12px;
    }
}

.mobile-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Industries Section - Improved Mobile */
.industries-section {
    padding: 80px 0;
    background: #000000;
}

@media (min-width: 768px) {
    .industries-section {
        padding: 100px 0;
    }
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

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

.industry-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

@media (min-width: 768px) {
    .industry-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
}

.industry-card:hover {
    transform: scale(1.05);
    border-color: #FFC107;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .industry-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
}

.industry-name {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

@media (min-width: 768px) {
    .industry-name {
        font-size: 16px;
    }
}

/* Testimonials Section - Improved Mobile */
.testimonials-section {
    padding: 80px 0;
    background: #1a1a1a;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 100px 0;
    }
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .testimonial-header {
        margin-bottom: 60px;
    }
}

.testimonial-subtitle {
    font-size: 14px;
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .testimonial-subtitle {
        font-size: 16px;
    }
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

@media (min-width: 768px) {
    .testimonial-track {
        gap: 32px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-carousel:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 24px;
    min-width: 280px;
    flex-shrink: 0;
    text-align: center;
}

@media (min-width: 480px) {
    .testimonial-card {
        min-width: 320px;
    }
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: 400px;
        padding: 32px;
        border-radius: 16px;
    }
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
}

.testimonial-stars {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .testimonial-stars {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.testimonial-text {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .testimonial-name {
        font-size: 18px;
    }
}

.testimonial-role {
    font-size: 12px;
    color: #888888;
}

@media (min-width: 768px) {
    .testimonial-role {
        font-size: 14px;
    }
}

/* Contact Section - Improved Mobile */
.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 100px 0;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 40% 60%;
        gap: 60px;
    }
}

.contact-info {
    color: #000000;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 42px;
        margin-bottom: 40px;
    }
}

.contact-card {
    display: flex;
    gap: 16px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 24px;
        border-radius: 12px;
        margin-bottom: 24px;
        gap: 20px;
    }
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon svg {
    color: #FFC107;
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
}

.contact-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .contact-card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.contact-card-text {
    font-size: 14px;
    color: #666666;
    margin-bottom: 4px;
    direction: ltr; /* Ensures proper display of phone numbers */
    unicode-bidi: embed;
}

@media (min-width: 768px) {
    .contact-card-text {
        font-size: 16px;
    }
}

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

.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 40px;
        border-radius: 20px;
    }
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .contact-form {
        gap: 20px;
        margin-bottom: 24px;
    }
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

@media (min-width: 768px) {
    .form-input {
        padding: 14px 20px;
        font-size: 16px;
    }
}

.form-input:focus {
    outline: none;
    border-color: #FFC107;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

@media (min-width: 768px) {
    textarea.form-input {
        min-height: 120px;
    }
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    color: #000000;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .form-submit {
        padding: 16px;
        font-size: 16px;
    }
}

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

.hiring-banner {
    background: #000000;
    color: #FFC107;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .hiring-banner {
        padding: 12px;
        font-size: 16px;
    }
}

.google-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFC107;
    font-weight: 500;
    font-size: 14px;
}

.google-reviews span:first-child {
    font-size: 18px;
}

@media (min-width: 768px) {
    .google-reviews {
        font-size: 16px;
    }
    
    .google-reviews span:first-child {
        font-size: 20px;
    }
}

/* Footer - Improved Mobile */
.footer {
    background: #000000;
    color: #B0B0B0;
    padding: 40px 0 0;
}

@media (min-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
}

.footer-top {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-top {
        margin-bottom: 60px;
    }
}

.footer-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-contact-cards {
        grid-template-columns: 1fr;
    }
}

.footer-contact-card {
    background: #1a1a1a;
    border: 1px solid #FFC107;
    border-radius: 10px;
    padding: 20px;
}

@media (min-width: 768px) {
    .footer-contact-card {
        padding: 24px;
        border-radius: 12px;
    }
}

.footer-contact-card h3 {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .footer-contact-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.footer-contact-card p {
    margin-bottom: 6px;
    font-size: 14px;
    direction: ltr; /* Ensures proper display of phone numbers */
    unicode-bidi: embed;
}

@media (min-width: 768px) {
    .footer-contact-card p {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding-bottom: 40px;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.footer-text {
    font-size: 13px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

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

.footer-links li {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .footer-links li {
        margin-bottom: 12px;
    }
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .footer-links a {
        font-size: 14px;
    }
}

.footer-links a:hover {
    color: #FFC107;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .newsletter-form {
        gap: 12px;
        margin-bottom: 20px;
    }
}

.newsletter-input {
    padding: 10px 14px;
    border: 1px solid #333333;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .newsletter-input {
        padding: 12px 16px;
        font-size: 14px;
    }
}

.newsletter-input:focus {
    outline: none;
    border-color: #FFC107;
}

.newsletter-button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFC107 0%, #FF8A00 100%);
    color: #000000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

@media (min-width: 768px) {
    .newsletter-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

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

.hiring-badge {
    background: #FFC107;
    color: #000000;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
}

@media (min-width: 768px) {
    .hiring-badge {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding: 30px 0;
        gap: 20px;
    }
}

.copyright {
    color: #FFC107;
    font-size: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .copyright {
        font-size: 14px;
        text-align: left;
    }
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #B0B0B0;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FFC107;
}

/* WhatsApp Float Button - Improved Mobile */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

@media (min-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    color: #ffffff;
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    background: #000000;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

@media (min-width: 768px) {
    .whatsapp-tooltip {
        right: 70px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Additional Mobile-Specific Fixes */
@media (max-width: 767px) {
    /* Ensure text doesn't overflow on small screens */
    .hero-title br {
        display: none;
    }
    
    /* Improve button tap targets */
    .hero-cta, .cta-appointment-btn, .form-submit, .newsletter-button {
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve form input readability */
    .form-input, .newsletter-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Ensure phone numbers are properly displayed */
    .cta-phone, .contact-card-text, .footer-contact-card p {
        word-break: keep-all;
        overflow-wrap: normal;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
}