/* Navigation Bar Styles */
.arch-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

/* Brand/Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #0a2463;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0b3aa7;
    letter-spacing: -0.5px;
}

.company-name span {
    color: #3e92cc;
    font-weight: 600;
}

/* Navigation Items */
.nav-items {
    display: flex;
    gap: 1.8rem;
}

.nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
}

.link-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3e92cc, #0a2463);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: left center;
}

/* Active & Hover States */
.nav-link.active .link-text {
    color: #0a2463;
    font-weight: 700;
}

.nav-link.active .link-underline {
    width: 100%;
}

.nav-link:hover .link-text {
    color: #0a2463;
    transform: translateY(-2px);
}

.nav-link:hover .link-underline {
    width: 100%;
}

/* CTA Link Special Style */
.cta-link .link-text {
    background: linear-gradient(135deg, #3e92cc, #0a2463);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.cta-link .link-underline {
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    height: 3px;
}

/* Change this in your styles.css */
.nav-brand .company-name {
    color: #0a2463; /* Dark blue - or choose your preferred color */
    font-weight: 700;
}

.nav-brand .company-name span {
    color: #3e92cc; /* Light blue - for "Architects" */
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-line {
    width: 24px;
    height: 2px;
    background: #0a2463;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Shrink Effect on Scroll */
.arch-navbar.shrink {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.arch-navbar.shrink .nav-container {
    padding: 0.5rem 2rem;
}

.arch-navbar.shrink .company-name {
    font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }

    .nav-items.active {
        right: 0;
    }

    .nav-link {
        padding: 0.8rem 0;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .menu-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-link {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }
.nav-link:nth-child(5) { animation-delay: 0.5s; }

/* hero section */
/* Hero Section Styles */
.arch-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background-color: #f8fafc;
    padding-top: 80px; /* Space for fixed navbar */
}

/* Grid Background */
.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: rgba(10, 36, 99, 0.05);
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
}

.grid-line.vertical:nth-child(1) {
    left: 25%;
}

.grid-line.vertical:nth-child(2) {
    left: 75%;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-line.horizontal:nth-child(3) {
    top: 33%;
}

.grid-line.horizontal:nth-child(4) {
    top: 66%;
}

/* Perspective Lines */
.perspective-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.perspective-lines .line {
    position: absolute;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(10, 36, 99, 0.2), 
        transparent);
    transform-origin: top center;
}

.perspective-lines .line:nth-child(1) {
    left: 15%;
    transform: rotate(15deg);
}

.perspective-lines .line:nth-child(2) {
    left: 50%;
    transform: rotate(0deg);
}

.perspective-lines .line:nth-child(3) {
    left: 85%;
    transform: rotate(-15deg);
}

/* Content Container */
.hero-container {
    display: flex;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 4rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 80%;
    min-height: 600px;
    animation: fadeIn 1s ease forwards;
}

/* Blueprint Badge */
.blueprint-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(10, 36, 99, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.blueprint-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0a2463;
    letter-spacing: 1px;
}

.blueprint-dots {
    display: flex;
    gap: 0.4rem;
}

.blueprint-dots .dot {
    width: 6px;
    height: 6px;
    background: #3e92cc;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.blueprint-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.blueprint-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Typography */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    color: #0a2463;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3e92cc;
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.hero-title.visible .title-line::after {
    transform: translateX(0);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Call to Action */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    color: white;
    box-shadow: 0 10px 20px rgba(10, 36, 99, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #0a2463;
    border: 2px solid rgba(10, 36, 99, 0.2);
}

.cta-secondary:hover {
    border-color: #0a2463;
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff595e;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

/* Stats Counter */
.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3D Model Viewer */
.model-viewer {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 99, 0.03);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.1);
    border: 1px solid rgba(10, 36, 99, 0.1);
}

.loading-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.loader {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.loader-square {
    width: 12px;
    height: 12px;
    background: #0a2463;
    animation: loaderBounce 1.5s infinite ease-in-out;
}

.loader-square:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-square:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-overlay p {
    font-family: 'Montserrat', sans-serif;
    color: #0a2463;
    font-size: 0.9rem;
}

.model-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.8rem;
    z-index: 5;
}

.control-btn {
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #0a2463;
}

.control-btn:hover svg {
    stroke: white;
}

.control-btn svg {
    width: 20px;
    height: 20px;
    stroke: #0a2463;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(10, 36, 99, 0.5);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #0a2463;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.scroll-indicator p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #4a5568;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes loaderBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollWheel {
    0% { 
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% { 
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        width: 100%;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .title-line::after {
        display: none;
    }
}

/* About Section Styles */
.about-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background-color: #f8fafc;
}

/* Futuristic Background Elements */
.arch-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.arch-grid-overlay .grid-line {
    position: absolute;
    background: rgba(10, 36, 99, 0.03);
}

.arch-grid-overlay .grid-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 20%;
}

.arch-grid-overlay .grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.arch-grid-overlay .grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    right: 20%;
}

.molecular-structure {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.molecule {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(62, 146, 204, 0.1);
    border: 2px solid rgba(62, 146, 204, 0.5);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.molecule:nth-child(1) {
    top: 30%;
    left: 15%;
}

.molecule:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 0.5s;
}

.bond {
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(62, 146, 204, 0.3), 
        transparent);
    top: 45%;
    left: 20%;
    transform: rotate(15deg);
}

/* Main Content Layout */
.about-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.about-visual {
    flex: 1;
    position: relative;
}

.about-content {
    flex: 1.5;
}

/* Blueprint Profile Card */
.blueprint-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.1);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blueprint-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(10, 36, 99, 0.15);
}

.blueprint-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blueprint-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blueprint-card:hover .blueprint-image img {
    transform: scale(1.05);
}

.blueprint-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(10, 36, 99, 0.7));
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blueprint-card:hover .blueprint-overlay {
    opacity: 1;
}

.blueprint-details {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.blueprint-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.blueprint-details p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.signature {
    width: 120px;
    margin: 0 auto;
    opacity: 0.9;
    
}

/* Tech Badge */
.tech-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    color: white;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(10, 36, 99, 0.2);
    z-index: 3;
    transform: rotate(0deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tech-badge:hover {
    transform: rotate(5deg) scale(1.05);
}

.badge-icon {
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

.badge-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.badge-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Tab System */
.about-tabs {
    margin: 3rem 0;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #3e92cc;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tab-btn.active {
    background: rgba(62, 146, 204, 0.1);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e92cc;
}

.tab-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0a2463;
}

.tab-btn.active .tab-label {
    color: #3e92cc;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

/* Philosophy List */
.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.philosophy-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.list-icon {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.hexagon {
    width: 100%;
    height: 100%;
    background: rgba(62, 146, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.philosophy-list li:hover .hexagon {
    background: #3e92cc;
    transform: rotate(10deg);
}

.philosophy-list li:hover .hexagon i {
    color: white;
}

.hexagon i {
    color: #3e92cc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.list-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.list-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Timeline */
.timeline-container {
    margin-top: 4rem;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(62, 146, 204, 0.5), 
        transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-date {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #3e92cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0a2463;
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.1);
}

.timeline-dot {
    position: absolute;
    left: -38px;
    top: 15px;
    width: 12px;
    height: 12px;
    background: #3e92cc;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(10, 36, 99, 0.1);
}

.timeline-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Floating Tech Elements */
.floating-tech {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(62, 146, 204, 0.3);
    animation: rotate 20s linear infinite;
}

.tech-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
}

.tech-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 15%;
    animation-direction: reverse;
}

.tech-triangle {
    position: absolute;
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border: 1px dashed rgba(62, 146, 204, 0.3);
    top: 60%;
    right: 20%;
    animation: pulse 4s infinite ease-in-out;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }
    
    .tech-badge {
        top: -15px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        left: -45px;
    }
    
    .timeline-dot {
        left: -33px;
    }
}

/* Projects Section Styles */
.projects-section {
    position: relative;
    padding: 8rem 2rem;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Dynamic Grid Background */
.dynamic-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.dynamic-grid .grid-line {
    position: absolute;
    background: rgba(10, 36, 99, 0.03);
}

.dynamic-grid .grid-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 15%;
}

.dynamic-grid .grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dynamic-grid .grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    right: 15%;
}

.floating-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(62, 146, 204, 0.1);
    border: 1px solid rgba(62, 146, 204, 0.3);
    animation: float 6s infinite ease-in-out;
}

.floating-node:nth-child(4) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 25%;
}

.floating-node:nth-child(5) {
    width: 30px;
    height: 30px;
    bottom: 15%;
    right: 20%;
    animation-delay: 0.5s;
}

/* Section Header */
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #3e92cc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.label-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(62, 146, 204, 0.5);
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0a2463;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Filter System */
.project-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(10, 36, 99, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-btn.active {
    background: rgba(10, 36, 99, 0.05);
    border-color: rgba(10, 36, 99, 0.2);
    color: #0a2463;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.1);
}

.filter-btn:hover:not(.active) {
    border-color: rgba(10, 36, 99, 0.3);
    color: #0a2463;
}

.filter-icon {
    font-size: 0.9rem;
}

.filter-search {
    position: relative;
    min-width: 250px;
}

.search-container {
    position: relative;
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4a5568;
    font-size: 0.9rem;
}

#project-search {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid rgba(10, 36, 99, 0.1);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

#project-search:focus {
    outline: none;
    border-color: #3e92cc;
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.2);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.15);
}

.project-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 36, 99, 0.3), 
        transparent);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.view-btn:hover {
    background: #0a2463;
    transform: scale(1.1);
}

.view-btn:hover i {
    color: white;
}

.view-btn i {
    color: #0a2463;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #0a2463;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-3d {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(10, 36, 99, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.project-3d:hover {
    background: #0a2463;
    transform: translateY(-3px);
}

.project-3d i {
    font-size: 0.9rem;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.project-location i {
    color: #3e92cc;
    font-size: 0.9rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tag {
    background: rgba(62, 146, 204, 0.1);
    color: #0a2463;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 99, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.project-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.project-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #0a2463;
    transform: rotate(90deg);
}

.modal-close:hover i {
    color: white;
}

.modal-close i {
    color: #0a2463;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modal-gallery {
    flex: 1.5;
    padding: 2rem;
}

.main-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.8rem;
    padding: 1rem 0;
    overflow-x: auto;
}

.thumbnail {
    min-width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #3e92cc;
    transform: translateY(-3px);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    flex: 1;
    padding: 3rem 2rem;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(5px);
}

#modal-project-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #0a2463;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #4a5568;
}

.project-meta span i {
    color: #3e92cc;
    font-size: 0.9rem;
}

#modal-project-description {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.project-specs {
    margin-bottom: 2rem;
}

.project-specs h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0a2463;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.project-specs h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #3e92cc;
    border-radius: 50%;
}

.project-specs ul {
    list-style: none;
    padding-left: 1.5rem;
}

.project-specs li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    color: #4a5568;
    line-height: 1.6;
}

.project-specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: rgba(62, 146, 204, 0.5);
    border-radius: 50%;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border: 1px solid rgba(10, 36, 99, 0.1);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0a2463;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #0a2463;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.1);
}

.action-btn:hover i {
    color: white;
}

.action-btn i {
    color: #3e92cc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Load More Button */
.view-more {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.load-more-btn {
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(10, 36, 99, 0.2);
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.3);
}

.load-more-btn.loading {
    pointer-events: none;
}

.loading-dots {
    display: flex;
    gap: 0.4rem;
}

.loading-dots .dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modal-content {
        flex-direction: column;
        max-height: 95vh;
    }
    
    .modal-gallery {
        padding: 1.5rem;
    }
    
    .main-image {
        height: 400px;
    }
    
    .modal-details {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .project-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .filter-search {
        width: 100%;
    }
    
    .modal-gallery {
        padding: 1rem;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 6rem 1rem;
    }
    
    .project-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .modal-content {
        padding: 0.5rem;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 30px;
        height: 30px;
    }
    
    .main-image {
        height: 200px;
    }
}

/* Services Section Styles */
.services-section {
    position: relative;
    padding: 8rem 2rem;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Holographic Grid Background */
.holographic-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.holographic-grid .grid-line {
    position: absolute;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(62, 146, 204, 0.05), 
        transparent);
}

.holographic-grid .grid-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 15%;
}

.holographic-grid .grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.holographic-grid .grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    right: 15%;
}

.floating-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(62, 146, 204, 0.05);
    border: 1px solid rgba(62, 146, 204, 0.1);
    animation: float 8s infinite ease-in-out;
}

.floating-node:nth-child(4) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 25%;
}

.floating-node:nth-child(5) {
    width: 30px;
    height: 30px;
    bottom: 15%;
    right: 20%;
    animation-delay: 0.5s;
}

/* Tech Orbs */
.tech-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: 0;
}

.tech-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: #3e92cc;
    top: -100px;
    left: -100px;
}

.tech-orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: #0a2463;
    bottom: -150px;
    right: -150px;
}

/* Service Matrix */
.service-matrix {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.1);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.category-header:hover {
    background: rgba(10, 36, 99, 0.03);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: rgba(62, 146, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.category-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0a2463;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0a2463;
    margin-right: auto;
}

.expand-toggle {
    width: 24px;
    height: 24px;
    position: relative;
}

.plus, .minus {
    position: absolute;
    background: #0a2463;
    transition: all 0.3s ease;
}

.plus {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.minus {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.service-category.active .minus {
    opacity: 0;
}

.service-list {
    display: none;
    padding: 1rem;
    background: white;
}

.service-category.active .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    animation: fadeIn 0.5s ease forwards;
}

.service-item {
    perspective: 1000px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.15);
}

.service-visual {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.03), rgba(62, 146, 204, 0.05));
    overflow: hidden;
}

.hexagon {
    width: 80px;
    height: 80px;
    background: rgba(62, 146, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card:hover .hexagon {
    background: #3e92cc;
    transform: rotate(15deg) scale(1.1);
}

.hexagon i {
    color: #3e92cc;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.service-card:hover .hexagon i {
    color: white;
}

.hover-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .hover-effect {
    opacity: 1;
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.service-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0a2463;
    margin-bottom: 0.8rem;
}

.service-content p {
    font-family: 'Montserrat', sans-serif;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #4a5568;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #3e92cc;
    border-radius: 50%;
}

/* CTA Section */
.service-cta {
    max-width: 1400px;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.service-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.cta-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #0a2463;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
    stroke: #0a2463;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-category.active .service-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-cta {
        padding: 2rem;
        text-align: center;
        justify-content: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .service-category.active .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 6rem 1rem;
    }
    
    .category-header {
        padding: 1.2rem;
    }
    
    .category-icon {
        width: 36px;
        height: 36px;
        margin-right: 1rem;
    }
    
    .category-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
    
    .service-cta {
        padding: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
}
/* Add these to your existing CSS */
.service-list {
    display: none;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.service-category.active .service-list {
    display: grid;
    height: auto;
    opacity: 1;
}

/* Improve the toggle animation */
.expand-toggle {
    transition: transform 0.3s ease;
}

.service-category.active .expand-toggle {
    transform: rotate(45deg);
}

.plus, .minus {
    transition: all 0.3s ease;
}

.service-category.active .minus {
    opacity: 1;
    transform: translateX(-50%) rotate(90deg);
}

.service-category.active .plus {
    transform: translateY(-50%) rotate(90deg);
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    padding: 8rem 2rem;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Holographic Grid Background */
.holographic-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.holographic-grid .grid-line {
    position: absolute;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(62, 146, 204, 0.05), 
        transparent);
}

.holographic-grid .grid-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 15%;
}

.holographic-grid .grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.holographic-grid .grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    right: 15%;
}

.floating-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(62, 146, 204, 0.05);
    border: 1px solid rgba(62, 146, 204, 0.1);
    animation: float 8s infinite ease-in-out;
}

.floating-node:nth-child(4) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 25%;
}

.floating-node:nth-child(5) {
    width: 30px;
    height: 30px;
    bottom: 15%;
    right: 20%;
    animation-delay: 0.5s;
}

/* Floating Tech Elements */
.tech-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: 0;
}

.tech-sphere:nth-child(1) {
    width: 300px;
    height: 300px;
    background: #3e92cc;
    top: -100px;
    left: -100px;
}

.tech-sphere:nth-child(2) {
    width: 400px;
    height: 400px;
    background: #0a2463;
    bottom: -150px;
    right: -150px;
}

.tech-connection {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(62, 146, 204, 0.2), 
        transparent);
    top: 50%;
    left: 0;
    transform: rotate(-5deg);
    z-index: 0;
}

/* Contact Container Layout */
.contact-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-panel {
    flex: 1.5;
}

/* Holographic Card Style */
.holographic-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.1);
    border: 1px solid rgba(10, 36, 99, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.holographic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(62, 146, 204, 0.03) 0%, 
        rgba(255, 255, 255, 0) 50%, 
        rgba(10, 36, 99, 0.03) 100%);
    z-index: -1;
}

.holographic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.15);
    border-color: rgba(62, 146, 204, 0.3);
}

/* Contact Information Styles */
.info-card h3, .office-hours h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0a2463;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-card h3::after, .office-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3e92cc, #0a2463);
    border-radius: 3px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(62, 146, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: #3e92cc;
    transform: rotate(15deg);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0a2463;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon svg {
    stroke: white;
}

.info-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0a2463;
    margin-bottom: 0.3rem;
}

.info-content a, .info-content p {
    font-family: 'Montserrat', sans-serif;
    color: #4a5568;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #3e92cc;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff595e;
    border-radius: 50%;
    display: inline-block;
    margin-left: 0.5rem;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #3e92cc;
    text-decoration: none;
    position: relative;
}

.map-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.map-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Office Hours Styles */
.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(10, 36, 99, 0.1);
}

.office-hours li:last-child {
    border-bottom: none;
}

.office-hours span {
    font-family: 'Montserrat', sans-serif;
    color: #4a5568;
}

.timezone-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #4a5568;
}

.timezone-note i {
    color: #3e92cc;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0a2463;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(10, 36, 99, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2463;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0a2463;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Styles */
.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-family: 'Montserrat', sans-serif;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.form-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.progress-step {
    height: 4px;
    background: rgba(10, 36, 99, 0.1);
    flex-grow: 1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: linear-gradient(90deg, #3e92cc, #0a2463);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(10, 36, 99, 0.2);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #0a2463;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3e92cc;
    box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.2);
}

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3e92cc, #0a2463);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.form-group input:focus ~ .input-decoration,
.form-group select:focus ~ .input-decoration,
.form-group textarea:focus ~ .input-decoration {
    transform: scaleX(1);
}

/* File Upload Styling */
.file-upload {
    position: relative;
    border: 2px dashed rgba(10, 36, 99, 0.2);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: #3e92cc;
    background: rgba(62, 146, 204, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.file-upload i {
    font-size: 2rem;
    color: #3e92cc;
}

.file-upload span {
    font-family: 'Montserrat', sans-serif;
    color: #0a2463;
}

.file-upload small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #4a5568;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    appearance: none;
    border: 1px solid rgba(10, 36, 99, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background: #3e92cc;
    border-color: #3e92cc;
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
}

.checkbox-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0;
    cursor: pointer;
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.prev-step, .next-step, .submit-form {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prev-step {
    background: transparent;
    border: 1px solid rgba(10, 36, 99, 0.2);
    color: #0a2463;
}

.prev-step:hover {
    border-color: #0a2463;
}

.next-step, .submit-form {
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    color: white;
    border: none;
}

.next-step:hover, .submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
}

.submit-loader {
    display: none;
    gap: 0.3rem;
}

.submit-form.loading span {
    display: none;
}

.submit-form.loading .submit-loader {
    display: flex;
}

.loader-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Form Confirmation */
.form-confirmation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.form-confirmation.active {
    opacity: 1;
    pointer-events: all;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: rgba(62, 146, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.confirmation-icon svg {
    width: 40px;
    height: 40px;
    stroke: #3e92cc;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-confirmation h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.form-confirmation p {
    font-family: 'Montserrat', sans-serif;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.new-request {
    background: rgba(62, 146, 204, 0.1);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0a2463;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.new-request:hover {
    background: rgba(62, 146, 204, 0.2);
}

/* Map Overlay */
.map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 99, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.map-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.map-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.map-overlay.active .map-container {
    transform: scale(1);
}

.close-map {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close-map:hover {
    background: #0a2463;
    transform: rotate(90deg);
}

.close-map:hover i {
    color: white;
}

.close-map i {
    color: #0a2463;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(248, 250, 252, 0.5);
}

.map-placeholder h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0a2463;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    font-family: 'Montserrat', sans-serif;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.map-marker {
    width: 60px;
    height: 60px;
    background: #ff595e;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
}

.map-marker::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 89, 94, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite 0.5s;
}

.map-marker i {
    color: white;
    font-size: 1.2rem;
    transform: rotate(45deg);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-panel {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-card, .office-hours {
        flex: 1;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 1rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .prev-step, .next-step, .submit-form {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .map-container {
        width: 95%;
        height: 70vh;
    }
}

/* Footer Styles */
.arch-footer {
    position: relative;
    background-color: #0a2463;
    color: white;
    padding: 5rem 2rem 3rem;
    overflow: hidden;
}

/* Grid Background */
.footer-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.footer-grid .grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
}

.footer-grid .grid-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 20%;
}

.footer-grid .grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.footer-grid .grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    right: 20%;
}

.floating-node {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 8s infinite ease-in-out;
}

.floating-node:nth-child(4) {
    width: 15px;
    height: 15px;
    top: 30%;
    left: 25%;
}

.floating-node:nth-child(5) {
    width: 25px;
    height: 25px;
    bottom: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

/* Tech Elements */
.tech-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(62, 146, 204, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(30px);
}

.tech-triangle {
    position: absolute;
    width: 150px;
    height: 150px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    bottom: -30px;
    left: 10%;
    animation: rotate 20s linear infinite;
}

/* Footer Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    stroke: #3e92cc;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
   
}

.company-name span {
    color: #3e92cc;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Newsletter Form */
.footer-newsletter h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px #3e92cc;
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: #3e92cc;
    color: white;
    border: none;
    padding: 0 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #2e82bc;
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3e92cc;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li a {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3e92cc;
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: white;
}

.footer-links li a:hover::after {
    width: 100%;
}

/* Contact Info */
.footer-contact {
    font-style: normal;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #3e92cc;
    margin-top: 0.2rem;
}

.contact-item span, .contact-item a {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

/* Social Icons */
.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3e92cc;
    transform: translateY(-3px);
}

/* Footer Secondary */
.footer-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-legal p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Professional Badges */
.footer-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #3e92cc;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0a2463;
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-secondary {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-badges {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .legal-links {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .footer-badges {
        gap: 1rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* nav bar mobile responsive */
/* Mobile Menu Active States */
.nav-items.active {
    right: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Ensure nav items are hidden by default on mobile */
@media (max-width: 992px) {
    .nav-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }
    
    .nav-link {
        padding: 0.8rem 0;
        width: 100%;
    }
}


/* Global Mobile Typography Adjustments */

/* Mobile Typography Adjustments (<= 768px) */
@media (max-width: 768px) {
    /* Base font size reduction */
    html {
      font-size: 14px;
    }
  
    /* Navigation */
    .company-name {
      font-size: 1.2rem;
    }
    
    .nav-link .link-text {
      font-size: 0.85rem;
    }
  
    /* Hero Section */
    .hero-title {
      font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .cta-primary, .cta-secondary {
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .stat-label {
      font-size: 0.8rem;
    }
  
    /* About Section */
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .section-subtitle {
      font-size: 1rem;
    }
    
    .about-tabs .tab-label {
      font-size: 0.9rem;
    }
    
    .list-content h4 {
      font-size: 1.1rem;
    }
    
    .list-content p {
      font-size: 0.9rem;
    }
  
    /* Projects Section */
    .project-info h3 {
      font-size: 1.1rem;
    }
    
    .project-location {
      font-size: 0.8rem;
    }
    
    .project-tag {
      font-size: 0.7rem;
    }
  
    /* Services Section */
    .service-content h4 {
      font-size: 1.1rem;
    }
    
    .service-content p {
      font-size: 0.9rem;
    }
    
    .service-features li {
      font-size: 0.85rem;
    }
  
    /* Contact Section */
    .info-card h3, .office-hours h3 {
      font-size: 1.3rem;
    }
    
    .info-content h4 {
      font-size: 1rem;
    }
    
    .info-content a, .info-content p {
      font-size: 0.9rem;
    }
    
    .form-header h3 {
      font-size: 1.5rem;
    }
  
    /* Footer */
    .company-name {
      font-size: 1.3rem;
    }
    
    .footer-tagline {
      font-size: 0.9rem;
    }
    
    .footer-heading {
      font-size: 1rem;
    }
    
    .footer-links li a {
      font-size: 0.9rem;
    }
    
    .contact-item span, .contact-item a {
      font-size: 0.9rem;
    }
  }
  
  /* Smaller Mobile Devices (<= 480px) */
  @media (max-width: 480px) {
    html {
      font-size: 13px;
    }
    
    /* Adjust hero section further */
    .hero-title {
      font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 1rem;
    }
    
    /* Make project cards more compact */
    .projects-grid {
      grid-template-columns: 1fr;
    }
    
    /* Stack CTAs vertically */
    .hero-cta {
      flex-direction: column;
    }
    
    /* Reduce form padding */
    .holographic-card {
      padding: 1.5rem;
    }
  }





  /* Responsive Future of Spaces Section */



  /* About Section - Future of Spaces Responsiveness */
@media (max-width: 768px) {
    .about-tabs {
      margin: 2rem 0;
    }
    
    .tab-buttons {
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    
    .tab-btn {
      width: 100%;
      padding: 1rem;
      border-radius: 8px;
      background: rgba(62, 146, 204, 0.05);
      border: 1px solid rgba(62, 146, 204, 0.1);
      text-align: left;
      justify-content: flex-start;
    }
    
    .tab-btn::after {
      display: none;
    }
    
    .tab-btn.active {
      background: rgba(62, 146, 204, 0.1);
      border-color: #3e92cc;
    }
    
    .tab-content {
      display: block;
      height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .tab-content.active {
      height: auto;
      opacity: 1;
      padding: 1rem 0;
    }
    
    .philosophy-list li {
      flex-direction: column;
      gap: 1rem;
    }
    
    .list-icon {
      margin-bottom: 0.5rem;
    }
  }




  /* Static Content Layout for Mobile Screens
 */



 /* About Section - Static Content for Mobile */
@media (max-width: 768px) {
    .about-tabs {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin: 2rem 0;
    }
    
    .tab-buttons {
      display: none; /* Hide the tab buttons completely */
    }
    
    .tab-content {
      display: block !important; /* Force show all content */
      opacity: 1 !important;
      height: auto !important;
      padding: 0;
      animation: none !important;
    }
    
    /* Add section headers for each content block */
    .tab-content::before {
      content: attr(data-title);
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      color: #0a2463;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #3e92cc;
    }
    
    /* Style the philosophy list items */
    .philosophy-list li {
      margin-bottom: 1.5rem;
    }
    
    .list-icon {
      margin-bottom: 0.8rem;
    }
  }





  /* Optimized Contact Channels Layout for Mobile */




  /* Mobile Contact Channels Layout */
@media (max-width: 768px) {
    /* Contact Info Items */
    .info-item {
      flex-direction: row; /* Keep icon and content in one line */
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }
  
    /* Make the icon container smaller */
    .info-icon {
      width: 36px;
      height: 36px;
      min-width: 36px; /* Prevent shrinking */
    }
  
    /* Adjust icon size */
    .info-icon svg {
      width: 18px;
      height: 18px;
    }
  
    /* Reduce font sizes */
    .info-content h4 {
      font-size: 0.95rem;
      margin-bottom: 0.2rem;
    }
  
    .info-content a, 
    .info-content p {
      font-size: 0.9rem;
    }
  
    /* Make the pulse dot smaller */
    .pulse-dot {
      width: 6px;
      height: 6px;
    }
  
    /* Stack contact items vertically */
    .contact-info-panel {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  
    /* Reduce card padding */
    .holographic-card {
      padding: 1.5rem;
    }
  
    /* Adjust office hours layout */
    .office-hours li {
      flex-direction: column;
      gap: 0.2rem;
      padding: 0.6rem 0;
    }
  
    /* Smaller social icons */
    .social-icon {
      width: 36px;
      height: 36px;
      font-size: 0.9rem;
    }
  }
  
  /* Extra small mobile devices */
  @media (max-width: 480px) {
    .info-item {
      gap: 0.8rem;
    }
  
    .info-icon {
      width: 32px;
      height: 32px;
    }
  
    .info-content h4 {
      font-size: 0.9rem;
    }
  
    .info-content a, 
    .info-content p {
      font-size: 0.85rem;
    }
  
    /* Make map link more compact */
    .map-link {
      font-size: 0.85rem;
    }
  }



  /* Centering Sustainability Icons and Headings on Mobile */





  /* Center-align feature items on mobile */
@media (max-width: 768px) {
    /* Philosophy/Approach/Technology items */
    .philosophy-list {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
      margin: 2rem 0;
    }
  
    .philosophy-list li {
      flex-direction: column;
      align-items: center;
      max-width: 300px;
      width: 100%;
    }
  
    .list-icon {
      margin-bottom: 1rem;
    }
  
    .list-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .list-content h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      text-align: center;
    }
  
    .list-content p {
      font-size: 0.9rem;
      text-align: center;
      line-height: 1.5;
    }
  
    /* Hexagon icon styling */
    .hexagon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(62, 146, 204, 0.1);
    }
  
    .hexagon i {
      font-size: 1.2rem;
      color: #3e92cc;
    }
  }
  
  /* Adjustments for very small screens */
  @media (max-width: 480px) {
    .philosophy-list {
      gap: 1.5rem;
    }
  
    .hexagon {
      width: 50px;
      height: 50px;
    }
  
    .list-content h4 {
      font-size: 1rem;
    }
  
    .list-content p {
      font-size: 0.85rem;
    }
  }


  .hexagon {
    transition: all 0.3s ease;
  }
  
  .philosophy-list li:hover .hexagon {
    transform: scale(1.1);
    background: #3e92cc;
  }
  
  .philosophy-list li:hover .hexagon i {
    color: white;
  }


  @media (max-width: 768px) {
    .philosophy-list li {
      position: relative;
      padding: 1.5rem;
    }
    
    .philosophy-list li::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 2px;
      background: rgba(62, 146, 204, 0.3);
    }
    
    .philosophy-list li:last-child::after {
      display: none;
    }
  }





  /* Centered "Our Evolution" Timeline for Mobile Screens */




  /* Mobile Timeline Adjustments */
@media (max-width: 768px) {
    .timeline-container {
      text-align: center;
      padding: 0 1rem;
    }
    
    .timeline {
      padding-left: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .timeline::before {
      display: none; /* Hide the vertical timeline line */
    }
    
    .timeline-item {
      width: 100%;
      max-width: 300px;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(10, 36, 99, 0.1);
      position: relative;
      opacity: 1;
      transform: none;
    }
    
    .timeline-date {
      position: static;
      width: 80px;
      height: 80px;
      margin: 0 auto 1rem;
      background: #3e92cc;
      color: white;
      font-size: 1.1rem;
      font-weight: 700;
      border: none;
    }
    
    .timeline-dot {
      display: none; /* Hide the small dot */
    }
    
    .timeline-content {
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    
    .timeline-content h4 {
      font-size: 1.2rem;
      color: #0a2463;
      margin-bottom: 0.5rem;
    }
    
    .timeline-content p {
      font-size: 0.9rem;
      color: #4a5568;
      line-height: 1.6;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 480px) {
    .timeline-item {
      padding: 1.2rem;
      max-width: 280px;
    }
    
    .timeline-date {
      width: 70px;
      height: 70px;
      font-size: 1rem;
    }
    
    .timeline-content h4 {
      font-size: 1.1rem;
    }
    
    .timeline-content p {
      font-size: 0.85rem;
    }
  }


  .timeline-item {
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 36, 99, 0.15);
  }

  @media (max-width: 768px) {
    .timeline-item:not(:last-child)::after {
      content: '';
      display: block;
      width: 30px;
      height: 30px;
      margin: 0 auto;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233e92cc"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat center;
      background-size: contain;
    }
  }