:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --text-color: #333;
    --white: #ffffff;
    --border-color: #eee;
    --background-light: #f8f9fa;
    --background-dark: #1a1a1a;
    --card-background-light: #ffffff;
    --card-background-dark: #2c2c2c;
    --text-light: #333333;
    --text-dark: #ffffff;
    --border-light: #e0e0e0;
    --border-dark: #444444;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --blue: #0066cc;
    --dark-blue: #004d99;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--background-light);
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    backdrop-filter: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--primary-color);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo i {
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--white);
}

.navbar.scrolled .logo i {
    color: var(--white);
}

.navbar-logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%; 
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%); 
}

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

.navbar.scrolled .nav-link {
    color: var(--white);
}

.navbar.scrolled .nav-link::after {
    background: var(--white);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle {
    color: var(--white);
}

.menu-toggle:hover {
    color: var(--primary-dark);
}

.hero {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 0;
}

.hero::after {
    content: none;
}

.hero-overlay {
    background: none;
    backdrop-filter: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 70px 60px;
    max-width: 700px;
    margin: 0 auto;
    background: none;
    color: var(--white);
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.05;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0,0,0,0.12);
    position: relative;
    display: inline-block;
}

.hero-text h1::after {
    content: '';
    display: block;
    width: 60%;
    height: 5px;
    margin: 18px auto 0 auto;
    border-radius: 3px;
    background: linear-gradient(90deg, #fff 0%, #2196f3 100%);
    animation: hero-underline 2.5s infinite alternate;
}

@keyframes hero-underline {
    0% { width: 40%; opacity: 0.7; }
    100% { width: 80%; opacity: 1; }
}

.hero-text p {
    font-size: 1.7rem;
    margin-bottom: 50px;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape-bar {
    position: absolute;
    top: 12vh;
    left: 7vw;
    transform: rotate(-12deg);
    animation: float-bar 8s ease-in-out infinite alternate;
}

.shape-hex {
    position: absolute;
    right: 10vw;
    top: 18vh;
    animation: float-hex 10s ease-in-out infinite alternate;
}

.shape-bar2 {
    position: absolute;
    left: 18vw;
    bottom: 14vh;
    transform: rotate(8deg);
    animation: float-bar2 9s ease-in-out infinite alternate;
}

.shape-tri {
    position: absolute;
    right: 16vw;
    bottom: 10vh;
    animation: float-tri 7s ease-in-out infinite alternate;
}

.shape-mesh {
    position: absolute;
    right: 10vw;
    top: 18vh;
    animation: float-mesh 10s ease-in-out infinite alternate;
}

@keyframes float-bar {
    0% { transform: translateY(0) rotate(-12deg); }
    100% { transform: translateY(-18px) rotate(-12deg); }
}

@keyframes float-hex {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.08) translateY(-20px); }
}

@keyframes float-bar2 {
    0% { transform: translateY(0) rotate(8deg); }
    100% { transform: translateY(16px) rotate(8deg); }
}

@keyframes float-tri {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.12) translateY(-12px); }
}

@keyframes float-mesh {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.08) translateY(-20px); }
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    border: 1.5px solid var(--primary-color);
}

.cta-button.primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2.5px solid #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

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

.feature span {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
}

.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--background-light);
}

.section h2 {
    color: #1a3557;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
}

.about-content {
    display: grid;
    gap: 2rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: var(--card-background-light);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-card p, .about-card ul {
    font-size: 1.35rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.35rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.expertise-list li i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 1.8rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-background-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-card li:last-child {
    border-bottom: none;
}

.plugin-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: none;
    box-shadow: none;
}

.plugin-info {
    max-width: 1000px;
    margin: 0 auto;
}

.plugin-info h3 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.plugin-info p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-align: left;
    color: var(--text-color);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    justify-content: flex-start;
}

.feature-card h4 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-color);
}

.feature-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.feature-card a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.feature-card a:hover {
    color: var(--primary-dark);
}

.feature-card a:hover::after {
    width: 100%;
}

.navbar.scrolled ~ main .feature-card a,
.navbar.scrolled ~ section .feature-card a {
    color: var(--primary-color);
}

.navbar.scrolled ~ main .feature-card a::after,
.navbar.scrolled ~ section .feature-card a::after {
    background: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--card-background-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section {
    background: var(--background-light);
    padding: 100px 0;
    scroll-margin-top: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-cards {
    display: grid;
    gap: 20px;
}

.contact-card {
    background: var(--card-background-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover i {
    transform: translateY(-2px);
    color: var(--white);
}

.contact-card:hover h3 {
    color: var(--white);
}

.contact-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card:hover .contact-link {
    color: var(--white);
}

.contact-card:hover .contact-link::after {
    background: var(--white);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 8px 0;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-hours {
    display: flex;
    flex-direction: column;
}

.hours-card {
    background: var(--card-background-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hours-card:hover::before {
    transform: scaleX(1);
}

.hours-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 5px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.hours-card:hover i {
    transform: translateY(-2px);
    color: var(--accent-color);
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
    color: var(--text-color);
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    flex: 1;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.hours-row:hover {
    background: #f1f3f5;
    transform: translateX(5px);
}

.hours-row.weekend {
    background: #fff5f5;
    color: #e03131;
}

.hours-row.weekend:hover {
    background: #ffe3e3;
}

.hours-row .days {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.1rem;
}

.hours-row .time {
    color: #666;
    font-weight: 500;
}

.hours-row.weekend .days,
.hours-row.weekend .time {
    color: #e03131;
}

.timezone-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    user-select: none;
    z-index: 100;
    transition: all 0.3s ease;
}

.timezone-info i {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.timezone-info .fa-chevron-down {
    margin-left: auto;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.timezone-info.active .fa-chevron-down {
    transform: rotate(180deg);
}

.timezone-info span {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.timezone-info:hover {
    background: #e7f5ff;
}

.timezone-info:hover i,
.timezone-info:hover span {
    color: #1971c2;
}

.timezone-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}

.timezone-info.active .timezone-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.timezone-option {
    padding: 12px 15px;
    color: #333;
    transition: all 0.2s ease;
    cursor: pointer;
}

.timezone-option:hover {
    background: #f8f9fa;
    color: #1971c2;
}

.timezone-option.active {
    background: #e7f5ff;
    color: #1971c2;
    font-weight: 500;
}

footer {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.05) 0%, transparent 10%), #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-logo p {
    color: #999;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0.5rem 1.5rem;
    }
    .logo {
        transform: scale(0.9);
        transform-origin: left;
    }
    .logo i {
        font-size: 1.5rem;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        z-index: 1001;
        flex-direction: column;
        gap: 0;
        padding: 0 0;
        transform: scaleY(0.7) translateY(-12px);
        transform-origin: top;
        opacity: 0;
        transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.32s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-links.active {
        transform: scaleY(1) translateY(0);
        opacity: 1;
        transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.32s cubic-bezier(0.4,0,0.2,1);
        visibility: visible;
        pointer-events: auto;
    }
    .nav-links.hiding {
        visibility: hidden;
        pointer-events: none;
    }
    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
    .navbar.scrolled .nav-link {
        color: var(--primary-color);
    }
    .navbar.scrolled .nav-links {
        background-color: var(--primary-color);
    }
    .navbar.scrolled .nav-links .nav-link {
        color: var(--white);
    }
    .hero-text h1 {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }
    .hero-text p {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    .section {
        padding: 4rem 0;
    }
    h2 {
        font-size: 2rem;
    }
    .about-grid,
    .services-grid,
    .projects-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cta-button {
        width: 80%;
        margin: 0 auto;
    }
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    .feature {
        width: 100%;
        max-width: 300px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-logo {
        align-items: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .contact-image {
        display: none;
    }
    .contact-form {
        width: 100%;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .contact-card, .hours-card {
        margin-bottom: 1.5rem;
    }
    .contact-card h3, .hours-card h3 {
        font-size: 1.6rem;
    }
    .contact-card p, .contact-link {
        font-size: 1.2rem;
    }
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 4rem 0;
        height: auto;
        min-height: 100vh;
        background: var(--primary-color);
    }
    .hero-content {
        padding: 40px 20px;
    }
    .hero-text h1 {
        font-size: 3.8rem;
    }
    .hero-text p {
        font-size: 1.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .hero-content {
        padding: 30px 20px;
    }
    .hero-text h1 {
        font-size: 3.2rem;
    }
    .hero-text p {
        font-size: 1.4rem;
    }
    .cta-button.secondary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        background-size: 100% auto, cover;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-text p {
        font-size: 1.3rem;
    }
    .cta-button.secondary {
        font-size: 0.9rem;
        padding: 0.8rem 1.8rem;
    }
    .contact-section {
        padding: 40px 0;
    }
    .contact-content {
        padding: 0 0.5rem;
    }
    .contact-card, .hours-card {
        padding: 1.5rem;
    }
    .contact-card i, .hours-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .contact-card h3, .hours-card h3 {
        font-size: 1.5rem;
    }
    .contact-card p {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    .contact-link {
        font-size: 1.15rem;
    }
    .hours-row {
        font-size: 1rem;
    }
    .timezone-info {
        padding: 8px;
        font-size: 0.85rem;
    }
    .timezone-dropdown {
        margin-bottom: 5px;
    }
}

/* Footer */
@media (max-width: 992px) {
    footer {
        padding: 50px 0 15px;
    }
    .footer-content {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
        padding: 0 1.5rem;
    }
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .footer-links a {
        font-size: 0.95rem;
    }
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 10px;
    }
    .footer-content {
        gap: 20px;
        margin-bottom: 25px;
        padding: 0 1rem;
    }
    .footer-logo img {
        height: 35px;
    }
    .footer-links a {
        font-size: 0.9rem;
    }
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 30px 0 5px;
    }
    .footer-content {
        gap: 15px;
        margin-bottom: 20px;
    }
    .footer-logo img {
        height: 30px;
    }
    .footer-links a {
        font-size: 0.85rem;
    }
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Intro Animation Base */
.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    pointer-events: none;
}

.intro-animation::before,
.intro-animation::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transition: transform 1.5s ease-out;
    transform-origin: center center;
}

.intro-animation::before {
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: translateX(0) translateY(0);
}

.intro-animation::after {
    background-color: var(--white);
    clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
    transform: translateX(0) translateY(0);
}

body.preload .intro-animation::before {
    transform: translateX(0) translateY(0);
}

body.preload .intro-animation::after {
    transform: translateX(0) translateY(0);
}

body:not(.preload) .intro-animation::before {
    transform: translateX(-100vw) translateY(-100vh);
}

body:not(.preload) .intro-animation::after {
    transform: translateX(100vw) translateY(100vh);
}

body:not(.preload) .intro-animation {
    opacity: 0;
    transition: opacity 0.5s ease 1.2s;
}

/* About Us Section */
#about.section {
    background: #f4f9fd;
    color: #1a3557;
    padding-top: 7rem;
    padding-bottom: 7rem;
    scroll-margin-top: 60px;
}
#about.section .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
#about.section h2 {
    color: #1a3557;
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}
#about.section .about-grid {
    gap: 3rem;
}
#about.section .about-card {
    background: #fff;
    color: #1a3557;
    border: none;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(26,53,87,0.07);
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    margin-bottom: 0;
}
#about.section .about-card:hover {
    transform: translateY(-4px) scale(1.012);
    box-shadow: 0 10px 32px 0 rgba(26,53,87,0.13);
}
#about.section .about-card h3 {
    color: #1976d2;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
#about.section .about-card p,
#about.section .about-card ul {
    color: #1a3557;
    font-size: 1.4rem;
    line-height: 1.4;
}
#about.section .highlight-blue {
    color: #1976d2;
    background: none;
    font-weight: 600;
    border-radius: 0;
    border: none;
    padding: 0;
}
#about.section .expertise-list li i {
    color: #1976d2;
    font-size: 1.4rem;
    margin-right: 0.6rem;
}
#about.section .expertise-list li {
    font-size: 1.4rem;
    color: #1a3557;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

/* dWave Tools Section */
#tools {
    background: none;
}

#tools .plugin-content {
    background: var(--card-background-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.service-card {
    background: var(--card-background-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card {
    background: var(--card-background-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Contact Section */
.contact-section {
    background: var(--background-light);
    padding: 100px 0;
    scroll-margin-top: 100px;
}

.contact-card {
    background: var(--card-background-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hours-card {
    background: var(--card-background-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
}

.hero-content {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    background: var(--primary-color);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}


.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.stat-item i {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover i {
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
}

.stat-item .number {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item .text {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
}

/* Achievements Section */
.achievements-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0;
    background-color: #f8f9fa;
}

@media (max-width: 500px) {
    .achievements-container {
        flex-direction: column;
        align-items: center;
    }
}

.dwave-tools a {
    color: var(--blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    border-bottom: 2px solid var(--blue);
}

.dwave-tools a:hover {
    color: var(--dark-blue);
    border-bottom: 2px solid var(--dark-blue);
}

.highlight-blue {
    color: var(--primary-color);
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(100deg, #fff 0%, #b3d8ff 80%, #5bbcff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.nav-learn-more {
    background: var(--white);
    color: var(--primary-color) !important;
    border-radius: 22px;
    padding: 0.45rem 1.2rem;
    font-weight: 700;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,102,204,0.07);
    border: 1.5px solid var(--primary-color);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: inline-block;
}
.nav-learn-more:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(0,102,204,0.13);
    text-decoration: none;
}
.navbar.scrolled .nav-learn-more {
    background: var(--primary-color);
    color: var(--white) !important;
    border: 1.5px solid var(--primary-color);
}
.navbar.scrolled .nav-learn-more:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

.tools-navbar {
    background: var(--primary-color) !important;
}
.tools-navbar .nav-link,
.tools-navbar .logo,
.tools-navbar .menu-toggle {
    color: var(--white) !important;
}
.tools-navbar .nav-link::after {
    background: var(--white) !important;
}

/* dWave Tools page plugin-info styling */
#tools.section {
    display: block;
    flex-direction: unset;
    align-items: unset;
    scroll-margin-top: 90px;
}
#tools.section > h2 {
    text-align: center;
    width: 100%;
}
.plugin-info-section {
    margin: 2.5rem auto;
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,102,204,0.07), 0 1.5px 8px rgba(0,0,0,0.06);
    border: 1.5px solid #eaf3fb;
    padding: 2.5rem clamp(1.5rem, 6vw, 4rem);
    box-sizing: border-box;
    font-size: 1.22rem;
    line-height: 1.7;
    display: block;
}
.plugin-info-section h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    color: #1976d2;
    text-align: left;
}
.plugin-info-section p,
.plugin-info-section ul {
    text-align: left;
}

.plugin-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
    margin: 2.5rem 0 2.5rem 0;
    justify-items: center;
}
@media (max-width: 1100px) {
    .plugin-screenshot-grid {
        grid-template-columns: 1fr;
    }
}
.plugin-screenshot-item {
    width: 100%;
    max-width: 900px;
}
.plugin-screenshot-item img {
    width: 100%;
    max-width: 900px;
    border-radius: 18px;
    margin-bottom: 1.1rem;
    box-shadow: 0 10px 40px rgba(0,102,204,0.15), 0 2px 12px rgba(0,0,0,0.10);
    border: 2.5px solid #eaf3fb;
    background: #eaf3fb;
    object-fit: contain;
    aspect-ratio: 16/9;
    cursor: zoom-in;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.plugin-screenshot-item:hover img {
    box-shadow: 0 18px 60px rgba(0,102,204,0.22), 0 4px 18px rgba(0,0,0,0.13);
    border-color: var(--primary-color);
}
.plugin-screenshot-caption {
    font-size: 1.15rem;
    color: #1a3557;
    text-align: center;
    margin-top: 0.2rem;
    font-weight: 600;
    opacity: 0.92;
    letter-spacing: 0.01em;
}

body.dwave-tools-page {
    background: #fff !important;
}
#tools.section {
    background: none;
    padding-top: 7rem;
    padding-bottom: 4rem;
}
.plugin-content {
    background: none;
    box-shadow: none;
    padding: 0;
}
.plugin-info-section:last-child {
    margin-bottom: 0;
}
.plugin-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
    margin: 2.5rem 0 2.5rem 0;
    justify-items: center;
}
@media (max-width: 1100px) {
    .plugin-screenshot-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(20,30,50,0.92);
    z-index: 9999 !important;
    pointer-events: all !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: fadeIn 0.2s;
}
.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,102,204,0.22), 0 2px 12px rgba(0,0,0,0.13);
    background: #fff;
    border: 3px solid #fff;
    object-fit: contain;
    animation: zoomIn 0.2s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0.7; }
    to { transform: scale(1); opacity: 1; }
}

/* Our Work Slideshow Styles */
.our-work-slideshow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    position: relative;
}
.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.slideshow-arrow:hover, .slideshow-arrow:focus {
    background: #fff;
    color: #1976d2;
    outline: 2px solid #1976d2;
    transform: translateY(-50%) scale(1.08);
}
.slideshow-arrow.prev {
    left: 0;
}
.slideshow-arrow.next {
    right: 0;
}
.our-work-slideshow img {
    width: 100%;
    max-width: 900px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,102,204,0.15), 0 2px 12px rgba(0,0,0,0.10);
    border: 2.5px solid #eaf3fb;
    background: #eaf3fb;
    object-fit: contain;
    aspect-ratio: 16/9;
    cursor: zoom-in;
    transition: opacity 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.2s, border-color 0.2s;
    opacity: 1;
    display: block;
    margin: 0 auto;
}
.our-work-slideshow img.fade-out {
    opacity: 0;
}
.our-work-slideshow img.fade-in {
    opacity: 1;
}
.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
}
.slideshow-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #eaf3fb;
    border: 2px solid #1976d2;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.slideshow-dot.active {
    background: #1976d2;
    border-color: #1976d2;
}
@media (max-width: 900px) {
    .our-work-slideshow img {
        max-width: 98vw;
    }
    .our-work-slideshow {
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .our-work-slideshow img {
        max-width: 100vw;
        border-radius: 10px;
    }
    .slideshow-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    .slideshow-arrow.prev {
        left: -12px;
    }
    .slideshow-arrow.next {
        right: -12px;
    }
}

#our-work .plugin-screenshot-caption { display: none !important; } 