/* =================================================================== 
 *
 *  Skylight Egy - Optimized Stylesheet
 *  -------------------------------------------------------------------
 *
 *  TOC:
 *  # base style overrides
 *      ## links
 *  # typography & general theme styles
 *      ## Lists
 *      ## responsive video container
 *      ## floated image
 *      ## tables
 *      ## Spacing
 *      ## pace.js styles - minimal
 *  # preloader
 *  # forms
 *      ## style placeholder text
 *      ## change autocomplete styles in chrome
 *  # buttons
 *  # additional components
 *      ## alert box
 *      ## additional typo styles
 *      ## skillbars 
 *  # reusable and common theme styles
 *      ## display headings
 *      ## section header
 *      ## slick slider
 *  # header styles
 *      ## header logo
 *      ## main navigation 
 *      ## mobile menu toggle 
 *  # home 
 *      ## home content
 *      ## home social 
 *      ## home animations
 *  # about
 *      ## about stats
 *  # services
 *      ## services list
 *  # works
 *      ## bricks/masonry
 *  # clients
 *      ## slider
 *      ## testimonials
 *  # contact
 *      ## loader animation
 *  # footer
 *      ## footer main
 *      ## footer bottom
 *      ## go to top
 *
 *
 * =================================================================== */


/* ===================================================================
 * # Skylight Egy Brand Colors and Text Logo
 *
 * ------------------------------------------------------------------- */

/* Brand color variables for consistent theming */
:root {
    /* Brand Colors */
    --brand-main: #1e3a5f;
    --brand-accent: #2c5282;
    --brand-light: #4a90b8;
    --brand-sky: #87ceeb;
    
    /* Text Colors */
    --text-primary: #1e3a5f;
    --text-secondary: #4a5568;
    --text-light: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #edf2f7;
    --bg-overlay: rgba(30, 58, 95, 0.85);
    
    /* Border Colors */
    --border-light: rgba(74, 144, 184, 0.2);
    --border-accent: #4a90b8;
    
    /* Shadow Effects */
    --shadow-sm: 0 2px 4px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 4px 6px rgba(30, 58, 95, 0.1);
    --shadow-lg: 0 10px 15px rgba(30, 58, 95, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(90deg, var(--brand-main) 0%, var(--brand-accent) 100%);
    --gradient-hover: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-light) 100%);
}

/* Text logo styling - Single line responsive with enhanced design */
.text-logo {
    display: inline-block;
    text-decoration: none !important;
    font-family: "montserrat-bold", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
}

.text-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease;
}

.text-logo:hover::before {
    opacity: 1;
}

.skylight-text {
    color: var(--brand-main);
    position: relative;
    background: linear-gradient(to bottom, var(--brand-main), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.egy-text {
    color: var(--brand-light);
    position: relative;
    background: linear-gradient(to bottom, var(--brand-light), var(--brand-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-logo:hover .skylight-text {
    color: var(--brand-accent);
    transition: color 0.3s ease;
}

.text-logo:hover .egy-text {
    color: var(--brand-sky);
    transition: color 0.3s ease;
}

/* Apply brand colors to all interactive elements */
a, a:visited {
    color: var(--brand-light);
}

a:hover, a:focus, a:active {
    color: var(--brand-accent);
}

/* Enhanced button styles */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background-color: var(--brand-main) !important;
    border-color: var(--brand-main) !important;
    color: var(--text-light) !important;
    border-radius: 4px;
    letter-spacing: .1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    background-color: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button with stroke style */
.btn.btn--stroke, 
button.btn--stroke {
    border: 2px solid var(--brand-light) !important;
    background-color: transparent !important;
    color: var(--text-light) !important;
    box-shadow: none;
}

.btn.btn--stroke:hover, 
button.btn--stroke:hover {
    background-color: var(--brand-light) !important;
    border-color: var(--brand-light) !important;
    color: var(--text-light) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Primary button enhancements */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
    background: linear-gradient(135deg, var(--brand-main), var(--brand-accent)) !important;
    border: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-main)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Stats counters */
.stats__count {
    color: var(--brand-main) !important;
}

/* Section headers */
.section-header h1,
.section-header h2,
.section-header h3 {
    color: var(--brand-accent);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-main);
}

/* Service items */
.services-list__item-header h3 {
    color: var(--brand-main);
}

.services-list__item-icon {
    color: var(--brand-light);
}

/* Contact section styling */
.contact-primary .contact-address .contact-block h5 {
    color: var(--brand-main);
}

/* Enhanced social icons */
.home-social a,
.header-nav__social a,
.footer-social a,
.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-light);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-social a::before,
.header-nav__social a::before,
.footer-social a::before,
.contact-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-main), var(--brand-accent));
    opacity: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.home-social a:hover,
.header-nav__social a:hover,
.footer-social a:hover,
.contact-social a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.home-social a:hover::before,
.header-nav__social a:hover::before,
.footer-social a:hover::before,
.contact-social a:hover::before {
    opacity: 1;
}

/* Navigation active states */
.header-nav__list li.current a,
.header-nav__list li a:hover {
    color: var(--brand-accent) !important;
}

/* Works/Portfolio section */
.works-portfolio .folio-item__title {
    color: var(--brand-main);
}

/* Footer styling */
.footer-main {
    background: linear-gradient(90deg, var(--brand-main) 60%, var(--brand-accent) 100%);
    color: var(--text-light);
}

.footer-bottom {
    background: var(--brand-main);
    color: var(--text-light);
}

/* Testimonial styling */
.testimonials .testimonials__slide blockquote cite {
    color: var(--brand-accent);
}

/* Override any conflicting colors */
.btn--stroke {
    border-color: var(--brand-light) !important;
    color: var(--brand-light) !important;
}

.btn--stroke:hover {
    background-color: var(--brand-light) !important;
    color: var(--text-light) !important;
}

/* Mobile responsiveness for text logo - Single line */
@media only screen and (max-width: 1200px) {
    .text-logo {
        font-size: 2.6rem;
    }
}

@media only screen and (max-width: 992px) {
    .text-logo {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 768px) {
    .text-logo {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 576px) {
    .text-logo {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 480px) {
    .text-logo {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 400px) {
    .text-logo {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 320px) {
    .text-logo {
        font-size: 1.4rem;
    }
}

/* Enhanced responsive design for all devices */
@media only screen and (max-width: 1024px) {
    /* Adjust padding for tablets */
    .header-logo {
        padding: 0 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    /* Improve touch targets on mobile */
    .home-social a,
    .header-nav__social a {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile navigation */
    .header-nav__list li {
        margin-bottom: 1rem;
    }
    
    /* Optimize contact buttons for mobile */
    .contact-social li a {
        padding: 1.2rem;
        margin: 0.5rem;
    }
}

@media only screen and (max-width: 480px) {
    /* Compact header for very small screens */
    .header-logo {
        padding: 0 1rem;
    }
    
    /* Ensure buttons remain accessible */
    .btn, .btn--primary {
        min-height: 44px;
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 400px) {
    /* Ultra-compact design for smallest screens */
    .header-logo {
        padding: 0 0.8rem;
    }
}

/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
html {
    font-size: 10px;
}

@media only screen and (max-width: 400px) {
    html {
        font-size: 9.411764705882353px;
    }
}

html, body {
    height: 100%;
}

body {
    background: var(--bg-main);
    color: var(--text-dark);
    font-family: "lora-regular", serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: normal;
    line-height: 1.765;
    margin: 0;
    padding: 0;
}

/* Use brand colors throughout the site */

.btn:hover,
.btn--primary:hover,
input[type="submit"]:hover,
button:hover {
    background-color: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
}

a,
a:visited {
    color: var(--brand-light);
}

a:hover, a:focus, a:active {
    color: var(--brand-accent);
}

/* Header navigation links */
.header-nav__list a:hover,
.header-nav__list a:focus {
    color: var(--brand-light);
}

/* Home content buttons */
.home-content__buttons .btn:hover, 
.home-content__buttons .btn:focus {
    color: var(--brand-main);
    border-color: var(--brand-main);
}

/* Stats count color */
.stats__count {
    color: var(--brand-light);
}

/* Section headers */
.subhead {
    color: var(--brand-light);
    letter-spacing: 0.2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.subhead:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--brand-light), var(--brand-main));
}


/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
    color: var(--brand-light);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
    color: var(--brand-accent);
}

a:hover, a:active {
    outline: 0;
}



/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "montserrat-medium", sans-serif;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    margin-top: 6rem;
    margin-bottom: 1.8rem;
}

@media only screen and (max-width: 600px) {
    h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
        margin-top: 5.1rem;
    }
}

h5, .h5, h6, .h6 {
    margin-top: 4.2rem;
    margin-bottom: 1.5rem;
}

@media only screen and (max-width: 600px) {
    h5, .h5, h6, .h6 {
        margin-top: 3.6rem;
        margin-bottom: 0.9rem;
    }
}

h1, .h1 {
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}

@media only screen and (max-width: 600px) {
    h1, .h1 {
        font-size: 3.3rem;
        letter-spacing: -.07rem;
    }
}

h2, .h2 {
    font-size: 3rem;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 2.4rem;
    line-height: 1.25;
}

h4, .h4 {
    font-size: 2.1rem;
    line-height: 1.286;
}

h5, .h5 {
    font-size: 1.6rem;
    line-height: 1.313;
}

h6, .h6 {
    font-size: 1.3rem;
    line-height: 1.385;
    text-transform: uppercase;
    letter-spacing: .16rem;
}

p img {
    margin: 0;
}

p.lead {
    font-family: "montserrat-regular", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3.6rem;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    p.lead {
        font-size: 1.8rem;
    }
}

em, i, strong, b {
    font-size: inherit;
    line-height: inherit;
    font-style: normal;
    font-weight: normal;
}

em, i {
    font-family: "lora-italic", serif;
}

strong, b {
    font-family: "lora-bold", serif;
}

small {
    font-size: 1.2rem;
    line-height: inherit;
}

blockquote {
    margin: 3.9rem 0;
    padding-left: 4.5rem;
    position: relative;
}

blockquote:before {
    content: "\201C";
    font-size: 10rem;
    line-height: 0px;
    margin: 0;
    color: rgba(0, 0, 0, 0.25);
    font-family: arial, sans-serif;
    position: absolute;
    top: 3.6rem;
    left: 0;
}

blockquote p {
    font-family: "montserrat-regular", sans-serif;
    padding: 0;
    font-size: 2.1rem;
    line-height: 1.857;
    color: #111111;
}

blockquote cite {
    display: block;
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    line-height: 1.5;
}

blockquote cite:before {
    content: "\2014 \0020";
}

blockquote cite a, blockquote cite a:visited {
    color: #828282;
    border: none;
}

abbr {
    font-family: "lora-bold", serif;
    font-variant: small-caps;
    text-transform: lowercase;
    letter-spacing: .05rem;
    color: #828282;
}

var, samp, code, pre {
    font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
    padding: 2.4rem 3rem 3rem;
    background: #F1F1F1;
    overflow-x: auto;
}

code {
    font-size: 1.4rem;
    margin: 0 .2rem;
    padding: .3rem .6rem;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 3px;
}

pre > code {
    display: block;
    white-space: pre;
    line-height: 2;
    padding: 0;
    margin: 0;
}

del {
    text-decoration: line-through;
}

abbr[title] {
    border-bottom: 1px dotted;
    cursor: help;
    text-decoration: none;
}

mark {
    background: var(--brand-light);
    color: #000000;
}

hr {
    border: none;
    border-top: 1.5px solid var(--brand-light);
    margin: 2rem 0;
}

/* ------------------------------------------------------------------- 
 * ## Lists
 * ------------------------------------------------------------------- */
ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}

li {
    display: list-item;
}

ol, ul {
    margin-left: 1.7rem;
}

ul li {
    padding-left: .4rem;
}

ul ul, ul ol, ol ol, ol ul {
    margin: .6rem 0 .6rem 1.7rem;
}

ul.disc li {
    display: list-item;
    list-style: none;
    padding: 0 0 0 .8rem;
    position: relative;
}

ul.disc li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
    position: absolute;
    left: -17px;
    top: 11px;
    vertical-align: middle;
}

dt {
    margin: 0;
    color: var(--brand-accent);
}

dd {
    margin: 0 0 0 2rem;
}


/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ------------------------------------------------------------------- 
 * ## floated image
 * ------------------------------------------------------------------- */

img.pull-left {
    margin: 1.5rem 3rem 0 0;
}


/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
    border-width: 0;
    width: 100%;
    max-width: 100%;
    font-family: "lora-regular", serif;
}

th, td {
    padding: 1.5rem 3rem;
    text-align: left;
    border-bottom: 1px solid #E8E8E8;
}

th {
    color: #000000;
    font-family: "montserrat-bold", sans-serif;
}

td {
    line-height: 1.5;
}

th:first-child, td:first-child {
    padding-left: 0;
}

th:last-child, td:last-child {
    padding-right: 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* ------------------------------------------------------------------- 
 * ## Spacing 
 * ------------------------------------------------------------------- */
button, .btn {
    margin-bottom: 1.2rem;
}

fieldset {
    margin-bottom: 1.5rem;
}

input,
textarea,
select,
pre,
blockquote,
table,
p,
ul,
ol,
dl,
form,
.video-container,
.cl-custom-select {
    margin-bottom: 3rem;
}


/* ------------------------------------------------------------------- 
 * ## pace.js styles - minimal
 * ------------------------------------------------------------------- */
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: var(--brand-accent);
    position: fixed;
    z-index: 900;
    top: 0;
    right: 100%;
    width: 100%;
    height: 4px;
}

.oldie .pace {
    display: none;
}



/* ===================================================================
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050505;
    z-index: 800;
    height: 100%;
    width: 100%;
    display: table;
}

.no-js #preloader, .oldie #preloader {
    display: none;
}

#loader {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.line-scale-pulse-out > div {
    background-color: var(--brand-accent);
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
    -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
    animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
    -webkit-animation-delay: -0.4s !important;
    animation-delay: -0.4s !important;
}

.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
    -webkit-animation-delay: -0.2s !important;
    animation-delay: -0.2s !important;
}

@keyframes line-scale-pulse-out {
    0% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4);
    }
    100% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
}



/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
fieldset {
    border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    display: block;
    height: 6rem;
    padding: 1.5rem 0;
    border: 0;
    outline: none;
    color: #333333;
    font-family: "montserrat-light", sans-serif;
    font-size: 1.4rem;
    line-height: 3rem;
    max-width: 100%;
    background: transparent;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cl-custom-select {
    position: relative;
    padding: 0;
}

.cl-custom-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    margin: 0;
    line-height: 3rem;
    vertical-align: middle;
}

.cl-custom-select select option {
    padding-left: 2rem;
    padding-right: 2rem;
}

.cl-custom-select select::-ms-expand {
    display: none;
}

.cl-custom-select::after {
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    border-right: 2px solid rgba(0, 0, 0, 0.5);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 2.4rem;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}


/* IE9 and below */

.oldie .cl-custom-select::after {
    display: none;
}

textarea {
    min-height: 25rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    color: #000000;
    border-bottom: 2px solid black;
}

label, legend {
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: .9rem;
    line-height: 1.714;
    color: #000000;
    display: block;
}

input[type="checkbox"], input[type="radio"] {
    display: inline;
}

label > .label-text {
    display: inline-block;
    margin-left: 1rem;
    font-family: "montserrat-regular", sans-serif;
    font-weight: normal;
    line-height: inherit;
}

label > input[type="checkbox"], 
label > input[type="radio"] {
    margin: 0;
    position: relative;
    top: .15rem;
}


/* ------------------------------------------------------------------- 
 * ## style placeholder text
 * ------------------------------------------------------------------- */

.placeholder {
    color: #828282 !important;
}


/* ------------------------------------------------------------------- 
 * ## change autocomplete styles in chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--brand-accent);
    transition: background-color 5000s ease-in-out 0s;
}



/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    font-family: "montserrat-medium", sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 5.4rem;
    line-height: calc(5.4rem - .4rem);
    padding: 0 3rem;
    margin: 0 .3rem 1.2rem 0;
    color: #000000;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #c5c5c5;
    border: .2rem solid #c5c5c5;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    background-color: #b8b8b8;
    border-color: #b8b8b8;
    color: #000000;
}


/* button primary
 * ------------------------------------------------- */

.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #FFFFFF;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
    background: #33a242;
    border-color: #33a242;
}


/* button modifiers
 * ------------------------------------------------- */

.btn.full-width, button.full-width {
    width: 100%;
    margin-right: 0;
}

.btn--stroke, button.btn--stroke {
    background: transparent !important;
    border: 0.2rem solid var(--brand-accent);
    color: var(--brand-accent);
}

.btn--stroke:hover, button.btn--stroke:hover {
    border: 0.2rem solid #000000;
    color: #000000;
}


/* =================================================================== 
 * # additional components
 *
 * ------------------------------------------------------------------- */


/* ------------------------------------------------------------------- 
 * ## alert box
 * ------------------------------------------------------------------- */
.alert-box {
    padding: 2.1rem 4rem 2.1rem 3rem;
    position: relative;
    margin-bottom: 3rem;
    border-radius: 3px;
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
}

.alert-box__close {
    position: absolute;
    right: 1.8rem;
    top: 1.8rem;
    cursor: pointer;
}

.alert-box__close.fa {
    font-size: 12px;
}

.alert-box--error {
    background-color: #ffd1d2;
    color: #e65153;
}

.alert-box--success {
    background-color: #c8e675;
    color: #758c36;
}

.alert-box--info {
    background-color: #d7ecfb;
    color: #4a95cc;
}

.alert-box--notice {
    background-color: #fff099;
    color: #bba31b;
}


/* ------------------------------------------------------------------- 
 * ## additional typo styles 
 * ------------------------------------------------------------------- */


/* drop cap 
 * ----------------------------------------------- */
.drop-cap:first-letter {
    float: left;
    margin: 0;
    padding: 1.5rem .6rem 0 0;
    font-size: 8.4rem;
    font-family: "montserrat-regular", sans-serif;
    font-weight: bold;
    line-height: 6rem;
    text-indent: 0;
    background: transparent;
    color: #000000;
}


/* line definition style 
 * ----------------------------------------------- */


/* dictionary definition style 
 * ----------------------------------------------- */


/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <aside class="pull-quote">
 *		<blockquote>
 *			<p></p>
 *		</blockquote>
 *	</aside>
 *
 * --------------------------------------------------------------------- */

.pull-quote {
    position: relative;
    padding: 2.1rem 3rem 2.1rem 0px;
}

.pull-quote:before, .pull-quote:after {
    height: 1em;
    position: absolute;
    font-size: 10rem;
    font-family: Arial, Sans-Serif;
    color: rgba(0, 0, 0, 0.25);
}

.pull-quote:before {
    content: "\201C";
    top: -3.6rem;
    left: 0;
}

.pull-quote:after {
    content: '\201D';
    bottom: 3.6rem;
    right: 0;
}

.pull-quote blockquote {
    margin: 0;
}

.pull-quote blockquote:before {
    content: none;
}


/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *		<li><a href="#">[value]<em>[name]</em></a></li>
 *	</ul>
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */

.stats-tabs {
    padding: 0;
    margin: 3rem 0;
}

.stats-tabs li {
    display: inline-block;
    margin: 0 1.5rem 3rem 0;
    padding: 0 1.5rem 0 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-tabs li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.stats-tabs li a {
    display: inline-block;
    font-size: 2.5rem;
    font-family: "montserrat-regular", sans-serif;
    font-weight: bold;
    border: none;
    color: #000000;
}

.stats-tabs li a:hover {
    color: var(--brand-accent);
}

.stats-tabs li a em {
    display: block;
    margin: .6rem 0 0 0;
    font-size: 1.4rem;
    font-family: "montserrat-regular", sans-serif;
    color: #828282;
}


/* ------------------------------------------------------------------- 
 * ## skillbars 
 * ------------------------------------------------------------------- */
.skill-bars {
    list-style: none;
    margin: 6rem 0 3rem;
}

.skill-bars li {
    height: .6rem;
    background: #c9c9c9;
    width: 100%;
    margin-bottom: 6.9rem;
    padding: 0;
    position: relative;
}

.skill-bars li strong {
    position: absolute;
    left: 0;
    top: -3rem;
    font-family: "montserrat-bold", sans-serif;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.skill-bars li .progress {
    background: #000000;
    position: relative;
    height: 100%;
}

.skill-bars li .progress span {
    position: absolute;
    right: 0;
    top: -3.6rem;
    display: block;
    font-family: "montserrat-regular", sans-serif;
    color: #FFFFFF;
    font-size: 1.1rem;
    line-height: 1;
    background: #000000;
    padding: .6rem .6rem;
    border-radius: 3px;
}

.skill-bars li .progress span::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #000000;
    content: "";
}
.skill-bars li .percent70 { width: 70%; }
.skill-bars li .percent75 { width: 75%; }
.skill-bars li .percent85 { width: 85%; }
.skill-bars li .percent90 { width: 90%; }
.skill-bars li .percent95 { width: 95%; }



/* ===================================================================
 * # reusable and common theme styles
 *
 * ------------------------------------------------------------------- */

.narrow {
    max-width: 800px;
}


/* ------------------------------------------------------------------- 
 * ## display headings
 * ------------------------------------------------------------------- */
.display-1 {
    font-family: "montserrat-medium", sans-serif;
    font-size: 7.8rem;
    line-height: 1.25;
    color: #000000;
    margin-top: 0;
}

.display-1--light {
    color: #FFFFFF;
}

.display-2 {
    font-family: "montserrat-medium", sans-serif;
    font-size: 5.2rem;
    line-height: 1.255;
    color: #000000;
    margin-top: 0;
}

.display-2--light {
    color: #FFFFFF;
}

.subhead + .display-2 {
    margin-top: .6rem;
}

.subhead {
    font-family: "montserrat-bold", sans-serif;
    font-size: 1.7rem;
    line-height: 1.333;
    text-transform: uppercase;
    letter-spacing: .25rem;
    color: var(--brand-accent);
    margin-top: 0;
    margin-bottom: 0;
}

.subhead--dark {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 400px) {
    .display-1 {
        font-size: 4.2rem;
    }
    .display-2 {
        font-size: 3rem;
    }
}


/* ------------------------------------------------------------------- 
 * ## section header
 * ------------------------------------------------------------------- */
.section-header {
    text-align: center;
    position: relative;
    margin-bottom: 3.6rem;
    max-width: 960px;
}

.section-header.has-bottom-sep {
    padding-bottom: 2.1rem;
    position: relative;
}

.section-header.has-bottom-sep::before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 550px;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-header.has-bottom-sep.light-sep::before {
    background-color: rgba(255, 255, 255, 0.05);
}


/* ------------------------------------------------------------------- 
 * responsive:
 * section-header
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .section-header {
        max-width: 800px;
    }
}

@media only screen and (max-width: 900px) {
    .section-header {
        max-width: 700px;
    }
}

@media only screen and (max-width: 800px) {
    .s-clients {
        padding-bottom: 17.4rem;
    }
    .section-header.has-bottom-sep::before {
        width: 400px;
    }
}

@media only screen and (max-width: 600px) {
    .section-header.has-bottom-sep {
        padding-bottom: 0;
    }
    .section-header.has-bottom-sep::before {
        width: 250px;
    }
}


/* ------------------------------------------------------------------- 
 * ## slick slider 
 * ------------------------------------------------------------------- */
.slick-slider .slick-slide {
    outline: none;
}

.slick-slider .slick-dots {
    display: block;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 3rem 0 0 0;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
}

.slick-slider .slick-dots li {
    display: inline-block;
    width: 27px;
    height: 27px;
    margin: 0;
    padding: 9px;
    cursor: pointer;
}

.slick-slider .slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #959595;
    border: none;
    line-height: 10px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

.slick-slider .slick-dots li button:hover,
.slick-slider .slick-dots li button:focus {
    outline: none;
}

.slick-slider .slick-dots li.slick-active button,
.slick-slider .slick-dots li:hover button {
    background: var(--brand-accent);
}



/* ===================================================================
 * # header styles
 *
 * ------------------------------------------------------------------- */
.s-header {
    width: 100%;
    height: 96px;
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 500;
}


/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.header-logo {
    display: inline-block;
    position: absolute;
    margin: 0;
    padding: 0;
    left: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 501;
}

.header-logo a {
    display: block;
    margin: 9px 0 0 0;
    padding: 0;
    outline: 0;
    border: none;
    width: 80px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* ------------------------------------------------------------------- 
 * ## main navigation 
 * ------------------------------------------------------------------- */
.header-nav {
    background: #0C0C0C;
    color: rgba(255, 255, 255, 0.25);
    font-family: "montserrat-light", sans-serif;
    font-size: 1.3rem;
    line-height: 1.846;
    padding: 3.6rem 3rem 3.6rem 3.6rem;
    height: 100%;
    width: 280px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 700;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
}

.header-nav a, .header-nav a:visited {
    color: rgba(255, 255, 255, 0.5);
}

.header-nav a:hover,
.header-nav a:focus,
.header-nav a:active {
    color: white;
}

.header-nav h3 {
    font-family: "montserrat-semibold", sans-serif;
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .25rem;
    margin-bottom: 4.8rem;
    margin-top: .9rem;
    color: var(--brand-accent);
}

.header-nav p {
    margin-bottom: 2.7rem;
}

.header-nav__content {
    position: relative;
    left: 50px;
    opacity: 0;
    visibility: hidden;
}

.header-nav__list {
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.8rem;
    margin: 3.6rem 0 3rem 0;
    padding: 0 0 1.8rem 0;
    list-style: none;
}

.header-nav__list li {
    padding-left: 0;
    line-height: 4.5rem;
}

.header-nav__list a,
.header-nav__list a:visited {
    color: #FFFFFF;
}

.header-nav__social {
    list-style: none;
    display: inline-block;
    margin: 0;
    font-size: 1.8rem;
}

.header-nav__social li {
    margin-right: 12px;
    padding-left: 0;
    display: inline-block;
}

.header-nav__social li a {
    color: rgba(255, 255, 255, 0.15);
}

.header-nav__social li a:hover,
.header-nav__social li a:focus {
    color: white;
}

.header-nav__social li:last-child {
    margin: 0;
}

.header-nav__close {
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 36px;
    right: 30px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

.header-nav__close span::before, 
.header-nav__close span::after {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -1px;
}

.header-nav__close span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-nav__close span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* menu is open
 * ----------------------------------------------- */
.menu-is-open .header-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}

.menu-is-open .header-nav .header-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    left: 0;
}


/* ------------------------------------------------------------------- 
 * ## mobile menu toggle 
 * ------------------------------------------------------------------- */
.header-menu-toggle {
    position: fixed;
    right: 38px;
    top: 24px;
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-family: "montserrat-medium", sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: var(--brand-accent);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-toggle.opaque {
    background-color: #000000;
}

.header-menu-toggle.opaque .header-menu-text {
    background-color: #000000;
}

.header-menu-toggle:hover, .header-menu-toggle:focus {
    color: #FFFFFF;
}

.header-menu-text {
    display: block;
    position: absolute;
    top: 0;
    left: -70px;
    width: 70px;
    padding-left: 12px;
}

.header-menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: 10px;
    top: 50%;
    right: auto;
    bottom: auto;
    background-color: white;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-icon::before, .header-menu-icon::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-icon::before {
    top: -9px;
}

.header-menu-icon::after {
    bottom: -9px;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
    .s-header {
        height: 90px;
    }
    .header-logo {
        left: 30px;
    }
    .header-menu-toggle {
        right: 25px;
    }
}

@media only screen and (max-width: 400px) {
    .header-menu-text {
        display: none;
    }
}



/* ===================================================================
 * # home 
 *
 * ------------------------------------------------------------------- */
.s-home {
    width: 100%;
    height: 100%;
    min-height: 786px;
    background-color: transparent;
    position: relative;
    display: table;
}

.s-home .shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
}

.s-home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    background-color: #000000;
}

.no-js .s-home {
    background: #000000;
}


/* ------------------------------------------------------------------- 
 * ## home content
 * ------------------------------------------------------------------- */
.home-content {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding-bottom: 15.6rem;
    position: relative;
    overflow: hidden;
}

.home-content h3 {
    font-family: "montserrat-medium", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: .3rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 1.2rem;
    margin-left: 6px;
}

.home-content h1 {
    font-family: "montserrat-medium", sans-serif;
    font-size: 6.3rem;
    line-height: 1.333;
    margin-top: 0;
    color: #FFFFFF;
}

.home-content__main {
    padding-top: 24rem;
    position: relative;
}

.home-content__buttons {
    padding-top: 6rem;
    text-align: left;
}

.home-content__buttons .btn {
    width: 215px;
    border-color: #FFFFFF;
    color: #FFFFFF;
    margin: 1.5rem 1.5rem 0 0;
    letter-spacing: .25rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home-content__buttons .btn:last-child {
    margin-right: 0;
}

.home-content__buttons .btn:hover, 
.home-content__buttons .btn:focus {
    background: #FFFFFF !important;
    color: #000000;
}

.home-content__scroll {
    position: absolute;
    right: 9.5rem;
    bottom: 8.4rem;
}

.home-content__scroll a {
    font-family: "montserrat-semibold", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    line-height: 3rem;
    padding-left: 2.5rem;
}

.home-content__scroll a::before {
    border-bottom: 2px solid var(--brand-accent);
    border-right: 2px solid var(--brand-accent);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.home-content__line {
    display: block;
    width: 2px;
    height: 10.2rem;
    background-color: var(--brand-accent);
    position: absolute;
    right: 7.2rem;
    bottom: 0;
}


/* ------------------------------------------------------------------- 
 * ## home social 
 * ------------------------------------------------------------------- */
.home-social {
    font-family: "montserrat-regular", sans-serif;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 5.4rem;
    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.home-social a {
    color: white;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home-social li {
    position: relative;
    padding: .9rem 0;
}

.home-social li a {
    display: block;
    width: 33px;
    height: 33px;
}

.home-social i, .home-social span {
    position: absolute;
    top: 0;
    line-height: 33px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home-social i {
    font-size: 14px;
    right: 0;
    text-align: center;
    display: inline-block;
    width: 33px;
    height: 33px;
    line-height: calc(33px - 4px);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

.home-social span {
    color: var(--brand-accent);
    right: 4.5rem;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.home-social li:hover span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/* animate .home-content__main
 * ------------------------------------------------------------------- */
html.cl-preload .home-content__main {
    opacity: 0;
}

html.cl-loaded .home-content__main {
    animation-duration: 2s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}


/* ------------------------------------------------------------------- 
 * ## home animations
 * ------------------------------------------------------------------- */


/* fade in */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 150%, 0);
        -ms-transform: translate3d(0, 150%, 0);
        transform: translate3d(0, 150%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 150%, 0);
        -ms-transform: translate3d(0, 150%, 0);
        transform: translate3d(0, 150%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/* fade out */

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -150%, 0);
        -ms-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -150%, 0);
        -ms-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);
    }
}


/* ------------------------------------------------------------------- 
 * responsive:
 * home
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1500px) {
    .home-content h1 {
        font-size: 6rem;
    }
    .home-content__main {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 1200px) {
    .home-content h1 {
        font-size: 5.5rem;
    }
    .home-content__main {
        max-width: 800px;
    }
}

@media only screen and (max-width: 1000px) {
    .home-content h1 {
        font-size: 4.6rem;
    }
    .home-content br {
        display: none;
    }
    .home-content__main {
        padding-top: 21rem;
        padding-right: 80px;
        max-width: 680px;
    }
}

@media only screen and (max-width: 800px) {
    .home-content h3 {
        font-size: 1.5rem;
    }
    .home-content h1 {
        font-size: 4rem;
    }
    .home-content__main {
        padding-right: 70px;
        max-width: 550px;
    }
}

@media only screen and (max-width: 700px) {
    .home-content__main {
        max-width: 490px;
    }
    .home-content__buttons {
        padding-top: 1.2rem;
        text-align: center;
    }
    .home-content__buttons .btn {
        display: block;
        width: 70%;
        margin: 1.5rem 0 0 0;
    }
    .home-social {
        right: 4rem;
    }
    .home-content__scroll {
        right: 7.5rem;
    }
    .home-content__line {
        right: 5.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .home-content h1 {
        font-size: 3.8rem;
    }
    .home-social {
        right: 2rem;
    }
    .home-social li {
        padding: .6rem 0;
    }
    .home-social i {
        font-size: 17px;
        border: none;
    }
    .home-social span {
        display: none;
    }
    .home-content__scroll {
        bottom: 5.4rem;
    }
    .home-content__line {
        height: 7.2rem;
    }
}

@media only screen and (max-width: 500px) {
    .s-home {
        min-height: 642px;
    }
    .home-content h1 {
        font-size: 3.5rem;
    }
    .home-content__main {
        text-align: center;
        max-width: none;
        padding-top: 15rem;
        padding-right: 25px;
        width: 85%;
    }
    .home-content__buttons {
        padding-top: 1.2rem;
    }
    .home-content__buttons .btn {
        width: auto;
        margin: 1.5rem 0 0 0;
    }
    .home-social {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .home-content h1 {
        font-size: 3.3rem;
    }
}

@media only screen and (max-width: 400px) {
    .s-home {
        min-height: 630px;
    }
    .home-content h1 {
        font-size: 3.2rem;
    }
    .home-content__main {
        padding-top: 16.2rem;
        width: auto;
    }
}



/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */
.s-about {
    padding-top: 16.2rem;
    padding-bottom: 9rem;
    background-color: var(--brand-accent);
    color: #ffffff;
    position: relative;
}

.s-about .section-header.has-bottom-sep::before {
    background-color: rgba(255, 255, 255, 0.25);
}

.about-desc {
    font-size: 2.4rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
    color: #ffffff;
}

/* Custom styles for About section subheadings */
.about-desc h4 {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.about-desc h4:first-of-type {
    margin-top: 4rem;
}

.about-desc h4:not(:first-of-type) {
    margin-top: 3rem;
}


/* ------------------------------------------------------------------- 
 * ## about stats
 * ------------------------------------------------------------------- */
.about-stats {
    text-align: center;
}

.stats__col {
    margin: 5.4rem 0;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stats__col:last-child {
    border-right: none;
}

.stats__count {
    font-family: "montserrat-bold", sans-serif;
    font-size: 8.4rem;
    line-height: 1;
    color: var(--brand-light);
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: -webkit-linear-gradient(var(--brand-light), var(--brand-main));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats h5 {
    font-family: "montserrat-semibold", sans-serif;
    margin-top: 1.8rem;
    color: var(--brand-main);
    font-size: 1.8rem;
    line-height: 1.333;
    position: relative;
    letter-spacing: 0.05rem;
}

.about__line {
    display: block;
    width: 2px;
    height: 10.2rem;
    background: linear-gradient(to bottom, var(--brand-light), var(--brand-main));
    position: absolute;
    right: 7.2rem;
    top: 0;
    box-shadow: 0 0 10px rgba(74, 144, 184, 0.3);
}


/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .about-desc {
        font-size: 2.2rem;
        max-width: 940px;
    }
    .about-stats {
        padding-top: 3rem;
        padding-bottom: 3.9rem;
    }
    .about-stats {
        max-width: 800px;
    }
    .stats__col {
        margin: 1.5rem 0;
    }
    .stats__col:nth-child(n) {
        border: none;
    }
    .stats__col:nth-child(2n+1) {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }
}

@media only screen and (max-width: 800px) {
    .about-desc {
        font-size: 2rem;
        max-width: 600px;
    }
    .stats__count {
        font-size: 8rem;
    }
    .stats h5 {
        margin-top: 1.2rem;
    }
}

@media only screen and (max-width: 700px) {
    .about__line {
        right: 5.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .s-about {
        padding-top: 12rem;
    }
    .about-desc {
        font-size: 1.9rem;
    }
    .about-stats {
        padding-top: 0;
    }
    .stats__col {
        margin: 0;
        padding-top: 3rem;
        padding-bottom: 3rem;
        position: relative;
    }
    .stats__col::after {
        content: "";
        display: block;
        height: 1px;
        width: 250px;
        background-color: rgba(255, 255, 255, 0.25);
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -125px;
    }
    .stats__col:last-child::after {
        display: none;
    }
    .stats__col:nth-child(n) {
        border: none;
    }
    .about__line {
        height: 7.2rem;
    }
}

@media only screen and (max-width: 400px) {
    .about-desc {
        font-size: 1.8rem;
    }
    .stats__count {
        font-size: 7.8rem;
    }
}



/* ===================================================================
 * # services - Modern Professional Design
 *
 * ------------------------------------------------------------------- */
.s-services {
    background: linear-gradient(135deg, #0f1e32 0%, #1a2d4a 50%, #0f1e32 100%);
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
}

.s-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 184, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.s-services > * {
    position: relative;
    z-index: 2;
}

.s-services .section-header {
    text-align: center;
    margin-bottom: 8rem;
}

.s-services .subhead {
    color: rgba(135, 206, 235, 0.9);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.s-services .subhead::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a90b8 0%, #87ceeb 100%);
    border-radius: 2px;
}

.s-services .display-2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 80rem;
    margin: 0 auto;
}

/* ------------------------------------------------------------------- 
 * ## services list - Modern Card Design
 * ------------------------------------------------------------------- */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.service-item {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(20, 40, 70, 0.95) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 0;
    border: 1px solid rgba(135, 206, 235, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 0.1) 0%, rgba(135, 206, 235, 0.05) 100%);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-item:hover::before {
    left: 0;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(135, 206, 235, 0.5);
}

.service-item > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 5rem;
    color: #4a90b8;
    margin-bottom: 2.5rem;
    display: block;
    text-align: center;
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(74, 144, 184, 0.3);
}

.service-item:hover .service-icon {
    color: #87ceeb;
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
}

.service-text {
    margin-left: 0;
    text-align: center;
}

.service-text .h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-text .h2 {
    color: #87ceeb;
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.4);
}

.service-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-item:hover .service-text p {
    color: rgba(255, 255, 255, 0.9);
}


/* ------------------------------------------------------------------- 
 * responsive:
 * services - Modern Design
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        max-width: 1000px;
    }
    
    .s-services .display-2 {
        font-size: 3.5rem;
    }
    
    .service-item {
        padding: 3.5rem 2.5rem;
    }
}

@media only screen and (max-width: 900px) {
    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .s-services {
        padding: 10rem 0;
    }
    
    .s-services .section-header {
        margin-bottom: 6rem;
    }
    
    .s-services .display-2 {
        font-size: 3.2rem;
    }
    
    .service-icon {
        font-size: 4.5rem;
    }
    
    .service-text .h2 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .service-item {
        padding: 3rem 2rem;
    }
    
    .s-services .display-2 {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    
    .s-services .subhead {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .service-text .h2 {
        font-size: 1.9rem;
    }
    
    .service-text p {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .s-services {
        padding: 8rem 0;
    }
    
    .s-services .section-header {
        margin-bottom: 5rem;
    }
    
    .s-services .display-2 {
        font-size: 2.5rem;
    }
    
    .service-item {
        padding: 2.5rem 1.5rem;
    }
    
    .service-icon {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .service-text .h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-text p {
        font-size: 1.4rem;
        line-height: 1.7;
    }
}

@media only screen and (max-width: 400px) {
    .services-list {
        padding: 0 1rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .s-services .display-2 {
        font-size: 2.2rem;
    }
    
    .service-icon {
        font-size: 3.5rem;
    }
    
    .service-text .h2 {
        font-size: 1.7rem;
    }
    
    .service-text p {
        font-size: 1.3rem;
    }
}
/* ===================================================================
 * # clients
 *
 * ------------------------------------------------------------------- */
.s-clients {
    padding-top: 16.2rem;
    padding-bottom: 16.8rem;
    background-color: #e6e6e6;
    color: #757575;
    position: relative;
}


/* ------------------------------------------------------------------- 
 * ## slider
 * ------------------------------------------------------------------- */
.clients-outer {
    margin-top: 3.6rem;
    padding-bottom: 9rem;
    text-align: center;
    position: relative;
}

.clients__slide {
    display: block;
    opacity: .55;
    padding: 1.5rem 2.8rem;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.clients__slide:hover, .clients__slide:focus {
    opacity: 1;
}


/* ------------------------------------------------------------------- 
 * ## testimonials
 * ------------------------------------------------------------------- */
.clients-testimonials {
    margin-top: 4.2rem;
    padding-top: 7.2rem;
    text-align: center;
    position: relative;
}

.clients-testimonials::before {
    content: "";
    display: block;
    height:  1px;
    width: 550px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.clients-testimonials .testimonials {
    margin: 0 10%;
}

.clients-testimonials .testimonials p {
    font-family: "lora-regular", serif;
    font-size: 3rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 6rem;
}

.clients-testimonials .testimonials__slide {
    padding: 0 0 3rem 0;
}

.clients-testimonials .testimonials__avatar {
    height: 8.4rem;
    width: 8.4rem;
    border-radius: 50%;
    margin: 0 auto 1.2rem auto;
}

.clients-testimonials .testimonials__name, 
.clients-testimonials .testimonials__pos {
    display: block;
}

.clients-testimonials .testimonials__name {
    font-family: "montserrat-semibold", sans-serif;
    color: #000000;
}

.clients-testimonials .testimonials__pos {
    font-family: "montserrat-light", sans-serif;
    font-size: 1.4rem;
}

.clients-testimonials .testimonials .slick-arrow {
    position: absolute;
    top: 7.2rem;
    width: 66px;
    height: 66px;
    margin: 0;
    padding: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 22px 15px;
    background-position: center;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    z-index: 2;
}

.clients-testimonials .testimonials .slick-prev {
    left: -130px;
    background-image: url("../images/left-arrow.png");
}

.clients-testimonials .testimonials .slick-next {
    right: -130px;
    background-image: url("../images/right-arrow.png");
}

.clients-testimonials .testimonials .slick-dots {
    margin-top: -0.6px;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * clients
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .clients-testimonials .testimonials {
        margin: 0 12%;
    }
    .clients-testimonials .testimonials p {
        font-size: 2.6rem;
    }
    .clients-testimonials .testimonials .slick-prev {
        left: -100px;
    }
    .clients-testimonials .testimonials .slick-next {
        right: -100px;
    }
}

@media only screen and (max-width: 1000px) {
    .clients-testimonials .testimonials p {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 800px) {
    .clients-testimonials::before {
        width: 400px;
    }
    .clients-testimonials .testimonials {
        margin: 0 2rem;
    }
    .clients-testimonials .testimonials .slick-arrow {
        top: auto;
        bottom: 3rem;
    }
    .clients-testimonials .testimonials .slick-prev {
        left: 0;
    }
    .clients-testimonials .testimonials .slick-next {
        right: 0;
    }
}

@media only screen and (max-width: 600px) {
    .s-clients {
        padding-top: 12rem;
    }
    .clients-testimonials::before {
        width: 250px;
    }
    .clients-testimonials .testimonials {
        margin: 0;
    }
    .clients-testimonials .testimonials p {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 400px) {
    .clients-testimonials .testimonials p {
        font-size: 1.9rem;
    }
}



/* ===================================================================
 * # contact 
 *
 * ------------------------------------------------------------------- */
.s-contact {
    background-color: #151515;
    background-image: url("../images/contact-bg.jpg");
    background-repeat: no-repeat;
    background-position: center, center;
    padding-top: 15rem;
    padding-bottom: 12rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.s-contact .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    background-color: #151515;
}

.s-contact .form-field {
    position: relative;
}

.s-contact .form-field:after {
    content: "";
    display: table;
    clear: both;
}

.s-contact .form-field label {
    font-family: "montserrat-light", sans-serif;
    font-size: 1rem;
    line-height: 2.4rem;
    position: absolute;
    bottom: -0.3rem;
    right: .6rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    padding: 0 2rem;
    margin: 0;
    color: #FFFFFF;
    background: var(--brand-accent);
}

.s-contact .form-field label::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    margin-top: -6px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid var(--brand-accent);
}

.contact__line {
    display: block;
    width: 2px;
    height: 20.4rem;
    background-color: var(--brand-accent);
    position: absolute;
    left: 50%;
    top: -10.2rem;
    margin-left: -1px;
}

.contact-content {
    max-width: 1000px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.4);
    padding-top: 6rem;
    padding-bottom: 6rem;
    font-family: "montserrat-light", sans-serif;
    font-size: 1.5rem;
    line-height: 2;
    position: relative;
}

.contact-content h3 {
    margin-top: 0;
    margin-bottom: 6.6rem;
    color: #FFFFFF;
}

.contact-content h5 {
    margin-top: 0;
    color: var(--brand-accent);
}

.contact-content input[type="email"],
.contact-content input[type="number"],
.contact-content input[type="search"],
.contact-content input[type="text"],
.contact-content input[type="tel"],
.contact-content input[type="url"],
.contact-content input[type="password"],
.contact-content textarea,
.contact-content select {
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: .9rem;
}

.contact-content input[type="email"]:focus,
.contact-content input[type="number"]:focus,
.contact-content input[type="search"]:focus,
.contact-content input[type="text"]:focus,
.contact-content input[type="tel"]:focus,
.contact-content input[type="url"]:focus,
.contact-content input[type="password"]:focus,
.contact-content textarea:focus,
.contact-content select:focus {
    color: #FFFFFF;
    border-bottom: 1px solid var(--brand-accent);
}

.contact-content button,
.contact-content .btn {
    margin-top: 3.6rem;
}
.contact-content input::-webkit-input-placeholder,
.contact-content select::-webkit-input-placeholder,
.contact-content textarea::-webkit-input-placeholder {
    color: #4f4f4f;
}

.contact-content input:-moz-placeholder,
.contact-content select:-moz-placeholder,
.contact-content textarea:-moz-placeholder {
    color: #4f4f4f;    /* Firefox 18- */
}

.contact-content input::-moz-placeholder,
.contact-content select::-moz-placeholder,
.contact-content textarea::-moz-placeholder {
    color: #4f4f4f;    /* Firefox 19+ */
}

.contact-content input:-ms-input-placeholder,
.contact-content select:-ms-input-placeholder,
.contact-content textarea:-ms-input-placeholder {
    color: #4f4f4f;
}

.contact-content input.placeholder,
.contact-content select.placeholder,
.contact-content textarea.placeholder {
    color: #4f4f4f !important;
}
.contact-primary, .contact-secondary {
    float: left;
    padding: 0 5rem;
}

.contact-primary {
    width: 65%;
}

.contact-primary #contactForm {
    margin-top: -1.5rem;
}

.contact-secondary {
    width: 35%;
}

.contact-secondary::before {
    content: "";
    display: block;
    width: 35%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #121212;
}

.contact-secondary .contact-info {
    position: relative;
}

.contact-secondary .cinfo {
    margin-bottom: 4.8rem;
}

.contact-social {
    list-style: none;
    display: inline-block;
    margin: 0;
    font-size: 2rem;
}

.contact-social li {
    margin-right: 15px;
    padding-left: 0;
    display: inline-block;
}

.contact-social li a {
    color: white;
}

.contact-social li a:hover, 
.contact-social li a:focus {
    color: var(--brand-accent);
}

.contact-social li:last-child {
    margin: 0;
}

.message-warning, 
.message-success {
    display: none;
    background: #111111;
    font-size: 1.5rem;
    line-height: 2;
    padding: 3rem;
    margin-bottom: 3.6rem;
    width: 100%;
}

.message-warning {
    color: #ff6163;
}

.message-success {
    color: var(--brand-accent);
}

.message-warning i, .message-success i {
    margin-right: 10px;
    font-size: 1.2rem;
}


 /* form loader
 * ----------------------------------------------- */
.submit-loader {
    display: none;
    position: relative;
    left: 0;
    top: 1.8rem;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

.submit-loader .text-loader {
    display: none;
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.846;
    color: #FFFFFF;
    letter-spacing: .2rem;
    text-transform: uppercase;
}

.oldie .submit-loader .s-loader {
    display: none;
}

.oldie .submit-loader .text-loader {
    display: block;
}


/* --------------------------------------------------------------- 
 * ## loader animation 
 * --------------------------------------------------------------- */
.s-loader {
    margin: 1.2rem auto 3rem;
    width: 70px;
    text-align: center;
    -webkit-transform: translateX(0.45rem);
    -ms-transform: translateX(0.45rem);
    transform: translateX(0.45rem);
}

.s-loader > div {
    width: 9px;
    height: 9px;
    background-color: #FFFFFF;
    border-radius: 100%;
    display: inline-block;
    margin-right: .9rem;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
    animation: bouncedelay 1.4s infinite ease-in-out both;
}

.s-loader .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.s-loader .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}


/* ==================== Dark Mode Enhancements ==================== */

/* مزيد من تعزيز التباعد بين الأسطر للنصوص */
body {
    line-height: 1.8;
}

/* مزيد من تعزيز التباعد بين الأسطر للعناوين */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}

/* تحسين تباين النصوص في النمط الداكن */
p, li, span, label, input, textarea {
    color: #e0e0e0 !important; /* لون رمادي فاتح للنصوص الأساسية */
}

/* أزرار أكثر وضوحاً في النمط الداكن */
.btn, button, input[type="submit"] {
    background: var(--gradient-primary);
    color: var(--text-bright);
    border: 1.5px solid var(--brand-accent);
    box-shadow: 0 2px 12px rgba(74, 144, 184, 0.10);
    text-shadow: 0 1px 4px rgba(30, 58, 95, 0.18);
}

.btn:hover, button:hover, input[type="submit"]:hover {
    background: var(--gradient-hover);
    color: var(--brand-light);
    border-color: var(--brand-light);
    box-shadow: 0 4px 18px rgba(74, 144, 184, 0.18);
}

/* تأثير توهج للأيقونات والعناوين */
.service-icon, .home-social a, .header-nav__social a, .footer-social a {
    color: var(--brand-light);
    text-shadow: 0 0 12px rgba(135, 206, 235, 0.25);
    transition: color 0.3s, text-shadow 0.3s;
}

.service-icon:hover, .home-social a:hover, .header-nav__social a:hover, .footer-social a:hover {
    color: var(--brand-accent);
    text-shadow: 0 0 18px rgba(135, 206, 235, 0.45);
}

/* خلفيات البطاقات والأقسام موحدة داكنة */
.s-services, .s-works, .s-about, .s-contact, .service-card, .work-item, .stats-block, .contact-block {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(15, 28, 45, 0.18);
    border: 1px solid var(--border-dark);
}

/* تحسين مظهر الإحصائيات */
.stats__count, .stat-item__number {
    color: var(--brand-light) !important;
    text-shadow: 0 2px 8px rgba(74, 144, 184, 0.3);
}

.stats h5, .stat-item__label {
    color: var(--brand-accent);
    font-weight: 600;
}

/* تحسين مظهر الفوتر */
.footer, .footer-main {
    background: var(--brand-dark);
    color: var(--text-secondary);
    border-top: 1.5px solid var(--brand-accent);
}

.footer a, .footer-main a {
    color: var(--brand-light);
    text-shadow: 0 0 8px rgba(135, 206, 235, 0.18);
}

.footer a:hover, .footer-main a:hover {
    color: var(--brand-accent);
    text-shadow: 0 0 12px rgba(135, 206, 235, 0.28);
}

/* تحسين مظهر الحقول */
input, textarea, select {
    background: var(--bg-card);
    color: var(--text-bright);
    border: 1.5px solid var(--border-dark);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--brand-light);
    box-shadow: 0 0 0 2px rgba(74, 144, 184, 0.18);
}

/* تحسين مظهر شريط التمرير */
::-webkit-scrollbar-thumb {
    background: var(--brand-accent);
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

/* ===================================================================
 * # Modern Footer Styles
 *
 * ------------------------------------------------------------------- */
.modern-footer {
    background-color: #121920;
    color: #ffffff;
    font-family: "montserrat-regular", sans-serif;
    position: relative;
}

.footer-wave {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 140px;
    display: block;
}

.footer-main-container {
    background-color: #121920;
    padding: 5rem 0;
}

.footer-bottom-container {
    background-color: #0c1218;
    padding: 2.5rem 0;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-links {
    flex: 0 0 200px;
    min-width: 180px;
}

.footer-contact {
    flex: 0 0 250px;
    min-width: 220px;
}

.footer-logo {
    margin-bottom: 2.5rem;
}

.footer-text-logo {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-info p {
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.6rem;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #1e3a5f;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 1.8rem;
}

.footer-social a:hover {
    background-color: #4a90b8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 184, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1.9rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.2rem;
}

.footer-links h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90b8 0%, #87ceeb 100%);
    border-radius: 2px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 1.2rem;
}

.footer-nav a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    display: block;
    padding: 0.5rem 0;
}

.footer-nav a:hover {
    color: #4a90b8;
    padding-left: 8px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
}

.footer-contact-info li i {
    font-size: 1.8rem;
    color: #4a90b8;
    margin-right: 1.5rem;
    width: 25px;
    text-align: center;
}

.footer-contact-info a,
.footer-contact-info span {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

.footer-contact-info a:hover {
    color: #4a90b8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #a0a0a0;
    font-size: 1.4rem;
    line-height: 1.6;
}

.footer-tagline {
    color: #4a90b8;
    font-style: italic;
    font-weight: 500;
}

.go-top {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1e3a5f;
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.go-top:hover {
    background-color: #4a90b8;
    transform: translateY(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 184, 0.3);
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .footer-main {
        gap: 3rem;
    }
    
    .footer-text-logo {
        font-size: 2.6rem;
    }
    
    .footer-info {
        max-width: 350px;
    }
}

@media only screen and (max-width: 992px) {
    .footer-main {
        gap: 2.5rem;
    }
    
    .footer-text-logo {
        font-size: 2.4rem;
    }
    
    .footer-links {
        flex: 0 0 180px;
    }
    
    .footer-contact {
        flex: 0 0 220px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-main-container {
        padding: 4rem 0;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }
    
    .footer-info,
    .footer-links,
    .footer-contact {
        flex: none;
        max-width: 100%;
        min-width: auto;
    }
    
    .footer-text-logo {
        font-size: 2.2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h4:after,
    .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-tagline {
        margin-top: 0;
    }
    
    .go-top {
        position: static;
        transform: none;
        margin: 2rem auto 0;
    }
    
    .go-top:hover {
        transform: translateY(-3px);
    }
}

@media only screen and (max-width: 600px) {
    .footer-main-container {
        padding: 3rem 0;
    }
    
    .footer-text-logo {
        font-size: 2rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .footer-info p {
        font-size: 1.5rem;
    }
    
    .footer-nav a,
    .footer-contact-info a,
    .footer-contact-info span {
        font-size: 1.5rem;
    }
    
    .go-top {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 480px) {
    .footer-text-logo {
        font-size: 1.8rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.7rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 400px) {
    .footer-main-container {
        padding: 2.5rem 0;
    }
    
    .footer-main {
        gap: 3rem;
    }
    
    .footer-text-logo {
        font-size: 1.6rem;
    }
    
    .footer-info p {
        font-size: 1.4rem;
    }
    
    .footer-nav a,
    .footer-contact-info a,
    .footer-contact-info span {
        font-size: 1.4rem;
    }
}

/* Contact Form Only - Centered Modern Design */
.contact-form-only {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.contact-form-container {
    background: rgba(30, 58, 95, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 82, 130, 0.15);
    padding: 4rem 3rem;
    max-width: 600px;
    width: 100%;
    color: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 184, 0.2);
}

.contact-form-title {
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.3);
}

.contact-form-container .form-field {
    margin-bottom: 2.5rem;
}

.contact-form-container input,
.contact-form-container textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(74, 144, 184, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: #4a90b8;
    box-shadow: 0 0 0 3px rgba(74, 144, 184, 0.2);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #1e3a5f 0%, #4a90b8 100%);
    border: none;
    border-radius: 12px;
    padding: 1.8rem 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #4a90b8 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 184, 0.4);
}

.contact-form-container .message-warning,
.contact-form-container .message-success {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 1.4rem;
    display: none;
}

.contact-form-container .message-warning {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b7d;
}

.contact-form-container .message-success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #4dd865;
}

/* Responsive Design for Form Only */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .contact-form-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-form-container input,
    .contact-form-container textarea {
        padding: 1.2rem;
        font-size: 1.4rem;
    }
    
    .contact-submit-btn {
        padding: 1.5rem;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .contact-form-container .form-field {
        margin-bottom: 2rem;
    }
}

/* Hero Section Button Hover: Show blue text */
.home-content__buttons .btn--stroke:hover, 
.home-content__buttons .btn--stroke:focus {
    color: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    background: transparent !important;
}

/* Modern Professional Works Section */
.s-works {
    background: linear-gradient(135deg, #0f1e32 0%, #1a2d4a 50%, #0f1e32 100%);
    position: relative;
    overflow: hidden;
    padding: 12rem 0;
}

.s-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 184, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.s-works > * {
    position: relative;
    z-index: 2;
}

/* Premium Section Header */
.works-header {
    text-align: center;
    margin-bottom: 8rem;
}

.section-intro {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(74, 144, 184, 0.2) 100%);
    color: rgba(135, 206, 235, 0.9);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 1px solid rgba(135, 206, 235, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.section-description {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 60rem;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Advanced Filter Section */
.works-filter-section {
    margin-bottom: 6rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.filter-tabs {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(20, 35, 60, 0.95) 0%, rgba(30, 50, 80, 0.9) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(135, 206, 235, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(135, 206, 235, 0.2);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(74, 144, 184, 0.3) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-tab:hover::before,
.filter-tab.active::before {
    left: 0;
}

.filter-tab:hover,
.filter-tab.active {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(135, 206, 235, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.filter-icon {
    font-size: 2rem;
}

.filter-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-count {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.8) 0%, rgba(74, 144, 184, 0.9) 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 3rem;
    text-align: center;
}

/* Simple Image Gallery Styles */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
    max-width: 140rem;
    margin: 0 auto;
}

.image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    background: linear-gradient(135deg, rgba(20, 35, 60, 0.9) 0%, rgba(30, 50, 80, 0.8) 100%);
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.image-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.image-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.2);
    border-color: rgba(135, 206, 235, 0.4);
}

.image-container {
    position: relative;
    height: 25rem;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.image-item:hover .portfolio-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

/* Premium Stats Section */
.works-stats-section {
    background: linear-gradient(135deg, rgba(20, 35, 60, 0.95) 0%, rgba(30, 50, 80, 0.9) 100%);
    border-radius: 25px;
    margin: 0 2rem;
    padding: 6rem 4rem;
    border: 1px solid rgba(135, 206, 235, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(74, 144, 184, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.05) 0%, rgba(74, 144, 184, 0.05) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.stat-card:hover::before {
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.15) 0%, rgba(74, 144, 184, 0.15) 100%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
    border-color: rgba(135, 206, 235, 0.4);
}

.stat-card > * {
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(135, 206, 235, 0.9);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Simple Gallery Complete Styles */

/* Responsive Design */
/* Simple Gallery Responsive Design */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .works-gallery-section {
        margin-bottom: 6rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
        gap: 1.5rem;
    }
    
    .image-item {
        margin: 0 1rem;
    }
    
    .image-container {
        height: 20rem;
    }
}

@media (max-width: 480px) {
    .works-gallery-section {
        margin-bottom: 4rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-item {
        margin: 0 0.5rem;
    }
    
    .image-container {
        height: 18rem;
    }
}
