/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="colorfulGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0 0 L50 0 L50 50 L0 50 Z" fill="none" stroke="%23ff69b4" stroke-width="0.3" opacity="0.3"/><circle cx="25" cy="25" r="1.5" fill="%2300ffff" opacity="0.6"/><circle cx="25" cy="25" r="4" fill="none" stroke="%23ffd700" stroke-width="0.2" opacity="0.4"/><path d="M10 10 L40 40 M40 10 L10 40" stroke="%238a2be2" stroke-width="0.2" opacity="0.2"/></pattern></defs><rect width="200" height="200" fill="url(%23colorfulGrid)"/></svg>');
    opacity: 0.8;
    animation: colorfulPulse 8s ease-in-out infinite;
}

@keyframes colorfulPulse {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 0.6; }
    50% { opacity: 0.9; }
    75% { opacity: 0.5; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 105, 180, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="colorfulFlow" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ff69b4" opacity="0.8"><animate attributeName="opacity" values="0.8;1;0.8" dur="2s" repeatCount="indefinite"/></circle><circle cx="5" cy="5" r="0.3" fill="%2300ffff" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite"/></circle><circle cx="15" cy="15" r="0.4" fill="%23ffd700" opacity="0.7"><animate attributeName="opacity" values="0.7;1;0.7" dur="2.5s" repeatCount="indefinite"/></circle><path d="M0 10 L20 10" stroke="%23ff69b4" stroke-width="0.3" opacity="0.4"><animate attributeName="stroke-dasharray" values="0,20;20,0;0,20" dur="3s" repeatCount="indefinite"/></path></pattern></defs><rect width="100" height="100" fill="url(%23colorfulFlow)"/></svg>');
    animation: colorfulShimmer 10s ease-in-out infinite;
}

@keyframes colorfulShimmer {
    0%, 100% { transform: translateX(-100%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(90deg); }
    50% { transform: translateX(0%) rotate(180deg); }
    75% { transform: translateX(50%) rotate(270deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #60a5fa;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}


.security-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    animation: float 6s ease-in-out infinite;
}

.security-icon i {
    font-size: 4rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.services .section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact .section-title {
    color: #ffffff;
}

.contact .section-description {
    color: #cbd5e1;
}

.services .section-title {
    color: #ffffff;
}

.services .section-description {
    color: #e2e8f0;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 40px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 25%, #38ef7d 50%, #11998e 75%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="colorfulNodes" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23ff69b4" opacity="0.6"><animate attributeName="r" values="1.5;2.5;1.5" dur="4s" repeatCount="indefinite"/></circle><circle cx="15" cy="15" r="4" fill="none" stroke="%2300ffff" stroke-width="0.3" opacity="0.3"/><circle cx="15" cy="15" r="6" fill="none" stroke="%23ffd700" stroke-width="0.2" opacity="0.2"/><path d="M5 5 L25 25 M25 5 L5 25" stroke="%23ff69b4" stroke-width="0.2" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23colorfulNodes)"/></svg>');
    opacity: 0.8;
    animation: colorfulNodePulse 10s ease-in-out infinite;
}

@keyframes colorfulNodePulse {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 0.6; }
    50% { opacity: 0.9; }
    75% { opacity: 0.5; }
}

.services-cascade {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-row:nth-child(even) {
    transform: translateX(2rem);
}

.service-row:nth-child(odd) {
    transform: translateX(-2rem);
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: fit-content;
}

/* Unique color schemes for each service */
.service-card[data-service="network-security"] {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid #ff69b4;
}

.service-card[data-service="security-audits"] {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid #00ffff;
}

.service-card[data-service="compliance"] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid #ffd700;
}

.service-card[data-service="monitoring"] {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid #8a2be2;
}

.service-card[data-service="sdwan-sase"] {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid #ff1493;
}

.service-card[data-service="training"] {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid #00bfff;
}

.service-card[data-service="implementation"] {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-left: 4px solid #32cd32;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4, #00ffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

/* Colorful service icons */
.service-card[data-service="network-security"] .service-icon {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.service-card[data-service="security-audits"] .service-icon {
    background: linear-gradient(135deg, #00ffff, #00bfff);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

.service-card[data-service="compliance"] .service-icon {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.service-card[data-service="monitoring"] .service-icon {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.service-card[data-service="sdwan-sase"] .service-icon {
    background: linear-gradient(135deg, #ff1493, #dc143c);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.service-card[data-service="training"] .service-icon {
    background: linear-gradient(135deg, #00bfff, #1e90ff);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.service-card[data-service="implementation"] .service-icon {
    background: linear-gradient(135deg, #32cd32, #00ff7f);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3);
    background: rgba(255, 255, 255, 1);
}

.service-card[data-service="network-security"]:hover {
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
}

.service-card[data-service="security-audits"]:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.4);
}

.service-card[data-service="compliance"]:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.service-card[data-service="monitoring"]:hover {
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
}

.service-card[data-service="sdwan-sase"]:hover {
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.4);
}

.service-card[data-service="training"]:hover {
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.4);
}

.service-card[data-service="implementation"]:hover {
    box-shadow: 0 20px 40px rgba(50, 205, 50, 0.4);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    animation: slideDown 0.3s ease-out;
}

.service-details h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-details h5 {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.service-details li {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-details li::before {
    content: '▶';
    color: #00d4ff;
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 0.1rem;
}

.service-benefits {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(96, 165, 250, 0.05));
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
}

.service-benefits p {
    color: #1e293b;
    font-weight: 500;
    margin: 0;
}

.service-toggle {
    background: linear-gradient(135deg, #ff69b4, #00ffff);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.service-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.service-toggle i {
    transition: transform 0.3s ease;
}

.service-card.expanded .service-toggle i {
    transform: rotate(180deg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* About Section */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="colorfulLines" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M0 0 L60 0 L60 60 L0 60 Z" fill="none" stroke="%23ff69b4" stroke-width="0.5" opacity="0.3"/><path d="M30 0 L30 60 M0 30 L60 30" stroke="%2300ffff" stroke-width="0.3" opacity="0.2"/><circle cx="15" cy="15" r="1" fill="%23ffd700" opacity="0.4"/><circle cx="45" cy="45" r="1" fill="%238a2be2" opacity="0.3"/></pattern></defs><rect width="60" height="60" fill="url(%23colorfulLines)"/></svg>');
    opacity: 0.4;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-weight: 500;
}

.feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.vendor-expertise {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(96, 165, 250, 0.05));
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
}

.vendor-expertise h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.vendor-item {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.vendor-item strong {
    color: #60a5fa;
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat p {
    color: #e2e8f0;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="colorfulHexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,6 18,14 10,18 2,14 2,6" fill="none" stroke="%23ff69b4" stroke-width="0.5" opacity="0.3"/><circle cx="10" cy="10" r="0.5" fill="%2300ffff" opacity="0.4"/><circle cx="5" cy="5" r="0.3" fill="%23ffd700" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23colorfulHexagons)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid #60a5fa;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #60a5fa;
    width: 30px;
}

.contact-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #cbd5e1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Logo Styles */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.3));
}

.footer-logo-text h3 {
    color: #60a5fa;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-logo-text p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    .footer-logo-container {
        gap: 0.5rem;
    }
    
    .footer-logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.1rem;
    }
    
    .service-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-row:nth-child(even),
    .service-row:nth-child(odd) {
        transform: translateX(0);
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .vendor-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .vendor-expertise {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
