           /* ⭐ About Section */
        /* About Section - Full Width */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

/* Full Width Container */
.about .container {
    max-width: none !important; /* Remove container width limit */
    width: 100% !important;
    padding: 0 40px; /* Add some side padding */
    margin: 0 auto;
}

/* Section Title */
.about .section-title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about .section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.about .section-title p {
    font-size: 1.2rem;
    color: #6c757d;
}

/* About Grid - Force 4 Columns */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force exactly 4 columns */
    gap: 30px;
    width: 100%;
    max-width: 1400px; /* Limit max width for very large screens */
    margin: 0 auto;
}

/* About Feature Cards */
.about-feature {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 280px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #009688, #00796B);
    transition: height 0.3s ease;
}

.about-feature:hover::before {
    height: 8px;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #009688, #00796B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.3);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.about-feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 150, 136, 0.4);
}

/* Feature Content */
.about-feature h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-feature p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animation Classes */
.animate-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.zoom-feature {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zoom-feature.zoom-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Responsive Design */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .about .container {
        padding: 0 60px;
    }
    
    .about-grid {
        max-width: 100%;
        gap: 40px;
    }
    
    .about-feature {
        padding: 50px 30px;
        min-height: 320px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .about-grid {
        max-width: 100%;
        gap: 25px;
    }
    
    .about-feature {
        padding: 35px 20px;
        min-height: 260px;
    }
}

/* Large Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .about .container {
        padding: 0 30px;
    }
    
    .about-grid {
        gap: 20px;
    }
    
    .about-feature {
        padding: 30px 15px;
        min-height: 240px;
    }
    
    .about-feature h3 {
        font-size: 1.2rem;
    }
    
    .about-feature p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.7rem;
    }
}

/* Tablet (768px - 991px) - 2 Columns */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }
    
    .about-feature {
        min-height: 220px;
    }
}

/* Mobile (577px - 767px) - 2 Columns */
@media (max-width: 767px) {
    .about {
        padding: 60px 0;
    }
    
    .about .container {
        padding: 0 20px;
    }
    
    .about .section-title h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        gap: 20px;
        max-width: 600px;
    }
    
    .about-feature {
        padding: 25px 20px;
        min-height: 200px;
    }
}

/* Small Mobile (320px - 576px) - 1 Column */
@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .about-feature {
        min-height: auto;
        padding: 30px 25px;
    }
    
    .about .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about .section-title p {
        font-size: 1.1rem;
    }
}

/* Ultra Wide Screens (1920px+) */
@media (min-width: 1920px) {
    .about .container {
        padding: 0 100px;
    }
    
    .about-grid {
        max-width: 100%;
        gap: 50px;
    }
    
    .about-feature {
        padding: 60px 40px;
        min-height: 350px;
    }
    
    .about-feature h3 {
        font-size: 1.6rem;
    }
    
    .about-feature p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .feature-icon i {
        font-size: 2.2rem;
    }
}


        /* ⭐ Contact Section */
        .contact {
            padding: 10px 0;
            background: #f8f9fa;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

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

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #12af58;
            margin-top: 5px;
        }

        .contact-item h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #333;
        }

        .contact-item p {
            color: #666;
            margin: 0;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF6B35;
        }

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

        /* ⭐ Footer */
        .footer {
            background: #1a202c;
            color: white;
        }

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

        .footer-section h4 {
            color: #12af58;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

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

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

        .footer-section ul li a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #FF6B35;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

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

        .social-links a:hover {
            background: #FF6B35;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #2d3748;
            padding-top: 20px;
            text-align: center;
            color: #a0aec0;
        }

        .footer-bottom a {
            color: #12af58;
            text-decoration: none;
        }

        /* ⭐ Header Scroll Effect */
        .header.scrolled {
            backdrop-filter: blur(10px);
        }

        /* ⭐ Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(26, 32, 44, 0.98);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            transition: left 0.3s ease;
            z-index: 999;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #FF6B35;
        }

        /* ⭐ Enhanced Responsive Design */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
}


        .service-icon1 {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(45deg, #009688, #00796B); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.3);
}
        /*Mac Repair Section Begins*/

/* Repair Services Section */

.repair-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #009688, #00796B); /* TEAL */
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 8px;
}

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

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #009688, #00796B); /* TEAL */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.3); /* TEAL SHADOW */
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

/* Service Content */
.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #009688; /* TEAL */
    font-weight: bold;
}

/* Learn More Button */
.learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(45deg, #009688, #00796B); /* TEAL */
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.4); /* TEAL SHADOW */
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* TEAL Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 90%;
    max-width: 800px;
    height: 90vh;
    background: white;
    border-radius: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* Modal Header */
.modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    padding: 25px 30px;
    background: linear-gradient(45deg, #009688, #00796B); /* TEAL */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Modal Body - TEAL SCROLLBAR */
.modal-body {
    position: absolute;
    top: 80px;
    bottom: 80px;
    left: 0;
    right: 0;
    padding: 30px;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* Teal Custom Scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #e0f2f1; /* Light teal background */
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #009688, #00796B); /* TEAL */
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00796B, #00695C); /* Darker teal */
}

/* Firefox scrollbar */
.modal-body {
    scrollbar-width: thin;
    scrollbar-color: #009688 #e0f2f1;
}

/* Modal Footer */
.modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    padding: 20px 30px;
    background: #f8f9fa;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 20px 20px;
}

/* Content Styling */
.service-detail h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-detail > p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.repair-details {
    margin-bottom: 40px;
}

.repair-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #009688; /* TEAL */
}

.repair-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.repair-item h4 i {
    color: #009688; /* TEAL */
}

.repair-item p {
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.5;
}

.price {
    background: linear-gradient(45deg, #009688, #00796B); /* TEAL */
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.service-guarantee {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #28a745;
    margin-bottom: 30px;
}

.service-guarantee h4 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-guarantee ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-guarantee li {
    padding: 5px 0;
    color: #2c3e50;
}

.btn-call,
.btn-quote {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call {
    background: #25D366;
    color: white;
}

.btn-quote {
    background: #009688; /* TEAL */
    color: white;
}

.btn-call:hover,
.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-modal {
        width: 95%;
        height: 95vh;
        top: 2.5%;
    }
    
    .modal-header {
        padding: 15px 20px;
        height: 70px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        top: 70px;
        bottom: 70px;
        padding: 20px;
    }
    
    .modal-footer {
        height: 70px;
        flex-direction: column;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .btn-call,
    .btn-quote {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .repair-item {
        padding: 20px 15px;
    }
    
    .service-modal {
        width: 98%;
        height: 98vh;
        top: 1%;
    }
    
    .modal-body {
        padding: 15px;
    }
}

        /*Mac Repair Section Ends*/
/*About us Begins*/

.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.about::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* Section Title Animation */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    /*opacity: 0;*/
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: #2c3e50;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 20px;
}

/* Feature Items - Initial Hidden State */
.about-feature {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    
    /* Initial zoom state - hidden and scaled down */
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Zoom Animation Class (Added by JavaScript) */
.about-feature.zoom-in {
    opacity: 1;
    transform: scale(1);
}

/* Static Hover Effects (No Movement) */
.about-feature:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

/* Animated Background Effect */
.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(102, 126, 234, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.about-feature:hover::before {
    left: 100%;
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #764ba2, #667eea);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.about-feature:hover .feature-icon::before {
    opacity: 1;
}

.about-feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.feature-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-feature:hover .feature-icon i {
    transform: scale(1.1);
}

/* Feature Content */
.about-feature h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.about-feature:hover h3 {
    color: #667eea;
}

.about-feature p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.about-feature:hover p {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .about-feature {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-feature {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 0px;
    }
    
    .about-feature {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Unique Icon Colors */
.about-feature:nth-child(1) .feature-icon {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.about-feature:nth-child(2) .feature-icon {
    background: linear-gradient(45deg, #4834d4, #686de0);
}

.about-feature:nth-child(3) .feature-icon {
    background: linear-gradient(45deg, #00d2d3, #54a0ff);
}

.about-feature:nth-child(4) .feature-icon {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
}

/*About us Ends*/
/*services icons begins*/
/* Details Section */
.details-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #a0bcd2 100%);
    min-height: 100vh;
}

.details-header {
    text-align: center;
    margin-bottom: 80px;
}

.details-header h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.details-header p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid - Responsive Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns for desktop */
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Service Item */
.service-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Service Icon */
.service-icon {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon i {
    padding: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #333;
}

.service-content h3 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content p {
    color: #5a6c7d;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.85rem;
    flex: 1;
}

/* Read More Button */
.read-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin-top: auto;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr); /* 5 columns */
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns */
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        gap: 20px;
    }
    
    .details-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
    
    .service-item {
        min-height: 260px;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column */
        padding: 0 15px;
    }
    
    .details-header h2 {
        font-size: 2rem;
    }
    
    .service-icon i {
        font-size: 40px !important;
    }
}

/*services icons ends*/
/*iphone, laptop begins*/
.repair-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Main Row Container */
.repair-row {
    display: flex;
    align-items: stretch;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
}

/* 1. Heading Section */
.heading-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.heading-section h2 {
    font-size: 2.2rem;
        color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.heading-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

/* 2. Images Section - Full Height */
.images-section {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.device-img {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* iPhone Image - Portrait */
.device-img.iphone {
    flex: 0 0 45%; /* Fixed width for portrait */
}

.device-img.iphone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    min-height: 320px; /* Taller for portrait */
    aspect-ratio: 3/4; /* Portrait aspect ratio */
}

/* Laptop Image - Landscape */
.device-img.laptop {
    flex: 0 0 65%; /* Wider for landscape */
}

.device-img.laptop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    min-height: 240px; /* Less height for landscape */
    aspect-ratio: 16/10; /* Landscape aspect ratio */
}

.device-img img:hover {
    transform: translateY(-5px);
}

.device-label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    padding: 10px 0;
}

/* 3. Text Section */
.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.text-section h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/*.pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-item {
    background: #007bff;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    width: fit-content;
}

.price-item:last-child {
    background: #28a745;
}*/

/* Mobile Responsive */
@media (max-width: 992px) {
    .repair-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .heading-section,
    .text-section {
        text-align: center;
    }
    
    .images-section {
        order: -1;
        height: 280px;
        flex-direction: row; /* Keep side by side on tablet */
    }
    
    .device-img.iphone {
        flex: 0 0 40%;
    }
    
    .device-img.laptop {
        flex: 0 0 60%;
    }
}

@media (max-width: 768px) {
    .repair-section {
        padding: 50px 0;
    }
    
    .repair-row {
        gap: 30px;
    }
    
    .heading-section h2 {
        font-size: 1.8rem;
    }
    
    .images-section {
        height: 250px;
        gap: 15px;
    }
    
    .device-img.iphone img {
        min-height: 200px;
    }
    
    .device-img.laptop img {
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .images-section {
        flex-direction: column;
        align-items: center;
        height: 400px;
    }
    
    .device-img.iphone,
    .device-img.laptop {
        flex: 1;
        width: 80%;
    }
    
    .device-img.iphone img {
        aspect-ratio: 3/4; /* Maintain portrait */
    }
    
    .device-img.laptop img {
        aspect-ratio: 16/10; /* Maintain landscape */
    }
}




        /*iphone, laptop ends*/
        /* ⭐ Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* ⭐ Header & Navigation */
       /* Keep your existing header styles */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #FF6B35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF6B35;
}

/* 📱 NEW: Contact Buttons Container (Replaces cta-button) */
.contact-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Phone Button */
.phone-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #168e6d;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    /*box-shadow: 0 8px 25px rgb(88 205 177 / 73%);*/
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phone-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /*background: #168e6d;*/
    transition: left 0.3s ease;
}

.phone-button:hover::before {
    left: 0;
}

.phone-button:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 8px 25px rgb(88 205 177 / 73%);*/
    color:#000;
   background: #62b593
}

.phone-button i,
.phone-button span {
    position: relative;
    z-index: 2;
}

.phone-button i {
    font-size: 1rem;
    animation: phoneRing 2s infinite ease-in-out;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

/* WhatsApp Button */
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-button i {
    animation: whatsappPulse 2s infinite ease-in-out;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
}

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

.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #FF6B35;
    padding-left: 10px;
}

/* Mobile Contact Buttons */
.mobile-contact-buttons {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-phone-btn,
.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.mobile-phone-btn {
    background: #168e6d; 
    color: white;
    box-shadow: 0 4px 15px  rgb(199 247 239 / 30%);
}

.mobile-whatsapp-btn {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-phone-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.mobile-whatsapp-btn:hover {
    background: #38d5b3;
    transform: translateY(-2px);
    color:#000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .contact-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .mobile-contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .phone-button span {
        display: none; /* Hide phone number text on very small screens */
    }
    
    .phone-button {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}


        /* ⭐ Hero Section with Carousel */
        .hero {
            background: linear-gradient(135deg, #328461 0%, #056649 100%);
            padding: 150px 0 100px;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        /* ⭐ ENHANCED Electronics Background with MORE Components */
        .electronics-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.25; /* Increased visibility */
        }

        /* ⭐ Circuit Boards - More Visible */
        .circuit {
            position: absolute;
            animation: float 12s infinite ease-in-out;
        }

        .circuit-1 {
            width: 180px;
            height: 180px;
            top: 5%;
            left: 3%;
            animation-delay: 0s;
        }

        .circuit-2 {
            width: 200px;
            height: 200px;
            top: 15%;
            right: 8%;
            animation-delay: -3s;
        }

        .circuit-3 {
            width: 160px;
            height: 160px;
            bottom: 25%;
            left: 8%;
            animation-delay: -6s;
        }

        .circuit-4 {
            width: 190px;
            height: 190px;
            bottom: 5%;
            right: 5%;
            animation-delay: -9s;
        }

        .circuit-5 {
            width: 140px;
            height: 140px;
            top: 45%;
            left: 15%;
            animation-delay: -2s;
        }

        .circuit-6 {
            width: 170px;
            height: 170px;
            top: 35%;
            right: 25%;
            animation-delay: -7s;
        }

        /* ⭐ IC Chips - Multiple Sizes */
        .ic-chip {
            position: absolute;
            animation: pulse 4s infinite ease-in-out;
        }

        .ic-small {
            width: 40px;
            height: 40px;
        }

        .ic-medium {
            width: 60px;
            height: 60px;
        }

        .ic-large {
            width: 80px;
            height: 80px;
        }

        .ic-1 { top: 20%; left: 25%; animation-delay: 0s; }
        .ic-2 { top: 70%; right: 30%; animation-delay: -1s; }
        .ic-3 { bottom: 30%; left: 45%; animation-delay: -2s; }
        .ic-4 { top: 10%; right: 15%; animation-delay: -3s; }
        .ic-5 { bottom: 50%; right: 10%; animation-delay: -1.5s; }
        .ic-6 { top: 60%; left: 5%; animation-delay: -2.5s; }
        .ic-7 { top: 30%; left: 70%; animation-delay: -0.5s; }
        .ic-8 { bottom: 15%; left: 30%; animation-delay: -3.5s; }

        /* ⭐ Capacitors */
        .capacitor {
            position: absolute;
            animation: rotate 20s linear infinite;
        }

        .cap-1 { width: 30px; height: 60px; top: 25%; left: 12%; animation-delay: 0s; }
        .cap-2 { width: 25px; height: 50px; top: 55%; right: 20%; animation-delay: -5s; }
        .cap-3 { width: 35px; height: 70px; bottom: 40%; left: 60%; animation-delay: -10s; }
        .cap-4 { width: 28px; height: 55px; top: 12%; left: 55%; animation-delay: -15s; }
        .cap-5 { width: 32px; height: 65px; bottom: 20%; right: 35%; animation-delay: -8s; }

        /* ⭐ Resistors */
        .resistor {
            position: absolute;
            animation: slide 15s linear infinite;
        }

        .res-1 { width: 80px; height: 20px; top: 18%; left: 40%; animation-delay: 0s; }
        .res-2 { width: 70px; height: 18px; top: 65%; left: 25%; animation-delay: -3s; }
        .res-3 { width: 85px; height: 22px; bottom: 35%; right: 15%; animation-delay: -6s; }
        .res-4 { width: 75px; height: 20px; top: 40%; right: 5%; animation-delay: -9s; }
        .res-5 { width: 78px; height: 19px; bottom: 10%; left: 50%; animation-delay: -12s; }

        /* ⭐ Transistors */
        .transistor {
            position: absolute;
            animation: bounce 8s infinite ease-in-out;
        }

        .trans-1 { width: 45px; height: 45px; top: 8%; left: 80%; animation-delay: 0s; }
        .trans-2 { width: 40px; height: 40px; top: 75%; left: 70%; animation-delay: -2s; }
        .trans-3 { width: 50px; height: 50px; bottom: 45%; left: 20%; animation-delay: -4s; }
        .trans-4 { width: 42px; height: 42px; top: 50%; right: 40%; animation-delay: -6s; }

        /* ⭐ PCB Traces */
        .pcb-trace {
            position: absolute;
            animation: glow 6s infinite ease-in-out;
        }

        .trace-1 { width: 300px; height: 4px; top: 30%; left: 0%; animation-delay: 0s; }
        .trace-2 { width: 250px; height: 3px; top: 60%; right: 0%; animation-delay: -2s; }
        .trace-3 { width: 200px; height: 5px; bottom: 25%; left: 20%; animation-delay: -4s; }

        /* ⭐ Enhanced Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            25% { transform: translateY(-25px) rotate(5deg) scale(1.05); }
            50% { transform: translateY(-15px) rotate(-3deg) scale(0.95); }
            75% { transform: translateY(-35px) rotate(8deg) scale(1.1); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.15); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes slide {
            0% { transform: translateX(-50px); opacity: 0.3; }
            50% { opacity: 1; }
            100% { transform: translateX(50px); opacity: 0.3; }
        }

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

        @keyframes glow {
            0%, 100% { opacity: 0.2; box-shadow: 0 0 5px rgba(255,255,255,0.3); }
            50% { opacity: 0.8; box-shadow: 0 0 20px rgba(255,255,255,0.8); }
        }

        /* ⭐ Carousel Container */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 2;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        .slide-content {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .slide-text {
            z-index: 2;
        }

        .slide-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .slide-text p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .slide-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: #08a474;
            color: white;
        }

        .btn-primary:hover {
            background: #2e745e;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px #a4e8d3;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #333;
        }

        /* ⭐ Slide Images */
        .slide-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .repair-illustration {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transition: transform 0.5s ease;
        }

        .repair-illustration:hover {
            transform: scale(1.05);
        }

        /* ⭐ Carousel Navigation */
        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

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

        .nav-dot.active {
            background: #1ecb42;
            transform: scale(1.2);
        }

        .nav-dot:hover {
            background: rgba(255,255,255,0.8);
        }

        /* ⭐ Carousel Arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 20px;
        }

        .carousel-arrow.next {
            right: 20px;
        }

        /* ⭐ Services Section */
        .services {
            padding: 0px 0;
            background: #f8f9fa;
        }

        ul.service-features li {
    text-align: left !important;
}

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

        .section-title {
            text-align: center;
            margin-bottom: 0px;
        }

        .section-title h2 {
            font-size: 2.5rem;
                color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
               color: #2c3e50;
            max-width: 600px;
            margin: 0 auto;
        }

/* Complete Services Section Styling */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

/* Service Card Base Styling */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

/* Responsive Grid Layout */
/* Mobile - 1 Column */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Tablet - 2 Columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
        margin: 50px auto 0;
    }
}

/* Desktop - 3 + 1 Centered Layout */
@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 50px auto 0;
    }
    
    /* Position cards explicitly */
    .service-card:nth-child(1) { grid-column: 1; grid-row: 1; }
    .service-card:nth-child(2) { grid-column: 2; grid-row: 1; }
    .service-card:nth-child(3) { grid-column: 3; grid-row: 1; }
    .service-card:nth-child(4) { 
        grid-column: 2; 
        grid-row: 2;
        justify-self: center;
        width: 100%;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .services-grid {
        gap: 40px;
        max-width: 1400px;
    }
    
    .service-card {
        padding: 50px 40px;
    }
}


        /* ⭐ Footer */
        .footer {
            background: #333;
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }

        /* ⭐ Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
            }

            .slide-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .slide-text h1 {
                font-size: 2.5rem;
            }

            .slide-text p {
                font-size: 1.1rem;
            }

            .slide-buttons {
                justify-content: center;
            }

            .carousel-arrow {
                display: none;
            }

            .hero {
                padding: 120px 0 80px;
            }

            /* Reduce component sizes on mobile */
            .circuit {
                transform: scale(0.7);
            }
            
            .ic-chip {
                transform: scale(0.8);
            }
            
            .capacitor, .resistor, .transistor {
                transform: scale(0.6);
            }
        }

        @media (max-width: 480px) {
            .slide-text h1 {
                font-size: 2rem;
            }

            .slide-text p {
                font-size: 1rem;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .circuit {
                transform: scale(0.5);
            }
            
            .ic-chip {
                transform: scale(0.6);
            }
            
            .capacitor, .resistor, .transistor {
                transform: scale(0.4);
            }
        }

        /* ⭐ Loading Animation */
        .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;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #FF6B35;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /*Slider image emboss shadow*/
/* Enhanced Visible Emboss Shadow Effect */
.emboss-shadow {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Remove the padding and background that was causing white border */
    padding: 0;
    background: none;
    
    /* Strong visible shadow effects */
    box-shadow: 
        /* Main drop shadow - darker and more pronounced */
        0 25px 50px rgba(0, 0, 0, 0.25),
        /* Secondary shadow for depth */
        0 10px 25px rgba(0, 0, 0, 0.15),
        /* Outer glow */
        0 0 40px rgba(0, 0, 0, 0.1);
    
    /* Remove problematic border */
    border: none;
    
    /* Add filter for better depth */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Enhanced hover effect */
.emboss-shadow:hover {
    transform: translateY(-12px) scale(1.03);
    
    box-shadow: 
        /* Stronger shadows on hover */
        0 35px 70px rgba(0, 0, 0, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(0, 0, 0, 0.15);
    
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

/* Alternative: 3D Emboss with Wrapper */
.emboss-wrapper {
    position: relative;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: calc(3rem + 15px); /* Adjust based on your border-radius */
    
    box-shadow: 
        /* Outer emboss shadows */
        20px 20px 40px rgba(0, 0, 0, 0.15),
        -20px -20px 40px rgba(255, 255, 255, 0.8),
        /* Inner depth */
        inset 5px 5px 15px rgba(0, 0, 0, 0.1),
        inset -5px -5px 15px rgba(255, 255, 255, 0.9);
    
    transition: all 0.4s ease;
}

.emboss-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 
        25px 25px 50px rgba(0, 0, 0, 0.2),
        -25px -25px 50px rgba(255, 255, 255, 0.9),
        inset 8px 8px 20px rgba(0, 0, 0, 0.12),
        inset -8px -8px 20px rgba(255, 255, 255, 1);
}

.emboss-wrapper img {
    display: block;
    border-radius: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Simple but Effective Shadow */
.shadow-strong {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.15),
        0 5px 10px rgba(0, 0, 0, 0.1);
    
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.shadow-strong:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.15);
    
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

/* Neumorphic Style (Modern Emboss) */
.neomorphic-shadow {
    background: #f0f0f0;
    padding: 20px;
    border-radius: calc(3rem + 20px);
    
    box-shadow: 
        /* Light source from top-left */
        -15px -15px 30px rgba(255, 255, 255, 0.8),
        /* Shadow from bottom-right */
        15px 15px 30px rgba(0, 0, 0, 0.15),
        /* Inner shadow for depth */
        inset 2px 2px 5px rgba(0, 0, 0, 0.1),
        inset -2px -2px 5px rgba(255, 255, 255, 0.8);
    
    transition: all 0.3s ease;
}

.neomorphic-shadow:hover {
    box-shadow: 
        -20px -20px 40px rgba(255, 255, 255, 0.9),
        20px 20px 40px rgba(0, 0, 0, 0.2),
        inset 3px 3px 8px rgba(0, 0, 0, 0.12),
        inset -3px -3px 8px rgba(255, 255, 255, 0.9);
}

.neomorphic-shadow img {
    border-radius: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


        /*Slide image emboss shadow*/
  
.logo-link:hover {
    color: #007bff;
}
/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between logo and text */
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.logo img {
    height: 4rem; /* Adjust logo height */
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007bff;
}

/* CTA Button */
.cta-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: #007bff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu,
    .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    /* Adjust logo for mobile */
    .logo {
        font-size: 1.3rem;
        gap: 8px;
    }
    
    .logo img {
        height: 35px; /* Smaller logo on mobile */
    }
    
    .nav-container {
        padding: 10px 20px;
    }
}

/* Mobile Menu JavaScript */

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    top: 80%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

/* FAB Button Base */
.fab-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.fab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.fab-button:hover::before {
    transform: scale(1.1);
}

.fab-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.fab-button:active {
    transform: translateY(-1px) scale(0.95);
}

/* Scroll to Top Button */
.scroll-top-btn {
    background: linear-gradient(45deg, #E4F8F0, #E4F8F0);
    color: grey;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(45deg, #00796B, #00695C);
}

/* Contact Button */
.contact-btn {
    /*background: linear-gradient(45deg, #7FC9AA, #7FC9AA);*/
    color: slategrey;
    animation: contactPulse 3s infinite;
}

/*.contact-btn:hover {
    background: linear-gradient(45deg, #7FC9AA, #7FC9AA);
    animation: none;
    transform: translateY(-3px) scale(1.05);
}*/

.contact-btn:active {
    transform: translateY(-1px) scale(0.95);
}

/* Contact Button Pulse Animation */
/*@keyframes contactPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4), 0 0 0 8px rgba(255, 87, 34, 0.1);
    }
}*/

/* Click Animation */
.fab-button.clicked {
    animation: clickBounce 0.3s ease;
}

@keyframes clickBounce {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons {
        right: 20px;
    }
    
    .fab-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        right: 15px;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .floating-buttons {
        right: 10px;
    }
    
    .fab-button {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Hide floating buttons when contact section is in view (optional) */
.contact-section-active .floating-buttons .contact-btn {
    opacity: 0.3;
    pointer-events: none;
}
