/* 

1. Default and Reset styles
- 1.1 Input Elements
2. Global elements
- 2.1 Header
- 2.2 Logo
- 2.3 Buttons
- 2.4 Navigation
- 2.5 Social Elements
- 2.6 Images
3. Fonts and Headings
4. Banner
- 4.1 SignUp Form
5. Content Elements
- 5.1 Icons
- 5.2 Parallax Elements
- 5.3 Divider
6. Landing Page Sections
- 6.1 Features
- 6.2 Testimonials
- 6.3 Gallery
- 6.4 Video
- 6.5 Clients
- 6.6 Pricing Table
7. Footer


/* 1. Defaults & Reset of specific styles across browsers */


*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, blockquote, th, td {
    margin: 0;
    padding: 0;
    direction: ltr;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

p {
    line-height: 25px;
}

.row img {
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
    line-height: inherit;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

iframe {
    border: 0 !important;
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

figure {
    margin: 0;
}

/* Page Border */

.page-border {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

.page-border .bottom-border, .page-border .left-border, .page-border .right-border, .page-border .top-border {
    background: #f3f3ef;
    position: fixed;
    z-index: 9999;
}

.page-border > .top-border, .page-border > .right-border, .page-border > .bottom-border, .page-border > .left-border {
    padding: 11px;
    background: #ccc;
}

.page-border .bottom-border, .page-border .top-border {
    width: 100%;
    padding: 10px;
    left: 0;
}

.page-border .left-border, .page-border .right-border {
    padding: 10px;
    height: 100%;
    top: 0;
}

.page-border .top-border {
    top: 0;
}

.page-border .right-border {
    right: 0;
}

.page-border .bottom-border {
    bottom: 0;
}

.page-border .left-border {
    left: 0;
}

#page-wrapper {
    margin:0 15px;
    padding: 15px 0;
    position: relative;
}


/*  1.1 Input Elements */

input, textarea {
    border: 1px solid #e1e1e1;
    padding: 10px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: 3px;
}

input {
    height: 40px;
    margin: 3px 0;
    outline: none;
    line-height: normal;
    font-size: 14px;
}

input[type="submit"] {
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
    padding-top: 0;
    padding-bottom: 0;
}

select {
    border: 1px solid #e1e1e1;
    height: 40px;
    padding: 5px;
}

input:focus, textarea:focus {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

*:focus {
    outline: none;
}


/* 2. Layout Elements */


section {
    clear: both;
    overflow: hidden;
}

/* Rows and Columns */

.row {
    max-width: 1245px;
    margin: 0 auto;
    padding: 75px 0;
    position: relative;
}

.no-padding-bottom .row, .no-padding-bottom div, .no-padding-bottom.row {
    padding-bottom: 0;
}

.no-padding-top.row, .no-padding-top div {
    padding-top: 0;
}

.big-padding-top {
    padding-top: 75px !important;
}

.big-padding-bottom {
    padding-bottom: 85px !important;
}

/* Targets all elements */

[class*='col-'] {
    float: left;
    padding: 20px;
}

#skills .col-2-3 [class*='col-'] {
    padding: 0;
}

/* Clearfix */

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Main Widths */

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: 33.33%;
}

.col-4 {
    width: 25%;
}

.col-5 {
    width: 20%;
}

.col-6 {
    width: 16.6666666667%;
}

.col-7 {
    width: 14.2857142857%;
}

.col-8 {
    width: 12.5%;
}

.col-9 {
    width: 11.1111111111%;
}

.col-10 {
    width: 10%;
}

.col-11 {
    width: 9.09090909091%;
}

.col-12 {
    width: 8.33%;
}

.col-2-3 {
    width: 66.66%;
}

.col-3-4 {
    width: 75%;
}

.col-9-10 {
    width: 90%;
}

/* Golden Ratio */
.col-61 {
    width: 61.8%;
}

.col-38 {
    width: 38.2%;
}

/* Header */

#site-header {
    height: 71px !important;
    overflow: visible;
    z-index: 9999;
    width: 100%;
    position: absolute !important;
}

#site-header .row {
    padding: 0;
}

#site-header aside {
    text-align: right;
}

#site-header ul {
    text-align: center;
}

#site-header li {
    display: inline-block;
    list-style: none;
    margin: 0;
}

/* Logo */

#site-logo {
    float: left;
    height: 71px;
    line-height: 66px;
    margin-right: 15px;
}

#site-logo h1, #site-logo h2 {
    display: inline-block;
}

#home #site-logo h1 {
    font-size: 29px;
    margin-right: 10px;
    font-weight: 900;
    padding: 0;
}

#site-logo h2 {
    font-size: 18px;
    padding: 0;
}

#site-logo img {
    max-height: 65px;
    vertical-align: middle;
    margin-right: 15px;
}

#logo-nav {
    display: none;
}

.nav-solid #site-logo #logo-banner {
    display: none;
}

.nav-solid #site-logo #logo-nav {
    display: inline-block;
}

/* Buttons */

.call-to-action {
    padding: 35px 0 35px 0;
}

/*Style*/

/* Navigation */

#site-header {
    font-size: 13px;
}

#site-header aside {
    float: right;
}

#site-header nav ul {
    text-transform: uppercase;

}

#site-header nav a {
    height: 71px;
    line-height: 71px;
    display: block;
    padding: 0 10px;
}

#site-header nav a:hover {
    opacity: 0.6;
}

/*Navigation Solid*/

#site-header.nav-solid [class*='col-'] {
    padding: 0 20px;
}

#site-header.nav-solid {
    background: #fff;
    box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.2);
    position: fixed !important;
    left:0;
}

#site-header.nav-solid nav a {
    border-bottom: 3px solid;
    border-color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#site-header.nav-solid nav a:hover {
    opacity: 1;
}

/* Social Elements when Solid*/

#site-header.nav-solid .social-icons a {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0.5;
}

#site-header.nav-solid .social-icons a:hover {
    opacity: 1;
    color: #e4473c;
}

/* Responsive Nav Styling */

#mobile-nav-trigger {
    display: none;
    text-align: right;
}

#mobile-nav-trigger span {
    display: inline-block;
    width: 38px;
    height: 71px;
    color: #111;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#mobile-nav-trigger span:after {
    font-family: "fontAwesome";
    display: inline-block;
    width: 38px;
    height: 71px;
    line-height: 75px;
    text-align: center;
    content: "\f0c9";
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

#mobile-nav-trigger span.open:after {
    content: "\f00d";
}

#mobile-nav-trigger span:hover, .nav-solid #mobile-nav-trigger span.open:hover, .nav-solid #mobile-nav-trigger span:hover {
    opacity: 0.6;
}

#mobile-nav-trigger span.open, #mobile-nav-trigger span.open:hover {
    color: #111;
}

.nav-solid #mobile-nav-trigger span.open:hover {
    color: #999;
}

.nav-solid #mobile-nav-trigger span {
    color: #999;
    opacity: 1;
}

nav#mobile-nav {
    position: relative;
    display: none;
}

nav#mobile-nav ul {
    display: none;
    list-style-type: none;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
}

nav#mobile-nav ul:after {
    display: none;
}

nav#mobile-nav li {
    margin: 0 20px;
    float: none;
    text-align: left;
    border-bottom: 1px solid #e1e1e1;
}

nav#mobile-nav li:last-child {
    border-bottom: none;
}

.nav-solid nav#mobile-nav li {
    border-top: 1px solid #e1e1e1;
    border-bottom: none;
}

nav#mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #333;
    width: 100%;
    height: auto;
    line-height: normal;
    display: block;
    border-bottom: none !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

nav#mobile-nav a:hover {
    background: #fafafa;
    opacity: 1;
}

/* Social Elements */

#site-header .col-4 {
    text-align: right;
}

.social-icons {
    display: inline-block;
    list-style: none;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    text-align: center;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons span {
    display: none;
}

#site-header .social-icons {
    margin-top: 27px;
}

/* Images */

/*Alignment*/

img {
    vertical-align: top;
}

.image-center {
    display: block;
    margin: 0 auto;
}

a img {
    border: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
}

a img:hover {
    opacity: 0.7;
}

/* 3. Fonts */


h1 {
    padding: 20px 0;
}

h2 {
    padding: 14px 0;
}

h3 {
    padding: 10px 0;
}

h4 {
    padding: 7px 0;
}

h5 {
    padding: 7px 0;
}

h6 {
    padding: 7px 0;
}

/* Text Alignment */

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Section Headings */

.section-heading {
    padding: 0 0 15px 0;
}

.section-subtitle {
    font-size: 18px;
    padding-top: 0;
}

.section-heading h3 {
    font-size: 14px;
    font-weight: bold;
    color: #ccc;
    letter-spacing: 2px;
    padding-bottom: 0;
}

/* 4. Banner / Home */

#hero-section {
    background-size: cover;
}

#hero-content.row {
    padding-top: 170px;
    padding-bottom: 100px;
}

#hero-section h1 {
    padding-top: 5%;
}

#hero-section .section-heading:before {
    content: "";
    display: block;
    width: 30px;
    height: 5px;
    margin-top: 30px;
}




/* 5. Content Elements */


/* 5.1 Icons  */

/*Font Icon sizes*/

.fa-1x {
    font-size: 15px !important;
}

/*Icon Block*/

.icon-block {
    position: relative;
}

.icon-block h4 {
    font-weight: bold;
    padding-top: 0;
}

.icon-block .icon {
    position: absolute;
}

.icon-block p {
    margin-top: 0;
}

/* Icon Left*/

.icon-left .icon {
    left: 15;
}

.icon-left .icon-block-description {
    padding-left: 53px;
}

/* Icon Right */

.icon-right .icon {
    right: 15;
}

.icon-right .icon-block-description {
    padding-right: 53px;
}

/* Icon Above */

.icon-top {
    display: block;
}

.icon-top .icon {
    position: relative;
    display: block;
}

.icon-top .icon-block-description {
    padding-top: 25px;
}

/* Parallax Elements */

.banner-parallax-1, .banner-parallax-2, .banner-parallax-3 {
    min-height: 350px;
}

/* Divider */

.divider {
    position: relative;
    width: 40%;
    height: 20px;
    line-height: 20px;
    margin: 10px auto 5px auto;
    clear: both;
    text-align: center;
}

.divider-inner {
    position: absolute;
    height: 1px;
    width: 100%;
    top: 50%;
    margin-top: -1px;
    border-top: 1px solid;
    border-color: #e1e1e1;
}

.divider i {
    background: #fff;
    position: relative;
    top: -11px;
    padding: 0 5px 0 5px;
    color: #e1e1e1;
}


/* 6. Landing Page Sections */


/* 6.1 Introduction */

.introduction img.featured {
    padding: 55px 0 0 0;
}

/* Features */

.features.row {
    padding-left: 5%;
    padding-right: 5%;
}

.features div:nth-child(4) {
    clear: both;
}

/* Testimonials */

.testimonial {
    padding: 15px;
}

blockquote {
    position: relative;
}

.testimonial img {
    max-height: 120px;
    border-radius: 250em;
}

.testimonial footer {
    padding-top: 12px;
}

/* Style Classic - Avatar above Testimonial */

.testimonial.classic img {
    display: inline-block;
    margin-bottom: 25px;
}

.testimonial.classic q {
    display: block;
}

.testimonial.classic footer:before {
    display: block;
    content: "";
    width: 30px;
    height: 4px;
    margin: 10px auto 15px auto;
}

/* Style Big */

.testimonial.bigtest {
    padding-top: 0;
}

.testimonial.bigtest q {
    font-size: 22px;
}

/* Gallery */

#gallery-section img {
    max-height: 300px;
}

#gallery-section [class*='col-'] {
    padding: 0;
}

#gallery-section a {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

#gallery-section a:hover img {
    opacity: 0.15;
    backface-visibility: hidden;
}

#gallery-section a:before {
    font-size: 2.2em;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    content: "+";
    width: 70px;
    height: 70px;
    border-radius: 100em;
    display: block;
    position: absolute;
    top: 55%;
    left: 50%;
    line-height: 72px;
    margin: -35px 0 0 -35px;
    opacity: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
}

#gallery-section a:hover:before {
    opacity: 1;
    top: 50%;
    left: 50%;
}


@media all {
    .featherlight {
        display: none;

        /* dimensions: spanning the background from edge to edge */
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2147483647; /* z-index needs to be >= elements on the site. */

        /* position: centering content */
        text-align: center;

        /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
        white-space: nowrap;

        /* styling */
        cursor: pointer;
        background: #333;
        /* IE8 "hack" for nested featherlights */
        background: rgba(0, 0, 0, 0);
    }

    /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
    .featherlight:last-of-type {
        background: rgba(0, 0, 0, 0.8);
    }

    .featherlight:before {
        /* position: trick to center content vertically */
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.25em;
    }

    .featherlight .featherlight-content {

        /* position: centering vertical and horizontal */
        text-align: left;
        vertical-align: middle;
        display: inline-block;

        /* dimensions: cut off images */
        overflow: auto;
        padding: 25px 0;
        border-bottom: 25px solid transparent;

        /* dimensions: handling small or empty content */
        min-width: 30%;

        /* dimensions: handling large content */
        margin-left: 5%;
        margin-right: 5%;
        max-height: 95%;

        /* styling */
        cursor: auto;

        /* reset white-space wrapping */
        white-space: normal;
    }

    /* contains the content */
    .featherlight .featherlight-inner {
        /* make sure its visible */
        display: block;
    }

    .featherlight .featherlight-close-icon {
        /* position: centering vertical and horizontal */
        position: absolute;
        z-index: 9999;
        top: 25px;
        right: 25px;

        /* dimensions: 25px x 25px */
        line-height: 25px;
        width: 25px;

        /* styling */
        cursor: pointer;
        text-align: center;
        color: #fff;
        font-family: "fontawesome";
        font-size: 22px;
        opacity: 0.5;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .featherlight .featherlight-close-icon:hover {
        opacity: 1;
    }

    .featherlight .featherlight-image {
        /* styling */
        max-height: 100%;
        max-width:100%;
    }

    .featherlight-iframe .featherlight-content {
        /* removed the border for image croping since iframe is edge to edge */
        border-bottom: 0;
        padding: 0;
    }

    .featherlight iframe {
        /* styling */
        border: none;
    }
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
    .featherlight .featherlight-content {
        /* dimensions: maximize lightbox with for small screens */
        margin-left: 10px;
        margin-right: 10px;
        max-height: 98%;

        padding: 10px 10px 0;
        border-bottom: 10px solid transparent;
    }

}

/* Gallery Styling */
@media all {
    .featherlight-next,
    .featherlight-previous {
        font-family: "fontawesome";
        font-size: 22px;
        display: block;
        position: absolute;
        top: 25px;
        right: 0;
        bottom: 0;
        left: 80%;
        cursor: pointer;
        /* preventing text selection */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        /* IE9 hack, otherwise navigation doesn't appear */
        background: rgba(0, 0, 0, 0);
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .featherlight-previous {
        left: 0;
        right: 80%;
    }

    .featherlight-next span,
    .featherlight-previous span {
        display: inline-block;
        opacity: 0.3;
        position: absolute;
        top: 50%;
        width: 100%;
        font-size: 80px;
        line-height: 80px;

        /* center vertically */
        margin-top: -40px;
        color: #fff;
        font-style: normal;
        font-weight: normal;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .featherlight-next span {
        text-align: right;
        left: auto;
        right: 7%;
    }

    .featherlight-previous span {
        text-align: left;
        left: 7%;
    }

    .featherlight-next:hover span,
    .featherlight-previous:hover span {
        display: inline-block;
        opacity: 1;
    }

    /* Hide navigation while loading */
    .featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
        display: none;
    }
}

/* Always display arrows on touch devices */
@media only screen and (max-device-width: 1024px) {
    .featherlight-next:hover,
    .featherlight-previous:hover {
        background: none;
    }

    .featherlight-next span,
    .featherlight-previous span {
        display: block;
    }
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
    .featherlight-next,
    .featherlight-previous {
        top: 10px;
        right: 10px;
        left: 85%;
    }

    .featherlight-previous {
        left: 10px;
        right: 85%;
    }

    .featherlight-next span,
    .featherlight-previous span {
        margin-top: -30px;
        font-size: 40px;
    }
}

/* Video */

#video-box {
    color:#fff;
    position:relative;
    overflow:hidden;
    text-align:center;
}

.video_container, .easyContainer {
    position: relative;
    padding-bottom: 56.25%; /* 16/9 ratio */
    margin: 0;
    padding-top: 0; /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}

.video_container iframe, .video_container object, .video_container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.slvj-lightbox iframe, .slvj-lightbox object, .slvj-lightbox embed {
    width: 100% !important;
    height: 529px !important;
}

.videojs-background-wrap {
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -998;
}

#slvj-window {
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0;
    left: 0;
}

#slvj-window,
#slvj-window * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#slvj-background-close {
    width: 100%;
    height: 100%;
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
}

#slvj-back-lightbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    max-width: 1400px;
    max-height: 900px;
    z-index: 100001;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    padding: 1rem;
}

#slvj-video-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background: #fff;
}

.slvj-lightbox {
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 100002;
}

#slvj-close-icon {
    z-index: 100003;
    height: 40px;
    width: 40px;
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
}

#slvj-close-icon:hover {
    background: rgba(0, 0, 0, 0.7);
}

#slvj-close-icon:before {
    content: '✕';
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

#slvj-close-icon:hover:before {
    opacity: 1;
    cursor: pointer;
}

/* Skills */

#skills a {
    display: block;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}

#skills img {
    display: inline-block;
    padding: 15px 25px;
}

.client-overlay {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#skills a:hover .client-overlay {
    opacity: 1;
}

.client-overlay span {
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    text-align: center;
    display: inline-block;
}

/* Achievements */

.pricing-block-content {
    background: #fff;
    padding: 25px 0 25px 0;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);
    transition: all 0.2s ease-in-out 0s;
    position: relative;
    border: 10px solid #fff;
}


.pricing-block ul {
    list-style: none;
    margin: 25px 0 25px 0;
}

.pricing-block li {
    padding: 14px 0;
    border-bottom: 1px dotted #e1e1e1;
}

.pricing-block li:last-of-type {
    border:none;
}

.pricing-block h3 {
    font-size:17px;
    text-transform:uppercase;
    padding-bottom:0;
}

.pricing-sub {
    font-style: italic;
    color:#ccc;
    margin:0 0 25px 0;
}

/*Price*/

.pricing {
    background: #f5f5f5;
    padding: 25px;
    position: relative;
}

.price {
    display: inline-block;
    font-size: 62px;
    font-weight: 700;
    position: relative;
}

.price span {
    position: absolute;
    top: 0;
    left: -20px;
    font-size: 22px;
}

.pricing  p {
    font-style:italic;
    color:#b4b4b4;
    line-height:auto;
    margin:0;
}




/* 7. Footer */


#site-footer {
    clear: both;
}

#site-footer .row {
    padding: 0;
}

#site-footer p {
    margin: 0;
}

#site-footer ul {
    list-style: none;
    text-align: right;
}

#site-footer li {
    display: inline-block;
}

/* Scroll Up */

#scrollUp {
    bottom: 15px;
    right: 30px;
    width: 70px;
    height: 80px;
    margin-bottom: -10px;
    padding: 0 5px 20px 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -webkit-transition: margin-bottom 150ms linear;
    -moz-transition: margin-bottom 150ms linear;
    -o-transition: margin-bottom 150ms linear;
    transition: margin-bottom 150ms linear;
}

#scrollUp:hover {
    margin-bottom: 0;
}

#scrollUp:before {
    background: #ccc;
    font-family: "fontawesome";
    font-size: 2.4em;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: #fff;
    width: 45px;
    height: 45px;
    display: inline-block;
    line-height: 45px;
    content: "\f106";
    opacity: 1;
}

/*Preloader*/

#page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff; /* change if the mask should have another color then white */
    z-index: 99999; /* makes sure it stays on top */
}

#preloader-status {
    width: 110px;
    height: 110px;
    position: absolute;
    left: 50%; /* centers the loading animation horizontally one the screen */
    top: 50%; /* centers the loading animation vertically one the screen */
    background-position: center;
    margin: -55px 0 0 -55px; /* is width and height divided by two */
    text-align: center;
}


.la-ball-triangle-path,
.la-ball-triangle-path > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-triangle-path {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-ball-triangle-path.la-dark {
    color: #333;
}

.la-ball-triangle-path > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-triangle-path {
    width: 32px;
    height: 32px;
}

.la-ball-triangle-path > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.la-ball-triangle-path > div:nth-child(1) {
    -webkit-animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
    -moz-animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
    -o-animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
    animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
}

.la-ball-triangle-path > div:nth-child(2) {
    -webkit-animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
    -moz-animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
    -o-animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
    animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
}

.la-ball-triangle-path > div:nth-child(3) {
    -webkit-animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
    -moz-animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
    -o-animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
    animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
}

.la-ball-triangle-path.la-sm {
    width: 16px;
    height: 16px;
}

.la-ball-triangle-path.la-sm > div {
    width: 4px;
    height: 4px;
}

.la-ball-triangle-path.la-2x {
    width: 64px;
    height: 64px;
}

.la-ball-triangle-path.la-2x > div {
    width: 20px;
    height: 20px;
}

.la-ball-triangle-path.la-3x {
    width: 96px;
    height: 96px;
}

.la-ball-triangle-path.la-3x > div {
    width: 30px;
    height: 30px;
}

/*
 * Animations
 */
@-webkit-keyframes ball-triangle-path-ball-one {
    0% {
        -webkit-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -webkit-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -webkit-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
}

@-moz-keyframes ball-triangle-path-ball-one {
    0% {
        -moz-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -moz-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -moz-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -moz-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
}

@-o-keyframes ball-triangle-path-ball-one {
    0% {
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
}

@keyframes ball-triangle-path-ball-one {
    0% {
        -webkit-transform: translate(0, 220%);
        -moz-transform: translate(0, 220%);
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -webkit-transform: translate(110%, 0);
        -moz-transform: translate(110%, 0);
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -webkit-transform: translate(220%, 220%);
        -moz-transform: translate(220%, 220%);
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 220%);
        -moz-transform: translate(0, 220%);
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
}

@-webkit-keyframes ball-triangle-path-ball-two {
    0% {
        -webkit-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -webkit-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -webkit-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
}

@-moz-keyframes ball-triangle-path-ball-two {
    0% {
        -moz-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -moz-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -moz-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -moz-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
}

@-o-keyframes ball-triangle-path-ball-two {
    0% {
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
}

@keyframes ball-triangle-path-ball-two {
    0% {
        -webkit-transform: translate(110%, 0);
        -moz-transform: translate(110%, 0);
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -webkit-transform: translate(220%, 220%);
        -moz-transform: translate(220%, 220%);
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -webkit-transform: translate(0, 220%);
        -moz-transform: translate(0, 220%);
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(110%, 0);
        -moz-transform: translate(110%, 0);
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
}

@-webkit-keyframes ball-triangle-path-ball-tree {
    0% {
        -webkit-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -webkit-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -webkit-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
}

@-moz-keyframes ball-triangle-path-ball-tree {
    0% {
        -moz-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -moz-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -moz-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -moz-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
}

@-o-keyframes ball-triangle-path-ball-tree {
    0% {
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
}

@keyframes ball-triangle-path-ball-tree {
    0% {
        -webkit-transform: translate(220%, 220%);
        -moz-transform: translate(220%, 220%);
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
    17% {
        opacity: .25;
    }
    33% {
        opacity: 1;
        -webkit-transform: translate(0, 220%);
        -moz-transform: translate(0, 220%);
        -o-transform: translate(0, 220%);
        transform: translate(0, 220%);
    }
    50% {
        opacity: .25;
    }
    66% {
        opacity: 1;
        -webkit-transform: translate(110%, 0);
        -moz-transform: translate(110%, 0);
        -o-transform: translate(110%, 0);
        transform: translate(110%, 0);
    }
    83% {
        opacity: .25;
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(220%, 220%);
        -moz-transform: translate(220%, 220%);
        -o-transform: translate(220%, 220%);
        transform: translate(220%, 220%);
    }
}


/* Responsive Elements */


/* =Media Queries for Nav*/
@media all and (max-width: 1024px) {
    #mobile-nav-trigger {
        display: block;
    }

    nav#main-nav {
        display: none;
    }

    nav#mobile-nav {
        display: block;
    }

    nav#mobile-nav li {
        display: block;
    }

    #site-header aside {
        display: none;
    }
}

/* Landscape mobile & down
===============================*/
@media (max-width: 480px) {

    #page-wrapper {
        margin:0;
        padding:0;
    }

    .page-border, #scrollUp, #scrollUp:before {
        display:none;
    }

    .row {
        padding: 15px !important;
    }

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-2-3, .col-3-4, .col-9-10, .col-61, .col-38, .row {
        width: 100%;
    }

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-2-3, .col-3-4, .col-9-10, .col-61, .col-38 {
        padding-right: 0;
        padding-left: 0;
    }

    /* Header Elements */
    #site-header .row {
        padding: 0 15px !important;
    }

    #site-header.nav-solid [class*="col-"] {
        padding: 0;
    }

    /*Logo*/
    #site-logo h2 {
        padding: 0;
    }

    /* Social */
    #site-header aside {
        clear: both;
        padding: 0;
    }

    #site-header ul.social-icons {
        margin-top: 0;
    }

    #hero-content.row {
        padding-top: 85px !important;
    }

    /* Sections */

    /* Call to Action*/
    .call-to-action {
        padding-bottom: 25px;
    }

    /* Video */
    .slvj-lightbox iframe, .slvj-lightbox object, .slvj-lightbox embed {
        height: 270px !important;
    }

    /* Footer */
    #site-footer #copyright {
        float: left;
        width: 50%;
    }

    #site-footer .social-icons {
        float: right;
        width: 50%;
    }

    /* Typography */
    h1 {
        font-size: 38px;
    }

    #hero-section h1 {
        font-size: 48px;
    }

    #hero-section h1.typed-text {
        font-size: 36px; /* 75% of 48px for mobile */
        line-height: 34px;
        min-height: 34px;
    }

    .typed-cursor {
        font-size: 36px;
    }

    /* Hide Elements */
    a#scrollUp {
        display: none !important;
    }

}

/* Mobile to Tablet Portrait
===============================*/
@media (min-width: 480px) and (max-width: 767px) {

    #page-wrapper {
        margin:0;
        padding:0;
    }

    .page-border, #scrollUp, #scrollUp:before {
        display:none;
    }


    .row {
        padding: 15px 0 !important;
    }

    .col-1, .col-2, .col-5, .col-7, .col-9, .col-11, .col-2-3, .col-3-4, .col-61, .col-38, .row {
        width: 100%;
    }

    .col-3, .col-4, .col-6, .col-8, .col-10, .col-12 {
        width: 50%;
    }

    /* Header Elements */
    #site-header .row {
        padding: 0 !important;
    }

    #site-header aside {
        display: inline-block;
        position: absolute;
        top: 40px;
        right: 60px;
        padding-top:3px;
        padding-right: 5px;
    }

    #site-header.nav-solid aside {
        top: 20px;
    }

    #site-header aside ul {
        margin-top: 0 !important;
        padding-top: 6px;
    }

    #hero-content.row {
        padding-top: 85px !important;
    }

    /*Navigation*/
    nav#mobile-nav ul {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Sections */

    /* Video */
    .slvj-lightbox iframe, .slvj-lightbox object, .slvj-lightbox embed {
        height: 370px !important;
    }

    /* Typography */
    #hero-section h1.typed-text {
        font-size: 36px; /* 75% of 48px for tablet */
        line-height: 34px;
        min-height: 34px;
    }

    .typed-cursor {
        font-size: 36px;
    }

    /* Footer */
    #site-footer #copyright {
        float: left;
        width: 50%;
    }

    #site-footer .social-icons {
        float: right;
        width: 50%;
    }

}

/* Landscape Tablet to Desktop
===============================*/
@media (min-width: 768px) and (max-width: 1024px) {

    #page-wrapper {
        margin:0;
        padding:0;
    }

    .page-border {
        display:none;
    }

    .big-padding-top {
        padding-top: 45px !important;
    }

    /* Header Elements */
    #site-header aside {
        display: inline-block;
        position: absolute;
        top: 40px;
        right: 60px;
        padding-top:3px;
        padding-right: 5px;
    }

    #site-header.nav-solid aside {
        top: 20px;
    }

    #site-header aside ul {
        margin-top: 0 !important;
        padding-top: 6px;
    }

    /*Navigation*/
    nav#mobile-nav ul {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Sections */

    /* Video */
    .slvj-lightbox iframe, .slvj-lightbox object, .slvj-lightbox embed {
        height: 432px !important;
    }

}


/*ABOUT SECTION - Modern Developer Portfolio Styling */

/* About Section Container */
.section-about {
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background texture */
.section-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(210, 179, 86, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 179, 86, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
    position: relative;
    z-index: 1;
}

/* Top Intro Area Styling */
.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

/* Name Heading - Large and Bold */
.about-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Professional Tagline - Bold Intro Statement */
.about-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlighted text within tagline */
.about-tagline .highlight {
    color: #d2b356;
    font-weight: 600;
}

/* Description Paragraph */
.about-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* Content Card / Highlight Block */
.about-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(210, 179, 86, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-card-content {
    text-align: center;
}

/* Card Heading */
.about-card-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d2b356;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Card Text */
.about-card-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Buttons Container */
.about-card-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Button Base Styles */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary Button - Filled */
.about-btn-primary {
    background: #d2b356;
    color: #fff;
    border: 2px solid #d2b356;
    box-shadow: 0 4px 15px rgba(210, 179, 86, 0.3);
}

.about-btn-primary:hover {
    background: #c4a347;
    border-color: #c4a347;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 179, 86, 0.4);
    color: #fff;
}

/* Secondary Button - Outlined */
.about-btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.about-btn-secondary:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Button Icons */
.about-btn i {
    font-size: 1.1rem;
}


/* GALLERY SECTION HEADER STYLING*/

.gallery-header {
    max-width: 1245px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    text-align: left;
}

.gallery-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #b8b8b8;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.gallery-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #222;
    margin: 8px 0 0 0;
    letter-spacing: 0.5px;
}

/* Gallery Header Responsive */
@media screen and (max-width: 768px) {
    .gallery-header {
        padding: 30px 15px 15px 15px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
    }
}


/* NAVIGATION HOVER EFFECT - Smooth Underline Animation */

/* Navigation link base styles */
#main-nav ul li a {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Underline pseudo-element */
#main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d2b356;
    transition: width 0.3s ease;
}

/* Hover state - color change and underline slide */
#main-nav ul li a:hover {
    color: #d2b356 !important;
}

#main-nav ul li a:hover::after {
    width: 100%;
}

/* Active state styling */
#main-nav ul li a.active::after {
    width: 100%;
}


/* ABOUT SECTION - RESPONSIVE STYLES */

/* Tablet Responsive */
@media screen and (max-width: 1024px) {
    .about-container {
        padding: 60px 25px;
    }

    .about-name {
        font-size: 2.8rem;
    }

    .about-tagline {
        font-size: 1.3rem;
    }

    .about-card {
        padding: 40px 30px;
    }

    .about-card-heading {
        font-size: 1.7rem;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .about-container {
        padding: 50px 20px;
    }

    .about-intro {
        margin-bottom: 40px;
    }

    .about-name {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .about-tagline {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-card {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .about-card-heading {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .about-card-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .about-card-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .about-name {
        font-size: 1.9rem;
    }

    .about-tagline {
        font-size: 1.05rem;
    }

    .about-card {
        padding: 30px 20px;
    }

    .about-card-heading {
        font-size: 1.2rem;
    }
}


/* PROJECTS SHOWCASE SECTION */

/* Projects Section Container */
.section-projects {
    background: #f9f9f9;
    padding: 60px 0;
}

.section-projects .section-heading {
    width: 100%;
    margin-bottom: 50px;
}

.section-projects .section-heading h3 {
    color: #d2b356;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-projects .section-heading .section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-projects .section-heading .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Projects Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    padding: 0 20px;
}

/* Individual Project Card */
.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Project Image */
.project-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Project Content */
.project-content {
    padding: 25px 20px;
}

/* Project Title */
.project-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Project Description */
.project-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px;
}

/* Project Buttons Container */
.project-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Project Button Base Styles */
.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* GitHub Button */
.project-btn-github {
    background: #333;
    color: #fff;
    border: 2px solid #333;
}

.project-btn-github:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Live Project Button */
.project-btn-live {
    background: transparent;
    color: #d2b356;
    border: 2px solid #d2b356;
}

.project-btn-live:hover {
    background: #d2b356;
    color: #fff;
    transform: translateY(-2px);
}

/* Button Icons */
.project-btn i {
    font-size: 1rem;
}


/* PROJECTS SECTION - RESPONSIVE STYLES */

/* Large Desktop - 4 columns */
@media screen and (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop - 3 columns */
@media screen and (max-width: 1199px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Tablet - 2 columns */
@media screen and (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-image {
        height: 160px;
    }

    .project-title {
        font-size: 1rem;
    }

    .section-projects .section-heading .section-title {
        font-size: 1.7rem;
    }
}

/* Mobile - 1 column */
@media screen and (max-width: 600px) {
    .section-projects {
        padding: 40px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px 18px;
    }

    .project-title {
        font-size: 1.05rem;
    }

    .project-desc {
        font-size: 0.9rem;
        min-height: auto;
    }

    .project-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .project-btn {
        flex: 1;
        min-width: 130px;
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .section-projects .section-heading .section-title {
        font-size: 1.5rem;
    }

    .section-projects .section-heading .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}


/*SKILLS SECTION */

/* Skills Section Container */
.section-skills {
    background: #fff;
}

.section-skills .section-heading h3 {
    color: #d2b356;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Skills Grid Layout */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 10px;
}

/* Individual Skill Card */
.skill-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: default;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #d2b356;
}

/* Skill Icon Container */
.skill-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.skill-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon img {
    transform: scale(1.1);
}

/* Skill Name */
.skill-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}


/* SKILLS SECTION - RESPONSIVE STYLES */

/* Large Desktop - 6 tiles per row */
@media screen and (min-width: 1200px) {
    .skill-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Desktop - 5 tiles per row */
@media screen and (max-width: 1199px) {
    .skill-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

/* Tablet - 4 tiles per row */
@media screen and (max-width: 900px) {
    .skill-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .skill-card {
        padding: 18px 12px;
    }

    .skill-icon {
        width: 45px;
        height: 45px;
    }

    .skill-name {
        font-size: 0.8rem;
    }
}

/* Small Tablet - 3 tiles per row */
@media screen and (max-width: 768px) {
    .skill-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* Mobile - 2 tiles per row */
@media screen and (max-width: 600px) {
    .skill-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 5px;
    }

    .skill-card {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .skill-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .skill-name {
        font-size: 0.75rem;
    }
}


/* ACHIEVEMENTS SECTION */

.section-achievements {
    padding-bottom: 60px;
}

.section-achievements .section-heading h3 {
    color: #d2b356;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* TIMELINE STYLING */

.timeline-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.timeline-line {
    display: none;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #d2b356;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #d2b356, 0 4px 15px rgba(210, 179, 86, 0.4);
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px #d2b356, 0 6px 25px rgba(210, 179, 86, 0.6);
}

.timeline-content {
    padding: 0 10px;
}

.timeline-date {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d2b356;
    margin-bottom: 5px;
}

.timeline-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}


/* ACHIEVEMENT CARDS CAROUSEL */

.achievements-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.achievements-carousel {
    display: flex;
    gap: 30px;
    animation: scrollCards 20s linear infinite;
    width: fit-content;
    padding: 10px 0;
}

.achievements-carousel:hover {
    animation-play-state: paused;
}

/* Horizontal scrolling animation */
@keyframes scrollCards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/*ACHIEVEMENT CARD STYLING= */

.achievement-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.achievement-card-content {
    position: relative;
}

.achievement-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Achievement Image Placeholder */
.achievement-image-placeholder {
    padding: 15px !important;
    background: transparent !important;
}

.achievement-image {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.05);
}

/* Achievement Details List */
.achievement-details {
    text-align: left;
    padding: 0 20px;
    margin: 15px 0;
}

.achievement-details li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.achievement-details li:last-child {
    border-bottom: none;
}

.achievement-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d2b356;
    font-weight: bold;
}

/* Achievement Date Badge */
.achievement-date-badge {
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #d2b356, #c4a347);
    border-radius: 30px;
    display: inline-block;
}

.achievement-date-badge span {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* Featured Achievement Card */
.achievement-card.featured .achievement-date-badge {
    background: linear-gradient(135deg, #333, #111);
}


/*  ACHIEVEMENTS SECTION - RESPONSIVE STYLES  */

/* Tablet */
@media screen and (max-width: 1024px) {
    .timeline-items {
        max-width: 100%;
        padding: 0 20px;
    }

    .timeline-title {
        font-size: 0.8rem;
    }

    .achievement-card {
        min-width: 280px;
        max-width: 280px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .timeline-wrapper {
        padding: 30px 10px;
    }

    .timeline-line {
        left: 5%;
        right: 5%;
    }

    .timeline-marker {
        width: 16px;
        height: 16px;
    }

    .timeline-date {
        font-size: 0.75rem;
    }

    .timeline-title {
        font-size: 0.7rem;
    }

    .achievement-card {
        min-width: 260px;
        max-width: 260px;
    }

    .achievement-image {
        height: 120px;
    }

    .achievement-details li {
        font-size: 0.85rem;
        padding: 6px 0 6px 18px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .timeline-items {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-line {
        width: 3px;
        height: 80%;
        left: 50%;
        top: 10%;
        right: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, #d2b356, #d2b356, transparent);
    }

    .timeline-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .timeline-marker {
        margin-bottom: 0;
    }

    .achievement-card {
        min-width: 90vw;
        max-width: 90vw;
    }
}


/* 
   CONTACT SECTION
    */

.section-contact {
    background: #fff;
    padding: 80px 0;
}

.section-contact .section-heading {
    margin-bottom: 50px;
}

.section-contact .section-heading h3 {
    color: #d2b356;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-contact .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Contact Container - Two Column Layout */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Container - Centered (single form) */
.contact-container.contact-centered {
    justify-content: center;
}

.contact-centered .contact-form-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 600px;
}

/* Contact Info Column */
.contact-info {
    flex: 0 0 35%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #1a2a4a;
}

.contact-item:hover .contact-icon {
    background: #d2b356;
}

.contact-item:hover .contact-icon i {
    color: #fff;
}

.contact-text h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 5px 0;
}

.contact-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form Column */
.contact-form-wrapper {
    flex: 0 0 55%;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 10px 0;
}

.form-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 25px 0;
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d2b356;
    box-shadow: 0 0 0 3px rgba(210, 179, 86, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

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

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 45px;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d2b356;
    font-size: 1rem;
}

/* Submit Button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2a4a;
    background: #d2b356;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: #c4a347;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 179, 86, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn i {
    font-size: 0.9rem;
}

/* Form Status Messages */
.form-status {
    display: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/*CONTACT SECTION - RESPONSIVE STYLES */

/* Tablet */
@media screen and (max-width: 1024px) {
    .contact-container {
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .section-contact {
        padding: 60px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info {
        flex: 1;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .contact-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 0;
    }

    .contact-form-wrapper {
        flex: 1;
        width: 100%;
    }

    .form-title {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .contact-info {
        flex-direction: column;
    }

    .contact-item {
        flex: 1;
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}



