/* Redesigned CSS */
:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --accent: #3b82f6;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --white: #ffffff;
    --header-bg: #1e293b;
    --footer-bg: #0f172a;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: var(--header-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-nav {
    display: flex;
    align-items: center;
}

/* Logo Size Fix */
.logo {
    width: 100px;
    height: auto;
    max-width: 100%;
}

.nav_links {
    display: flex;
    list-style: none;
    margin-left: 2rem;
}

.nav_links li {
    margin: 0 1rem;
}

.nav_links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav_links a:hover {
    color: var(--accent);
}

.right-nav {
    display: flex;
    gap: 1rem;
}

/* Remove any underline from the anchor tags */
.cta {
    text-decoration: none;
}

.cta:focus {
    outline: none;
}

/* Ensure buttons inside anchors have no text decoration */
.cta button {
    text-decoration: none;
}

.button {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--gray);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none; /* Add this */
    outline: none; /* Add this */
}

.button:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent); /* Alternative focus style */
}

.button.primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.button:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Responsive Header */
.responsive-header {
    display: none;
    background-color: var(--header-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 900px) {
    header {
        display: none;
    }
    
    .responsive-header {
        display: block;
    }
    
    .responsive-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .fa-bars, .fa-times {
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .responsive-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--header-bg);
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
    }
    
    .show-links {
        padding: 0.75rem 1.5rem;
    }
    
    .show-links a {
        color: var(--white);
        text-decoration: none;
        display: block;
        padding: 0.5rem 0;
    }
    
    .show-links a:hover {
        color: var(--accent);
    }
    
    .show {
        display: block;
    }
    
    .hide {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--gray);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    max-width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-content p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--light);
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.product-content p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    justify-content: flex-end;
}

/* Brand Text Logos - Same layout as images */
.brand-text-logo {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

/* Individual brand styles matching original colors */
.brand-text-logo.cisco {
    background: linear-gradient(135deg, #1BA0D7 0%, #005073 100%);
    font-size: 1.8rem;
}

.brand-text-logo.forcepoint {
    background: linear-gradient(135deg, #00A4E4 0%, #005C93 100%);
    font-size: 1.6rem;
}

.brand-text-logo.juniper {
    background: linear-gradient(135deg, #00A4A6 0%, #007A7C 100%);
    font-size: 1.8rem;
}

.brand-text-logo.polycom {
    background: linear-gradient(135deg, #6CC04A 0%, #4A8C2D 100%);
    font-size: 2.2rem;
}

.brand-text-logo.dell {
    background: linear-gradient(135deg, #007DB8 0%, #005A87 100%);
    font-size: 1.7rem;
}

.brand-text-logo.fortinet {
    background: linear-gradient(135deg, #EE3124 0%, #CC2A1E 100%);
    font-size: 1.8rem;
}

.brand-text-logo.netapp {
    background: linear-gradient(135deg, #0067B3 0%, #004C87 100%);
    font-size: 1.9rem;
}

.brand-text-logo.veeam {
    background: linear-gradient(135deg, #00B2E3 0%, #0088B3 100%);
    font-size: 2rem;
}

/* Keep the original product card layout exactly the same */
.product-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--light);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.product-content p {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    justify-content: flex-end;
}

/* Hover effects for brand text */
.product-card:hover .brand-text-logo {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .brand-text-logo {
        font-size: 1.8rem;
    }
    
    .brand-text-logo.cisco,
    .brand-text-logo.juniper {
        font-size: 1.6rem;
    }
    
    .brand-text-logo.polycom {
        font-size: 2rem;
    }
    
    .brand-text-logo.forcepoint {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .brand-text-logo {
        font-size: 1.6rem;
        padding: 0.75rem;
    }
    
    .brand-text-logo.cisco,
    .brand-text-logo.juniper {
        font-size: 1.4rem;
    }
    
    .brand-text-logo.polycom {
        font-size: 1.8rem;
    }
    
    .brand-text-logo.forcepoint {
        font-size: 1.2rem;
    }
    
    .product-image {
        height: 180px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-text-logo {
        font-size: 1.4rem;
        padding: 0.5rem;
    }
    
    .brand-text-logo.cisco,
    .brand-text-logo.juniper {
        font-size: 1.2rem;
    }
    
    .brand-text-logo.polycom {
        font-size: 1.6rem;
    }
    
    .brand-text-logo.forcepoint {
        font-size: 1.1rem;
    }
    
    .product-image {
        height: 160px;
    }
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-info > p {
    color: var(--secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-text p, .contact-text a {
    color: var(--secondary);
    text-decoration: none;
    display: block;
}

.contact-text a:hover {
    color: var(--primary);
}

.map-container {
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray);
}

/* Preloader */
#preloader {
    background: #ffffff url(images/preloader.gif) no-repeat center center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 75px;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}