/* Global Styles */
:root {
    --primary-color: #0066CC;  /* Your blue color */
    --secondary-color: #0055AA; /* Slightly darker blue */
    --accent-color: #FF6600;   /* Your orange color */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.logo-link {
  text-decoration: none;
  color: inherit; /* keeps original colors */
}

.logo-link span {
  color: #FF6600; /* keep your orange highlight */
}

.logo-link:hover {
  opacity: 0.8; /* subtle hover effect */
}


.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}


/* Service containers */
.service-container {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.service-container:last-child {
  border-bottom: none;
}

.service-image {
  flex: 1;
  margin-right: 20px;
}

.service-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.service-info {
  flex: 2;
}

.service-info h3 {
  margin-top: 0;
  color: #333;
}

.service-link {
  display: inline-block;
  margin-top: 10px;
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}
.service-card .card-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: #0077cc;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.service-card .card-btn:hover {
    background: #e05a00;
}



.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn.active {
    background-color: var(--accent-color);
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 28px;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('https://images.unsplash.com/photo-1603732551681-2e91159b9dc2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
}
.hero h1 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 700; /* Semi-bold weight */
}

.hero p {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    text-shadow: none;
    border: 2px solid white;
    background-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero .btn:hover {
    background-color: #FF6600;
    border-color: #FF6600;
}
/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between image and text */
}

/* Logo Image */
.logo-image {
    height: 40px; /* Fixed height */
    width: auto; /* Maintain aspect ratio */
    max-width: 120px; /* Maximum width */
}

/* Logo Text */
.logo h1 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color); /* Using your dark color variable */
    margin: 0; /* Remove default margin */
    line-height: 1;
}

.logo h1 span {
    color: var(--primary-color); /* Your blue color #0066CC */
    font-weight: 600;
}

/* For smaller screens */
@media (max-width: 768px) {
    .logo-image {
        height: 30px;
        max-width: 90px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
}
.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Services Highlight */
.services-highlight {
  background: 
    linear-gradient(rgba(114, 113, 129, 0.5), rgba(255, 255, 255)), 
    url("/images/background-images/service.png") center/cover no-repeat;
  text-align: center;
  padding: 50px 20px; /* add spacing */
}


.services-highlight h2 {
    color: #212529;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--light-color);
    padding: 30px;
    transition: transform 0.3s ease;
    border-style: groove;
    border-color: #007bff;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}



/* CTA Section */
.cta {
background-color: var(--primary-color);
color: white;
text-align: center;
}

.cta h2 {
color: white;
}



.social-icons a {
color: white;
margin-left: 15px;
font-size: 20px;
transition: color 0.3s ease;
}

.social-icons a:hover {
color: var(--primary-color);
}

/* Page Header */
.page-header {
background-color: var(--primary-color);
color: white;
text-align: center;
padding: 100px 0 60px;
margin-top: 70px;
}

.page-header h1 {
color: white;
font-size: 36px;
}

/* Services List */
.services-list {
background-color: white;
}

.service-category {
margin-bottom: 60px;
}

.service-category h2 {
text-align: center;
margin-bottom: 40px;
position: relative;
}

.service-category h2::after {
content: '';
display: block;
width: 80px;
height: 3px;
background-color: var(--primary-color);
margin: 15px auto 0;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.service-item {
border: 1px solid #eee;
padding: 30px;

transition: all 0.3s ease;
}

.service-item:hover {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transform: translateY(-5px);
}

.service-item i {
font-size: 40px;
color: var(--primary-color);
margin-bottom: 20px;
}


/* About Page */
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.about-image img {
width: 100%;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values {
background-color: var(--light-color);
text-align: center;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}

.value-card {
background-color: white;
padding: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card i {
font-size: 40px;
color: var(--primary-color);
margin-bottom: 20px;
}

.certifications {
background-color: white;
text-align: center;
}

.cert-grid {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 40px;
flex-wrap: wrap;
}

.cert-grid img {
height: 80px;
object-fit: contain;
}

/* Contact Page */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info h2 {
margin-bottom: 30px;
}

.info-item {
display: flex;
margin-bottom: 25px;
}

.info-item i {
font-size: 24px;
color: var(--primary-color);
margin-right: 20px;
margin-top: 5px;
}

.contact-form {
background-color: white;
padding: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
font-family: inherit;
}

.form-group textarea {
resize: vertical;
min-height: 100px;
}

.map {
background-color: var(--light-color);
padding: 60px 0;
}

.map-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Booking Page */
.booking-steps {
background-color: var(--light-color);
padding: 30px 0;
}

.steps {
display: flex;
justify-content: center;
gap: 40px;
}

.step {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
opacity: 0.5;
transition: all 0.3s ease;
}

.step.active {
opacity: 1;
}

.step span {
width: 40px;
height: 40px;
background-color: var(--gray-color);
color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
margin-bottom: 10px;
}

.step.active span {
background-color: var(--primary-color);
}

.step::after {
content: '';
position: absolute;
top: 20px;
left: 100%;
width: 40px;
height: 2px;
background-color: var(--gray-color);
}

.step:last-child::after {
display: none;
}

.booking-form {
background-color: white;
}

.form-step {
display: none;
max-width: 800px;
margin: 0 auto;
}

.form-step.active {
display: block;
}

.service-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 40px;
}

.service-option input[type="radio"] {
display: none;
}

.service-option label {
display: block;
background-color: var(--light-color);
padding: 30px;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
height: 100%;
}

.service-option input[type="radio"]:checked + label {
background-color: var(--primary-color);
color: white;
}

.service-option label i {
font-size: 40px;
margin-bottom: 15px;
display: block;
color: var(--primary-color);
}

.service-option input[type="radio"]:checked + label i {
color: white;
}

.service-option label h3 {
margin-bottom: 10px;
}

.service-option label .price {
background-color: rgba(255, 255, 255, 0.2);
color: white;
}

.service-option input[type="radio"]:checked + label .price {
background-color: rgba(255, 255, 255, 0.3);
}

.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.form-navigation {
display: flex;
justify-content: space-between;
margin-top: 40px;
}

.confirmation-screen {
text-align: center;
padding: 60px 0;
display: none;
}

.confirmation-screen i {
font-size: 80px;
color: var(--success-color);
margin-bottom: 30px;
}

.confirmation-details {
background-color: var(--light-color);
padding: 30px;
border-radius: 10px;
max-width: 600px;
margin: 30px auto;
text-align: left;
}


/* Careers Page Styles */
.career-benefits {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.job-openings {
    padding: 60px 0;
    background-color: white;
}

.job-filters {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: var(--light-color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.jobs-list {
    display: grid;
    gap: 20px;
}

.job-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--primary-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-type {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.job-details i {
    margin-right: 5px;
}

.job-description h4 {
    margin: 15px 0 10px;
}

.job-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.apply-btn {
    margin-top: 15px;
}

.application-form {
    background-color: var(--light-color);
    padding: 60px 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-details {
        flex-direction: column;
        gap: 5px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Screen Replacement Page Styles */
.hero-screen {
    padding: 120px 0;
    margin-top: 70px;
}

.hero-screen h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-screen p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.catalog-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px);
}

.screen-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.screen-details {
    padding: 20px;
}

.screen-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.screen-specs li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.screen-specs i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

.price-section {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--primary-color);
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

.search-box {
    display: flex;
    margin: 20px 0;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-box button {
    border-radius: 0 4px 4px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-screen {
        padding: 80px 0;
    }
    
    .hero-screen h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}

/* Keyboard Replacement Page Styles */
.hero-keyboard {
    padding: 120px 0;
    margin-top: 70px;
}

.hero-keyboard h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-keyboard p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.compatibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compatibility-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.compatibility-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.catalog-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px);
}

.keyboard-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.keyboard-details {
    padding: 20px;
}

.keyboard-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.keyboard-specs li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.keyboard-specs i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

.price-section {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--primary-color);
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-keyboard {
        padding: 80px 0;
    }
    
    .hero-keyboard h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}

/* Battery Replacement Page Styles */
.hero-battery {
    padding: 120px 0;
    margin-top: 70px;
}

.hero-battery h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-battery p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.warning-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.warning-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.compatibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compatibility-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.compatibility-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table th {
    background-color: var(--primary-color);
    color: white;
    text-align: left;
    padding: 12px 15px;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
}

table tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tr:last-of-type {
    border-bottom: 2px solid var(--primary-color);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.catalog-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px);
}

.battery-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.battery-details {
    padding: 20px;
}

.battery-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.battery-specs li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.battery-specs i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

.price-section {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--primary-color);
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-battery {
        padding: 80px 0;
    }
    
    .hero-battery h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}

/* RAM Upgrade Page Styles */
.hero-ram {
    padding: 120px 0;
    margin-top: 70px;
}

.hero-ram h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-ram p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.compatibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compatibility-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.compatibility-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.compatibility-checker {
    text-align: center;
}

.search-box {
    display: flex;
    margin: 20px auto;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-box button {
    border-radius: 0 4px 4px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.catalog-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px);
}

.ram-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.ram-details {
    padding: 20px;
}

.ram-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ram-specs li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ram-specs i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

.price-section {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--primary-color);
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-ram {
        padding: 80px 0;
    }
    
    .hero-ram h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}

/* Page-specific styles */
        .hero-ram {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1591488320449-011701bb6704?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .ram-types {
            background-color: var(--light-color);
            padding: 60px 0;
        }
        
        .compatibility-checker {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .ram-filter {
            margin: 20px 0;
            text-align: center;
        }
        
        .filter-btn {
            padding: 8px 16px;
            margin: 0 5px;
            background-color: #f0f0f0;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
        }

        /* SSD Upgrade Page Styles */
.hero-ssd {
    padding: 120px 0;
    margin-top: 70px;
}

.hero-ssd h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-ssd p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.compatibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compatibility-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.compatibility-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.compatibility-checker {
    text-align: center;
}

.search-box {
    display: flex;
    margin: 20px auto;
}

.search-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-box button {
    border-radius: 0 4px 4px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.catalog-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px);
}

.ssd-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.ssd-details {
    padding: 20px;
}

.ssd-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ssd-specs li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ssd-specs i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

.price-section {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--primary-color);
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-ssd {
        padding: 80px 0;
    }
    
    .hero-ssd h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
    
    .speed-meter {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    
    .speed-bar {
        width: 120px;
        height: 60px !important;
        margin: 10px 0;
    }
    
    .speed-label {
        position: static;
        margin-top: 5px;
    }
}


/* System Cleaning Page Styles */
.hero-cleaning {
    padding: 120px 0;
    margin-top: 70px;
}

.hero-cleaning h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-cleaning p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.compatibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compatibility-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.compatibility-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.checklist-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.checklist-column h3 i {
    margin-right: 10px;
}

.checklist-column ul {
    list-style: none;
    padding-left: 0;
}

.checklist-column li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.checklist-column li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--primary-color);
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-cleaning {
        padding: 80px 0;
    }
    
    .hero-cleaning h1 {
        font-size: 2rem;
    }
    
    .process-step {
        width: 100% !important;
        padding-left: 70px !important;
        padding-right: 25px !important;
        left: 0 !important;
    }
    
    .process-step:after {
        left: 25px !important;
    }
    
    .process-timeline:after {
        left: 31px !important;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}

/* Booking Page Styles */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option label {
    display: block;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}


        
        /* Coming Soon Section */
        .coming-soon {
            padding: 100px 0;
            text-align: center;
            background-color: #fff;
        }
        
        .coming-soon-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            background-color: #f5f5f5;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .coming-soon h2 {
            font-size: 2.5rem;
            color: #FF6600;
            margin-bottom: 20px;
        }
        
        .coming-soon p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .countdown-item {
            background-color: #007bff;
            color: white;
            padding: 15px 20px;
            border-radius: 5px;
            min-width: 80px;
        }
        
        .countdown-number {
            font-size: 2rem;
            font-weight: bold;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        .notify-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .notify-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        
        .notify-form button {
            padding: 12px 20px;
            background-color: #FF6600;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        

    /* Footer Styles */
    .site-footer {
        background: #2a2a2a;
        color: #fff;
        padding: 60px 0 0;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-col h4 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: #FF6600;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        height: 40px;
        margin-right: 10px;
    }
    
    .footer-logo h3 {
        color: #fff;
        font-size: 17px;
        margin: 0;
    }
    
    .footer-logo h3 span {
        color: #FF6600;

    }
    
    .footer-social {
        margin-top: 20px;
    }
    
    .footer-social a {
        display: inline-block;
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: #fff;
        text-align: center;
        line-height: 36px;
        margin-right: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background: #FF6600;
        transform: translateY(-3px);
    }
    
    .footer-col ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-col ul li {
        margin-bottom: 12px;
    }
    
    .footer-col ul li i {
        color: #FF6600;
        margin-right: 8px;
        font-size: 12px;
    }
    
    .footer-col ul li a {
        color: #bbb;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .footer-col ul li a:hover {
        color: #FF6600;
        padding-left: 5px;
    }
    
    .footer-contact ul li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .footer-contact ul li i {
        margin-top: 3px;
        margin-right: 15px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .copyright p {
        margin: 0;
        color: #bbb;
    }
    
    .payment-methods i {
        font-size: 24px;
        margin-left: 15px;
        color: #bbb;
        transition: color 0.3s ease;
    }
    
    .payment-methods i:hover {
        color: #FF6600;
    }
    
    @media (max-width: 768px) {
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .payment-methods {
            margin-top: 15px;
        }
    }

        .notify-form button:hover {
            background-color: #e05a00;
        }
.service-option input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: white;
}

.service-option label i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-color);
}

.service-option input[type="radio"]:checked + label i {
    color: white;
}

.service-option label h3 {
    margin-bottom: 10px;
}

.service-option label p {
    margin: 0;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.checkbox-group {
    display: flex;
    align-items: center;
}

.form-group.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.btn {
    padding: 12px 25px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.prev-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.prev-btn:hover {
    background-color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .form-navigation button {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* CCTV Installation Page Styles */
.hero-cctv {
    padding: 120px 0;
    margin-top: 70px;
}

.hero-cctv h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-cctv p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.need-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.need-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

table th {
    background-color: var(--primary-color);
    color: white;
    text-align: left;
    padding: 12px 15px;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
}

table tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tr:last-of-type {
    border-bottom: 2px solid var(--primary-color);
}

.small-btn {
    padding: 8px 12px;
    font-size: 0.8em;
}

.camera-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.camera-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.camera-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.camera-details {
    padding: 20px;
}

.camera-details h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.camera-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.camera-details li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.camera-details li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-call {
    background: white;
    color: var(--primary-color);
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-cctv {
        padding: 80px 0;
    }
    
    .hero-cctv h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}

 /* Brands Section Styles */
    .brands-section {
        padding: 60px 0;
          background: 
    linear-gradient(rgba(255, 245, 245, 0.5), rgba(255, 255, 255, 0.5)), 
    url("/images/background-images/brand.png") center/cover no-repeat;
        text-align: center;
    }
    
    .brands-section h2 {
        margin-bottom: 15px;
        color: #333;
        font-size: 32px;
    }
    
    .section-subtitle {
        color: #000000;
        margin-bottom: 40px;
        font-size: 18px;
    }
    
    .brands-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
        max-width: 1500px;
        margin: 0 auto;
        
    }
    
    .brand-item {
        position: relative;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
     
      
        padding: 20px;
        transition: all 0.3s ease;
        border-style:groove;
        border-color: #007BFF;
    }
    
    .brand-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .brand-item img {
        max-width: 100%;
        max-height: 60px;
        
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .brand-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    .brand-overlay {
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        background-color: #007bff;
        color: white;
        padding: 5px;
        border-radius: 4px;
        opacity: 0;
        transition: all 0.3s ease;
        font-size: 14px;
    }
    
    .brand-item:hover .brand-overlay {
        opacity: 1;
        bottom: -40px;
    }
    
    @media (max-width: 768px) {
        .brands-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .brand-item {
            height: 80px;
        }
    }
    
    @media (max-width: 480px) {
        .brands-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

     /* POS Section Styles */
   .pos-section {
        padding: 80px 0;
        background: linear-gradient(rgba(53, 52, 52, 0.9), hsla(204, 100%, 50%, 0.9)), 
                    url('https://thumbs.dreamstime.com/b/smiling-african-waitress-standing-counter-restaurant-young-african-waitress-wearing-apron-smiling-113927870.jpg') center/cover no-repeat fixed;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }
    
    .pos-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 15px;
        color: #ffffff;
    }
    
    .pos-logo {
        height: 40px;
        width: auto;
        margin-right: 15px;
    }
    
    .section-subtitle {
        text-align: center;
        margin-bottom: 50px;
        color: #000000;
        font-size: 1.1rem;
    }
    
    .pos-features {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }
    
    .pos-feature {
        flex: 1;
        min-width: 250px;
        margin: 15px;
        padding: 30px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .pos-feature:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .pos-feature i {
        font-size: 2.5rem;
        color: #007BFF;
        margin-bottom: 20px;
    }
    
    .pos-feature h3 {
        margin-bottom: 15px;
        color: #ffffff;
    }
    
    .pos-feature p {
        color: #dddddd;
        line-height: 1.6;
    }
    
    .pos-benefits {
        display: flex;
        justify-content: center;
    }
    
    .pos-benefit-card {
        width: 100%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .benefit-slider {
        position: relative;
        overflow: hidden;
    }
    
    .slider-images {
        position: relative;
        height: 100%;
        min-height: 400px;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 3;
    }
    
    .slider-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dots span.active {
        background: #FF6600;
        transform: scale(1.2);
    }
    
    .benefit-content {
        padding: 40px;
        position: relative;
        z-index: 2;
        background: linear-gradient(135deg, rgba(255,102,0,0.9) 0%, rgba(255,102,0,0.8) 100%);
    }
    
    .benefit-content h3 {
        margin-bottom: 25px;
        font-size: 1.8rem;
        position: relative;
        display: inline-block;
    }
    
    .benefit-content h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: white;
    }
    
    .benefit-content ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .benefit-content li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 15px;
        font-size: 1.05rem;
    }
    
    .benefit-content li::before {
        content: '';
        position: absolute;
        left: 0;
        height: 100%;
        width: 3px;
        background: rgba(255,255,255,0.4);
    }
    
    .benefit-content i {
        margin-right: 12px;
        color: white;
        font-size: 1.1em;
    }
    
    .btn {
        display: inline-block;
        padding: 14px 32px;
        background-color: white;
        color: #FF6600;
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        transition: all 0.4s ease;
        border: none;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .btn:hover {
        background: #353434;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    @media (max-width: 1024px) {
        .pos-benefit-card {
            grid-template-columns: 1fr;
        }
        
        .slider-images {
            min-height: 300px;
        }
    }
    
    @media (max-width: 768px) {
        .pos-heading {
            flex-direction: column;
        }
        
        .pos-logo {
            margin-right: 0;
            margin-bottom: 15px;
        }
        
        .pos-features {
            flex-direction: column;
        }
        
        .pos-feature {
            margin: 10px 0;
        }
        
        .benefit-content {
            padding: 30px 20px;
        }
    }

     .cctv-packages {
            margin: 40px 0;
        }
        .package-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .package-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 300px;
            padding: 25px;
            transition: transform 0.3s ease;
        }
        .package-card:hover {
            transform: translateY(-10px);
        }
        .package-card h3 {
            color: #FF6600;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .package-card .price {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin: 15px 0;
        }
        .package-card ul {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
        }
        .package-card ul li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        .package-card ul li:before {
            content: "✓";
            color: #4CAF50;
            margin-right: 10px;
        }
        .package-card .btn {
            display: block;
            text-align: center;
            background: #FF6600;
            color: white;
            padding: 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: background 0.3s;
        }
        .package-card .btn:hover {
            background: #e65c00;
        }
        .feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .feature-item {
            flex: 1 1 200px;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .feature-item i {
            font-size: 24px;
            color: #FF6600;
            margin-bottom: 10px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .comparison-table th {
            background-color: #f2f2f2;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .brands-section {
            margin: 40px 0;
            text-align: center;
        }
        .brands-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .brand-card {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            min-width: 300px;
            max-width: 400px;
            flex: 1;
        }
        .brand-logo {
            height: 80px;
            object-fit: contain;
            margin-bottom: 20px;
        }
        .brand-name {
            font-weight: bold;
            color: #333;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .brand-card:hover {
            transform: translateY(-5px);
        }

        .secured-by {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 14px;
}

.secured-by img {
    height: 50px;
    margin-left: 20px;
}


   /* Poster Section Styles */
        .poster-section {
            padding: 60px 0;
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .poster-section h2 {
            margin-bottom: 40px;
            color: #333;
            font-size: 32px;
        }
        
        .poster-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .poster-item {
            position: relative;
            border-style:groove;
            overflow: hidden;
            transition: transform 0.3s ease;
            border-color: #007BFF;
        }
        
        .poster-item:hover {
            transform: translateY(-10px);
        }
        
        .poster-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        .poster-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: white;
            padding: 20px;
            text-align: left;
        }
        
        .poster-overlay h3 {
            margin: 0;
            font-size: 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0062ff, #da00ff);
      
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

       
        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0062ff;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #888;
        }

   

        .service-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #0077cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #005fa3;
}
nav ul li.active a,
nav ul li a.active {
  color: #007bff; /* highlight color */
  font-weight: bold;
  border-bottom: 2px solid #007bff;
}



.services-highlight .explore-btn {
    text-align: center;
    margin-top: 30px;
}

.services-highlight .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0077cc;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.services-highlight .btn:hover {
    background: #FF6600;
}

.testimonials-section {
  background: 
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), 
    url("/images/background-images/customers.png") center/cover no-repeat;
  text-align: center;
  padding: 40px 20px;
}


  .testimonials-section h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
  }

  .testimonials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }

  .testimonial {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 260px;
    border-style:groove ;
    border-color: #007bff;
  }

  .testimonial img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .testimonial h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
  }

  .testimonial p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }

  .stars {
    color: #FFD700;
    font-size: 18px;
  }


.about-section {
  padding: 60px 20px;
  background: 
    linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.5)), 
    url("/images/background-images/brand.png") center/cover no-repeat;
        text-align: center;
    }


h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

h2 .bitsecure {
  color: #007bff; /* blue for Bitsecure */
}

h2 .solution {
  color: #FF6600; /* orange for Solution */
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-images img {
  max-width: 100%;      /* Shrinks on small screens */
  height: auto;         /* Maintains aspect ratio */
  display: block;       /* Removes inline gaps */
  margin: 0 auto;       /* Centers image */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 3px groove #007bff;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.about-content p {
  margin-bottom: 20px;
  color: #555;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.about-content ul li i {
  color: #FF6600;
  margin-right: 8px;
}


.repairs-slider {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
  position: relative;
  z-index: 2;
}

.repair-item {
  display: inline-block;
  background: #fff;
  padding: 8px 15px;
  margin-right: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.repair-item i {
  margin-right: 8px;
  color: #FF6600; /* orange icons */
}

@keyframes scrollText {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}


.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between items */
}

.feature-box {
  display: flex;
  align-items: center;
  background: #f9f9f9; /* light background */
  padding: 12px 18px;
  border-style: groove;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box i {
  color: #FF6600;
  font-size: 18px;
  margin-right: 10px;
}

.feature-box span {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-card img {
  max-width: 250px;    /* Controls width */
  max-height: 200px;   /* Add this to limit height */
  height: 200px;        /* Keeps aspect ratio */
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #FF6600;
 
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.badge {
    background: #FF6600;
    padding: 8px 15px;
    font-size: medium;
    font-weight: bold;
}


.certifications {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}
.certifications h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #FF6600;
}
.certifications h2 span {
  color: #0077ff;
}
.certifications .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.cert-card {
  background: #ffffff;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-style: groove;
  border-color: #0077ff;
}
.cert-card i {
  font-size: 3rem;
  color: #0077ff;
  margin-bottom: 15px;
}
.cert-card h3 {
  font-size: 1.3rem;
  color: #0d1b2a;
  margin-bottom: 10px;
}
.cert-card p {
  font-size: 0.95rem;
  color: #666;
}
.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: #f9f9f9;
  border: 2px solid #007bff;
  text-align: center;
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.price {
  font-size: 26px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  color: #110f0f;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.pricing-card ul li {
  margin: 10px 0;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card ul li i {
  color: #007bff;
  margin-right: 8px;
}

.pricing-card.featured {
  background: #007bff;
  color: #fff;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured ul li {
  color: #fff;
}

.pricing-card.featured ul li i {
  color: #fff;
}

.pricing-card.featured .btn {
  background: #fff;
  color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .price {
    font-size: 22px;
  }

  .pricing-card ul li {
    font-size: 14px;
  }
}


