/* Base Styles & Variables */
:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --secondary-color: #1a1a1a;
    --light-color: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
    background-color: var(--light-gray);
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.tech-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.tech-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tech-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    color: var(--secondary-color);
}

.tech-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto;
}

/* Header Styles */
.tech-header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tech-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.tech-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tech-main-nav ul {
    display: flex;
    gap: 30px;
}

.tech-main-nav a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.tech-main-nav a:hover {
    color: var(--primary-color);
}

.tech-main-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tech-main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tech-nav-icons {
    display: flex;
    gap: 20px;
}

.tech-search-btn,
.tech-user-btn,
.tech-cart-btn {
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
}

.tech-search-btn:hover,
.tech-user-btn:hover,
.tech-cart-btn:hover {
    color: var(--primary-color);
}

.tech-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.tech-hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.tech-slides {
    height: 100%;
    position: relative;
}

.tech-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.tech-active-slide {
    opacity: 1;
}

.tech-slide-content {
    max-width: 600px;
    color: var(--light-color);
}

.tech-slide-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tech-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.tech-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.tech-slider-prev,
.tech-slider-next {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--light-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.tech-slider-prev:hover,
.tech-slider-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.tech-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.tech-active-dot {
    background-color: var(--light-color);
}

/* Category Highlights */
.tech-categories {
    padding: 80px 0;
}

.tech-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-category-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.tech-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-category-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--light-color);
}

.tech-category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tech-category-card p {
    color: var(--dark-gray);
}

/* Featured Products */
.tech-featured-products {
    padding: 80px 0;
    background-color: var(--light-color);
}

.tech-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tech-product-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.tech-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.tech-product-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.tech-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.tech-product-card:hover .tech-product-img img {
    transform: scale(1.05);
}

.tech-product-info {
    padding: 20px;
}

.tech-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-product-rating {
    color: var(--warning-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-product-rating span {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-left: 5px;
}

.tech-product-price {
    margin-bottom: 15px;
}

.tech-current-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.tech-old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--dark-gray);
    margin-left: 8px;
}

.tech-add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.tech-add-to-cart:hover {
    background-color: var(--primary-dark);
}

/* Deal of the Day */
.tech-daily-deal {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.tech-deal-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tech-deal-info {
    flex: 1;
}

.tech-deal-image {
    flex: 1;
}

.tech-deal-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tech-deal-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tech-deal-countdown {
    margin: 25px 0;
}

.tech-deal-countdown h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-countdown-timer {
    display: flex;
    gap: 15px;
}

.tech-countdown-box {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    min-width: 70px;
}

.tech-countdown-box span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.tech-countdown-box span:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Why Choose Us */
.tech-why-choose {
    padding: 80px 0;
}

.tech-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-benefit-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.tech-benefit-card:hover {
    transform: translateY(-5px);
}

.tech-benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.tech-benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tech-benefit-card p {
    color: var(--dark-gray);
}

/* Testimonials */
.tech-testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.tech-testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.tech-testimonial-slides {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tech-testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-active-testimonial {
    opacity: 1;
}

.tech-testimonial-content {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.tech-testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.tech-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.tech-testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tech-testimonial-author span {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.tech-testimonial-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.tech-testimonial-prev,
.tech-testimonial-next {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.tech-testimonial-prev:hover,
.tech-testimonial-next:hover {
    background-color: var(--primary-dark);
}

.tech-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tech-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.tech-active-testimonial-dot {
    background-color: var(--primary-color);
}

/* Tech Tips */
.tech-tips {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.tech-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-tip-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.tech-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-tip-image {
    height: 200px;
    overflow: hidden;
}

.tech-tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-tip-card:hover .tech-tip-image img {
    transform: scale(1.1);
}

.tech-tip-content {
    padding: 20px;
}

.tech-tip-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tech-tip-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.tech-read-more {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.tech-read-more:hover {
    color: var(--primary-dark);
}

/* Newsletter */
.tech-newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tech-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tech-newsletter-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tech-newsletter-info p {
    opacity: 0.9;
}

.tech-newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.tech-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.tech-newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    padding: 0 25px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.tech-newsletter-form button:hover {
    background-color: var(--dark-gray);
}

/* Footer */
.tech-footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

.tech-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.tech-footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.tech-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.tech-footer-col p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.tech-footer-col ul li {
    margin-bottom: 10px;
}

.tech-footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.tech-footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.tech-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.tech-contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.tech-social-links {
    display: flex;
    gap: 15px;
}

.tech-social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.tech-social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.tech-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-footer-payments {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* Floating Cart */
.tech-floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
}
/* Base Styles & Variables */
:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --secondary-color: #1a1a1a;
    --light-color: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
    background-color: var(--light-gray);
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.tech-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.tech-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tech-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    color: var(--secondary-color);
}

.tech-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto;
}

/* Header Styles */
.tech-header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tech-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.tech-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tech-main-nav ul {
    display: flex;
    gap: 30px;
}

.tech-main-nav a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.tech-main-nav a:hover {
    color: var(--primary-color);
}

.tech-main-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tech-main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tech-nav-icons {
    display: flex;
    gap: 20px;
}

.tech-search-btn,
.tech-user-btn,
.tech-cart-btn {
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
}

.tech-search-btn:hover,
.tech-user-btn:hover,
.tech-cart-btn:hover {
    color: var(--primary-color);
}

.tech-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.tech-hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.tech-slides {
    height: 100%;
    position: relative;
}

.tech-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.tech-active-slide {
    opacity: 1;
}

.tech-slide-content {
    max-width: 600px;
    color: var(--light-color);
}

.tech-slide-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tech-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.tech-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.tech-slider-prev,
.tech-slider-next {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--light-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.tech-slider-prev:hover,
.tech-slider-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.tech-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.tech-active-dot {
    background-color: var(--light-color);
}

/* Category Highlights */
.tech-categories {
    padding: 80px 0;
}

.tech-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-category-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.tech-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-category-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--light-color);
}

.tech-category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tech-category-card p {
    color: var(--dark-gray);
}

/* Smart Home Category Specific Styles */
.tech-category-card .fa-home {
    color: var(--light-color);
}

/* Featured Products */
.tech-featured-products {
    padding: 80px 0;
    background-color: var(--light-color);
}

.tech-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tech-product-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.tech-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.tech-product-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.tech-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.tech-product-card:hover .tech-product-img img {
    transform: scale(1.05);
}

.tech-product-info {
    padding: 20px;
}

.tech-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-product-rating {
    color: var(--warning-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-product-rating span {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-left: 5px;
}

.tech-product-price {
    margin-bottom: 15px;
}

.tech-current-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.tech-old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--dark-gray);
    margin-left: 8px;
}

.tech-add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.tech-add-to-cart:hover {
    background-color: var(--primary-dark);
}

/* Arlo Product Specific Styles */
.tech-product-card[data-brand="arlo"] .tech-product-badge {
    background-color: #00b4ff; /* Arlo brand blue */
}

.tech-product-card[data-brand="arlo"] .tech-add-to-cart {
    background-color: #00b4ff;
}

.tech-product-card[data-brand="arlo"] .tech-add-to-cart:hover {
    background-color: #008fd4;
}

/* Deal of the Day */
.tech-daily-deal {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.tech-deal-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tech-deal-info {
    flex: 1;
}

.tech-deal-image {
    flex: 1;
}

.tech-deal-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tech-deal-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tech-deal-countdown {
    margin: 25px 0;
}

.tech-deal-countdown h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-countdown-timer {
    display: flex;
    gap: 15px;
}

.tech-countdown-box {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    min-width: 70px;
}

.tech-countdown-box span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.tech-countdown-box span:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Why Choose Us */
.tech-why-choose {
    padding: 80px 0;
}

.tech-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-benefit-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.tech-benefit-card:hover {
    transform: translateY(-5px);
}

.tech-benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.tech-benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tech-benefit-card p {
    color: var(--dark-gray);
}

/* Smart Security Benefit Specific Styles */
.tech-benefit-card .fa-lock {
    color: var(--light-color);
}

/* Testimonials */
.tech-testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.tech-testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.tech-testimonial-slides {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tech-testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-active-testimonial {
    opacity: 1;
}

.tech-testimonial-content {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.tech-testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.tech-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.tech-testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tech-testimonial-author span {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.tech-testimonial-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.tech-testimonial-prev,
.tech-testimonial-next {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.tech-testimonial-prev:hover,
.tech-testimonial-next:hover {
    background-color: var(--primary-dark);
}

.tech-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tech-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.tech-active-testimonial-dot {
    background-color: var(--primary-color);
}

/* Tech Tips */
.tech-tips {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.tech-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-tip-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.tech-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-tip-image {
    height: 200px;
    overflow: hidden;
}

.tech-tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-tip-card:hover .tech-tip-image img {
    transform: scale(1.1);
}

.tech-tip-content {
    padding: 20px;
}

.tech-tip-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tech-tip-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.tech-read-more {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.tech-read-more:hover {
    color: var(--primary-dark);
}

/* Newsletter */
.tech-newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tech-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tech-newsletter-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tech-newsletter-info p {
    opacity: 0.9;
}

.tech-newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.tech-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.tech-newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    padding: 0 25px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.tech-newsletter-form button:hover {
    background-color: var(--dark-gray);
}

/* Footer */
.tech-footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

.tech-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.tech-footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.tech-footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.tech-footer-col p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.tech-footer-col ul li {
    margin-bottom: 10px;
}

.tech-footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.tech-footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.tech-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.tech-contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.tech-social-links {
    display: flex;
    gap: 15px;
}

.tech-social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.tech-social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.tech-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-footer-payments {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* Floating Cart */
.tech-floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
}

.tech-floating-cart:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

/* Mobile Menu */
.tech-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 1001;
    transition: var(--transition);
    overflow-y: auto;
}

.tech-mobile-menu.active {
    left: 0;
}

.tech-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.tech-mobile-menu-close {
    font-size: 1.5rem;
    cursor: pointer;
}

.tech-mobile-nav {
    padding: 20px;
}

.tech-mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-mobile-nav a {
    display: block;
    padding: 10px 0;
    font-weight: 500;
}

.tech-mobile-nav a.active {
    color: var(--primary-color);
}

.tech-mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--medium-gray);
    text-align: center;
}

.tech-mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Overlay */
.tech-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tech-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Products Page Specific Styles */
.tech-products-hero,
.tech-about-hero,
.tech-contact-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.tech-products-hero h1,
.tech-about-hero h1,
.tech-contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tech-products-hero p,
.tech-about-hero p,
.tech-contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.tech-products-layout {
    display: flex;
    gap: 30px;
    padding: 40px 0;
}

.tech-products-sidebar {
    flex: 0 0 250px;
}

.tech-products-main {
    flex: 1;
}

.tech-filter-section {
    margin-bottom: 30px;
}

.tech-filter-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--medium-gray);
}

.tech-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-filter-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tech-filter-list label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-filter-count {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.tech-price-range {
    padding: 15px 0;
}

.tech-price-slider {
    width: 100%;
    margin-bottom: 10px;
}

.tech-price-values {
    display: flex;
    justify-content: space-between;
}

.tech-filter-btn,
.tech-clear-btn {
    width: 100%;
    margin-bottom: 10px;
}

.tech-clear-btn {
    background-color: var(--medium-gray);
    color: var(--secondary-color);
}

.tech-clear-btn:hover {
    background-color: #d0d0d0;
}

.tech-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tech-products-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-products-sort select {
    padding: 8px 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
}

.tech-products-view {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-view-btn {
    background-color: transparent;
    border: 1px solid var(--medium-gray);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.tech-view-btn.active,
.tech-view-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.tech-products-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.tech-pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--medium-gray);
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.tech-pagination-btn.active,
.tech-pagination-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

/* About Page Specific Styles */
.tech-about-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.tech-about-reverse {
    flex-direction: row-reverse;
}

.tech-about-text {
    flex: 1;
}

.tech-about-image {
    flex: 1;
}

.tech-about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tech-about-list {
    margin: 20px 0;
}

.tech-about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-about-list i {
    color: var(--primary-color);
}

.tech-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-team-member {
    text-align: center;
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tech-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.tech-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.tech-team-bio {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tech-team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tech-team-social a {
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.tech-team-social a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Contact Page Specific Styles */
.tech-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px 0;
}

.tech-contact-form-section {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.tech-contact-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tech-form-group {
    margin-bottom: 20px;
}

.tech-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.tech-form-group input,
.tech-form-group select,
.tech-form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.tech-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.tech-error-message {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.tech-contact-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.tech-contact-success i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.tech-contact-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tech-contact-info-card {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.tech-contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tech-contact-info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tech-contact-social {
    margin-top: 40px;
}

.tech-contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tech-store-map {
    padding: 60px 0;
}

.tech-map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tech-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.tech-faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
}

.tech-faq-question {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--light-color);
    border: none;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.tech-faq-question:hover {
    background-color: var(--light-gray);
}

.tech-faq-question i {
    transition: transform 0.3s ease;
}

.tech-faq-question.active i {
    transform: rotate(180deg);
}

.tech-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--light-gray);
}

.tech-faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.tech-faq-answer p {
    margin-bottom: 15px;
}

.tech-faq-answer ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.tech-faq-answer ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tech-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-products-layout {
        flex-direction: column;
    }
    
    .tech-products-sidebar {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .tech-main-nav {
        display: none;
    }
    
    .tech-mobile-menu-btn {
        display: block;
    }
    
    .tech-hero-slider {
        height: 400px;
    }
    
    .tech-slide-content h1 {
        font-size: 2.2rem;
    }
    
    .tech-deal-content {
        flex-direction: column;
    }
    
    .tech-about-section {
        flex-direction: column;
    }
    
    .tech-newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .tech-hero-slider {
        height: 350px;
    }
    
    .tech-slide-content h1 {
        font-size: 1.8rem;
    }
    
    .tech-slide-content p {
        font-size: 1rem;
    }
    
    .tech-section-title {
        font-size: 1.5rem;
    }
    
    .tech-product-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}/* Arlo Hero Section */
.tech-arlo-hero {
    background-color: #00b4ff;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tech-arlo-hero .tech-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tech-arlo-hero-content {
    flex: 1;
    padding-right: 40px;
}

.tech-arlo-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tech-arlo-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.tech-arlo-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tech-arlo-hero-badges span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-arlo-hero-btns {
    display: flex;
    gap: 15px;
}

.tech-btn-primary {
    background-color: white;
    color: #00b4ff;
}

.tech-btn-primary:hover {
    background-color: #e6f7ff;
}

.tech-btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.tech-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tech-arlo-hero-image {
    flex: 1;
    position: relative;
}

.tech-arlo-hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Arlo Product Line */
.tech-arlo-line {
    padding: 80px 0;
    background-color: white;
}

.tech-arlo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-arlo-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-arlo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.1);
}

.tech-arlo-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.tech-arlo-card-img img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-arlo-card:hover .tech-arlo-card-img img {
    transform: scale(1.1);
}

.tech-arlo-card h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: #333;
}

.tech-arlo-card p {
    color: #666;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.tech-arlo-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #00b4ff;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tech-arlo-link:hover {
    color: #008fd4;
    gap: 8px;
}

/* Featured Arlo Products */
.tech-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tech-view-all {
    color: #00b4ff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-view-all:hover {
    color: #008fd4;
}

.tech-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.tech-product-features span {
    background-color: #e6f7ff;
    color: #0077cc;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Arlo Features Section */
.tech-arlo-features {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.1);
}

.tech-feature-icon {
    width: 70px;
    height: 70px;
    background-color: #e6f7ff;
    color: #00b4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.tech-feature-card:hover .tech-feature-icon {
    background-color: #00b4ff;
    color: white;
}

.tech-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.tech-feature-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Arlo Setup Demo */
.tech-arlo-demo {
    padding: 80px 0;
    background-color: white;
}

.tech-arlo-demo .tech-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tech-demo-content {
    flex: 1;
}

.tech-demo-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.tech-demo-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.tech-demo-steps {
    margin-bottom: 30px;
}

.tech-demo-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.tech-demo-steps span {
    width: 30px;
    height: 30px;
    background-color: #00b4ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.tech-demo-steps p {
    margin: 0;
    color: #333;
}

.tech-demo-video {
    flex: 1;
    position: relative;
}

.tech-video-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-video-placeholder img {
    width: 100%;
    display: block;
}

.tech-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 180, 255, 0.8);
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-play-btn:hover {
    background-color: #00b4ff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Arlo Support Section */
.tech-arlo-support {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.tech-support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tech-support-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.tech-support-content p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.tech-support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tech-support-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.1);
}

.tech-support-card i {
    font-size: 2.5rem;
    color: #00b4ff;
    margin-bottom: 15px;
}

.tech-support-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.tech-support-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Dropdown Navigation */
.tech-nav-dropdown {
    position: relative;
}

.tech-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.tech-nav-dropdown:hover .tech-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.tech-dropdown-menu li {
    padding: 8px 20px;
}

.tech-dropdown-menu li:hover {
    background-color: #f5f5f5;
}

.tech-dropdown-menu a {
    display: block;
    color: #333;
    font-size: 0.9rem;
}

.tech-mobile-dropdown ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.tech-mobile-dropdown.active ul {
    max-height: 500px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tech-arlo-hero .tech-container,
    .tech-arlo-demo .tech-container {
        flex-direction: column;
    }
    
    .tech-arlo-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .tech-arlo-hero-badges,
    .tech-arlo-hero-btns {
        justify-content: center;
    }
    
    .tech-demo-content {
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tech-arlo-hero h1 {
        font-size: 2.2rem;
    }
    
    .tech-arlo-subtitle {
        font-size: 1.2rem;
    }
    
    .tech-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .tech-arlo-hero h1 {
        font-size: 1.8rem;
    }
    
    .tech-arlo-hero-btns {
        flex-direction: column;
    }
    
    .tech-arlo-card {
        max-width: 100%;
    }
}