/* Global Styles */
:root {
    --primary-color: #0083c1;  /* New blue color */
    --secondary-color: #006699;  /* Slightly darker blue */
    --dark-color: #000000;      /* Black */
    --light-color: #f9fafb;
    --accent-color: #4da6d9;    /* Lighter blue accent */
    --text-color: #333333;      /* Dark gray for text */
    --text-light: #666666;      /* Medium gray */
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-small:hover {
    background-color: var(--secondary-color);
}

/* Header Styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.companylogo {
    max-height: 100px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 0; /* Remove default margin */
}

.logo h1 span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

/* Active state */
nav ul li.active a {
    color: var(--primary-color);
}

nav ul li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/indexbg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features1 {
    padding: 80px 0;
    background-color: var(--light-color);
}


.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    margin-bottom: 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/abouusbg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 300px 0 80px;
}

.page-header h2 {
    font-size: 2.5rem;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-content .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* About Page Specific Styles */
.about-intro {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.about-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
    position: relative;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Core Business Section */
.core-business {
    padding: 80px 0;
    background-color: white;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px);
}

.business-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.business-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Maintenance Services */
.maintenance-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-us {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.benefits-list i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
}

/* Green Initiatives */
.green-initiatives {
    padding: 80px 0;
    background-color: white;
}

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

.initiative-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.initiative-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Data Center Relocation */
.data-center-relocation {
    padding: 80px 0;
    background-color: var(--light-color);
}

.relocation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Services Page */
.services {
    padding: 80px 0;
}

.services1 {
    padding: 80px 0;
}

.services .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    margin: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service1-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-cta {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

/* Products Page */
.products {
    padding: 80px 0;
}

.products .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.product-card img {
    flex: 1;
    min-width: 300px;
    height: 300px;
    object-fit: cover;
}

.product-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.product-desc {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.product-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.product-cta {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

/* Contact Page */
.contact {
    padding: 80px 0;
}

.contact .container {
    display: flex;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.social-media {
    margin-top: 30px;
}

.social-media h3 {
    margin-bottom: 15px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form h3 {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.map {
    width: 100%;
    height: 450px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #d1d5db;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

/* Responsive styles in responsive.css */


/* Services Page Specific Styles */
.services-hero {
    position: relative;
    height: 50vh;
    background: url('../images/servicebg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.services-hero p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.services-intro {
    padding: 60px 0;
    text-align: center;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.services-main {
    padding: 40px 0;
}

.service-category {
    display: flex;
    align-items: center;
    margin: 60px 0;
    gap: 50px;
}

.service-category.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-content h2 i {
    font-size: 1.8rem;
}

.service-content ul {
    margin: 20px 0;
    list-style: none;
}

.service-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-benefits {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.service-cta {
    background: linear-gradient(rgba(0, 131, 193, 0.9), rgba(0, 131, 193, 0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

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

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .service-category, 
    .service-category.reverse {
        flex-direction: column;
    }
    
    .service-image, 
    .service-content {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .service-content h2 {
        font-size: 1.5rem;
    }
}


/* Products Page Specific Styles */
.products-hero {
    position: relative;
    height: 50vh;
    background: url('../images/productbg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.products-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.products-hero p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.products-intro {
    padding: 60px 0;
    text-align: center;
}

.product-categories {
    padding: 60px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: relative;
    height: 250px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 131, 193, 0.9), transparent);
    padding: 20px;
    color: white;
}

.category-overlay h3 {
    margin: 0;
    font-size: 1.5rem;
}

.category-content {
    padding: 25px;
    background: white;
}

.category-content ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.category-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.category-content ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.brands-section {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.brands-grid img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.products-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/products-cta-bg.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.products-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .brands-grid {
        gap: 20px;
    }
    
    .brands-grid img {
        height: 40px;
    }
}


/* Refurbished Page Styles */
.refurbished-hero {
    position: relative;
    height: 60vh;
    background: url('../images/refurbishedbg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.refurbished-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.refurbished-hero p {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.refurbished-intro {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.server-catalogue {
    padding: 80px 0;
}

.server-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: #eee;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.server-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.server-image {
    position: relative;
    height: 200px;
}

.server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.server-info {
    padding: 20px;
}

.server-specs {
    margin: 15px 0;
}

.server-specs p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-specs i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.server-price {
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 15px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.savings {
    display: inline-block;
    background: #f0f7ff;
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.refurbished-process {
    background-color: var(--light-color);
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.refurbished-cta {
    background: linear-gradient(rgba(0, 131, 193, 0.9), rgba(0, 131, 193, 0.9)), url('../images/server-rack-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .refurbished-hero h1 {
        font-size: 2rem;
    }
    
    .server-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}



/* Free Printer Program Page Styles */
.fpp-hero {
    position: relative;
    height: 60vh;
    background: url('../images/fppbg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.fpp-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.fpp-hero p {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.fpp-intro {
    padding: 80px 0;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-image {
    margin-top: 40px;
}

.intro-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fpp-benefits {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.fpp-features {
    padding: 80px 0;
}

.features-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.fpp-how-it-works {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.step-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: -40px auto 20px;
    position: relative;
    z-index: 1;
}

.fpp-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 131, 193, 0.9), rgba(0, 131, 193, 0.9)), url('../images/fpp-pattern-bg.jpg');
    background-size: cover;
    color: white;
}

.fpp-cta .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-content {
    flex: 1;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.fpp-faq {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    margin: 0;
}

.faq-item h3 i {
    transition: transform 0.3s ease;
}

.faq-item.active h3 i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

@media (max-width: 992px) {
    .fpp-cta .container {
        flex-direction: column;
    }
    
    .cta-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .fpp-hero h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}



.form-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.form-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}