/* Design System & Variables */
:root {
    --primary-color: #0a192f;
    /* Deep Navy Blue */
    --secondary-color: #64ffda;
    /* Cyan/Teal Accent - Modern Tech feel */
    --accent-color: #8892b0;
    /* Steel Blue/Grey */
    --text-light: #e6f1ff;
    --text-dark: #1d1d1d;
    --bg-light: #f4f4f4;
    --bg-dark: #020c1b;
    --metal-gradient: linear-gradient(145deg, #e0e0e0, #ffffff);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a2f4b;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
}

.btn-contact {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.7)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    /* Industrial background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Page Header (For sub-pages) */
.page-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.section-padding {
    padding: 80px 0;
}

/* Stats Section */
#stats {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

/* Services Section */
#services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.team-info .role {
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.email-link {
    color: var(--primary-color);
    font-weight: 600;
}

.email-link:hover {
    color: var(--secondary-color);
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.7)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    /* Industrial background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Page Header (For sub-pages) */
.page-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.section-padding {
    padding: 80px 0;
}

/* Stats Section */
#stats {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
#about {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

/* Services Section */
#services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.team-info .role {
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.email-link {
    color: var(--primary-color);
    font-weight: 600;
}

.email-link:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 2px 5px;
    border-radius: 4px;
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.client-category {
    background: #fff;
    padding: 30px;
    height: 250px;
    cursor: pointer;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

padding: 30px 0;
text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-menu ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu ul.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .email-link:hover {
        color: var(--secondary-color);
        background-color: var(--primary-color);
        padding: 2px 5px;
        border-radius: 4px;
    }

    /* Clients Section */
    .clients-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .client-category {
        background: #fff;
        padding: 30px;
        height: 250px;
        cursor: pointer;
    }

    /* Gallery Section */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        position: relative;
        height: 300px;
        overflow: hidden;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .gallery-img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover .gallery-img {
        transform: scale(1.1);
    }

    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 47, 0.8);
        color: #fff;
        padding: 15px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-caption {
        transform: translateY(0);
    }

    /* Contact Section */
    #contact .section-title {
        color: #fff;
    }

    #contact .section-title::after {
        background-color: #fff;
    }

    .contact-wrapper {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
    }

    .contact-info {
        flex: 1;
        min-width: 300px;
    }

    .contact-info h3 {
        color: #fff;
        margin-bottom: 20px;
    }

    .contact-info ul li {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .contact-form {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        border: none;
        border-radius: 4px;
        font-family: inherit;
    }

    .contact-form button {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        border: none;
    }

    .contact-form button:hover {
        background-color: #fff;
    }

    /* Footer */
    footer {
        background-color: #020c1b;
        color: #8892b0;
        padding: 30px 0;
        text-align: center;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s forwards;
    }

    .delay-1 {
        animation-delay: 0.2s;
    }

    .delay-2 {
        animation-delay: 0.4s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .header-container {
            padding: 0 15px;
        }

        .mobile-menu-btn {
            display: block;
            z-index: 1001;
        }

        .nav-menu ul {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: #fff;
            flex-direction: column;
            justify-content: center;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .nav-menu ul.active {
            right: 0;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .contact-wrapper {
            flex-direction: column;
        }
    }

    /* Lightbox */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 2000;
        padding-top: 50px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .lightbox-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 900px;
        max-height: 80vh;
        object-fit: contain;
        animation: zoom 0.6s;
    }

    @keyframes zoom {
        from {
            transform: scale(0)
        }

        to {
            transform: scale(1)
        }
    }

    .close-lightbox {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }

    .close-lightbox:hover,
    .close-lightbox:focus {
        padding: 15px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-caption {
        transform: translateY(0);
    }

    /* Contact Section */
    #contact .section-title {
        color: #fff;
    }

    #contact .section-title::after {
        background-color: #fff;
    }

    .contact-wrapper {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
    }

    .contact-info {
        flex: 1;
        min-width: 300px;
    }

    .contact-info h3 {
        color: #fff;
        margin-bottom: 20px;
    }

    .contact-info ul li {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .contact-form {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        border: none;
        border-radius: 4px;
        font-family: inherit;
    }

    .contact-form button {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        border: none;
    }

    .contact-form button:hover {
        background-color: #fff;
    }

    /* Footer */
    footer {
        background-color: #020c1b;
        color: #8892b0;
        padding: 30px 0;
        text-align: center;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s forwards;
    }

    .delay-1 {
        animation-delay: 0.2s;
    }

    .delay-2 {
        animation-delay: 0.4s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .header-container {
            padding: 0 15px;
        }

        .mobile-menu-btn {
            display: block;
            z-index: 1001;
        }

        .nav-menu ul {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: #fff;
            flex-direction: column;
            justify-content: center;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .nav-menu ul.active {
            right: 0;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .contact-wrapper {
            flex-direction: column;
        }
    }

    /* Lightbox */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 2000;
        padding-top: 50px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .lightbox-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 900px;
        max-height: 80vh;
        object-fit: contain;
        animation: zoom 0.6s;
    }

    @keyframes zoom {
        from {
            transform: scale(0)
        }

        to {
            transform: scale(1)
        }
    }

    .close-lightbox {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }

    .close-lightbox:hover,
    .close-lightbox:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

    #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
        height: 150px;
    }

    /* Tabs */
    .about-tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .tab-btn {
        background: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        padding: 10px 25px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .tab-btn:hover,
    .tab-btn.active {
        background: var(--primary-color);
        color: #fff;
    }

    .tab-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .tab-content.active {
        display: block;
    }

    / *   L i g h t b o x   S t y l e s   * /     . l i g h t b o x    {
                     d i s p l a y :    n o n e ;
                     p o s i t i o n :    f i x e d ;
                     z - i n d e x :    9 9 9 9 ;
                     l e f t :    0 ;
                     t o p :    0 ;
                     w i d t h :    1 0 0 % ;
                     h e i g h t :    1 0 0 % ;
                     o v e r f l o w :    a u t o ;
                     b a c k g r o u n d - c o l o r :    r g b a ( 0 ,    0 ,    0 ,    0 . 9 5 ) ;
             
    }

             . l i g h t b o x - c o n t e n t    {
                     m a r g i n :    a u t o ;
                     d i s p l a y :    b l o c k ;
                     m a x - w i d t h :    9 0 % ;
                     m a x - h e i g h t :    9 0 % ;
                     p o s i t i o n :    a b s o l u t e ;
                     t o p :    5 0 % ;
                     l e f t :    5 0 % ;
                     t r a n s f o r m :    t r a n s l a t e ( - 5 0 % ,    - 5 0 % ) ;
             
    }

             . c l o s e - l i g h t b o x    {
                     p o s i t i o n :    a b s o l u t e ;
                     t o p :    2 0 p x ;
                     r i g h t :    4 0 p x ;
                     c o l o r :    # f f f ;
                     f o n t - s i z e :    5 0 p x ;
                     f o n t - w e i g h t :    b o l d ;
                     c u r s o r :    p o i n t e r ;
                     z - i n d e x :    1 0 0 0 0 ;
                     t r a n s i t i o n :    a l l   0 . 3 s   e a s e ;
             
    }

             . c l o s e - l i g h t b o x : h o v e r ,
         . c l o s e - l i g h t b o x : f o c u s    {
                     c o l o r :    # 6 4 f f d a ;
                     t r a n s f o r m :    r o t a t e ( 9 0 d e g ) ;
             
    }

             # c a p t i o n    {
                     m a r g i n :    a u t o ;
                     d i s p l a y :    b l o c k ;
                     w i d t h :    8 0 % ;
                     m a x - w i d t h :    7 0 0 p x ;
                     t e x t - a l i g n :    c e n t e r ;
                     c o l o r :    # c c c ;
                     p a d d i n g :    2 0 p x ;
                     p o s i t i o n :    a b s o l u t e ;
                     b o t t o m :    3 0 p x ;
                     l e f t :    5 0 % ;
                     t r a n s f o r m :    t r a n s l a t e X ( - 5 0 % ) ;
                     f o n t - s i z e :    1 8 p x ;
             
    }

         / *   C o n t a c t   S e c t i o n   S t y l e s   * /  
 # c o n t a c t   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         c o l o r :   # f f f ;  
         p a d d i n g :   1 0 0 p x   0 ;  
 }  
  
 # c o n t a c t   . s e c t i o n - t i t l e   {  
         c o l o r :   # f f f ;  
 }  
  
 # c o n t a c t   . s e c t i o n - t i t l e : : a f t e r   {  
         b a c k g r o u n d - c o l o r :   # f f f ;  
 }  
  
 . c o n t a c t - w r a p p e r   {  
         d i s p l a y :   f l e x ;  
         g a p :   5 0 p x ;  
         f l e x - w r a p :   w r a p ;  
         a l i g n - i t e m s :   f l e x - s t a r t ;  
 }  
  
 . c o n t a c t - i n f o   {  
         f l e x :   1 ;  
         m i n - w i d t h :   3 0 0 p x ;  
 }  
  
 . c o n t a c t - i n f o   h 3   {  
         c o l o r :   # f f f ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
         f o n t - s i z e :   1 . 5 r e m ;  
 }  
  
 . c o n t a c t - i n f o   p   {  
         c o l o r :   # e 0 e 0 e 0 ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 . c o n t a c t - i n f o   u l   {  
         l i s t - s t y l e :   n o n e ;  
         p a d d i n g :   0 ;  
 }  
  
 . c o n t a c t - i n f o   u l   l i   {  
         m a r g i n - b o t t o m :   1 5 p x ;  
         f o n t - s i z e :   1 r e m ;  
         c o l o r :   # e 0 e 0 e 0 ;  
 }  
  
 . c o n t a c t - f o r m   {  
         f l e x :   1 ;  
         m i n - w i d t h :   3 0 0 p x ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   1 5 p x ;  
 }  
  
 . c o n t a c t - f o r m   i n p u t ,  
 . c o n t a c t - f o r m   t e x t a r e a   {  
         p a d d i n g :   1 5 p x ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   4 p x ;  
         f o n t - f a m i l y :   i n h e r i t ;  
         f o n t - s i z e :   1 r e m ;  
         w i d t h :   1 0 0 % ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 . c o n t a c t - f o r m   t e x t a r e a   {  
         r e s i z e :   v e r t i c a l ;  
         m i n - h e i g h t :   1 2 0 p x ;  
 }  
  
 . c o n t a c t - f o r m   b u t t o n   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ;  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         b o r d e r :   n o n e ;  
         p a d d i n g :   1 5 p x   3 0 p x ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;  
         b o r d e r - r a d i u s :   4 p x ;  
 }  
  
 . c o n t a c t - f o r m   b u t t o n : h o v e r   {  
         b a c k g r o u n d - c o l o r :   # f f f ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 1 0 0 ,   2 5 5 ,   2 1 8 ,   0 . 3 ) ;  
 }  
 