/* =================================================

Template Name:  Personal Portfolio HTML Template
Author: Updated by Hardik Nahata
Version: 2.0

=================================================== */

/*Table of Content


    1. Default css
    2. Preloader css
    3. Mouse Animation css
    4. Nav Area css
    5. Banner Area css
    6. About Area css
    7. Services Area css
    8. Number Area css
    9. Portfolio Area css
    10. Testimonial Area css
    11. Contact Area css
    12. Brand Area css
    13. Footer Area css




*/

/* Color Variables */
:root {
    --primary-color: #39c9bb;
    --secondary-color: #2d4059;
    --dark-color: #212121;
    --light-color: #f8f9fa;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f3f4f3;
    --gray: #777777;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*--- 1. Default css strats---*/

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 400;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 700;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    margin-top: 0;
}

p {
    letter-spacing: 0;
    line-height: 1.8;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--primary-color);
}

a:focus {
    outline: none;
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 70px;
    text-align: center;
}

.section-header-x {
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
}

.section-header-x h2 {
    display: inline-block;
    font-weight: 400;
    font-size: 20px;
    padding: 5px;
    margin: 5px 0;
}

.section-header h2 {
    display: inline-block;
    padding: 5px;
    margin: 5px 0;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.line-one {
    height: 2px;
    width: 100px;
    background: var(--primary-color);
    display: block;
    margin: 0 auto;
    padding: 0;
}

/*---Default css ends---*/

/*-------------- 2. Preloader css starts ---------------*/

.loader_bg {
    position: fixed;
    z-index: 9999999;
    background: var(--white);
    width: 100%;
    height: 100%;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader:before, .loader:after {
    content: '';
    border: 1em solid var(--primary-color);
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 1.5s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: 0.5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0; }
    50% {
        opacity: 1; }
    100% {
        transform: scale(1);
        opacity: 0; }
}


/*-------------- Preloader css ends ---------------*/

/*--- 3. Mouse animation css starts---*/

@-webkit-keyframes scroll-ani {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes scroll-ani {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

.mouse-scroll {
    position: absolute;
    left: 48%;
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: var(--white);
    letter-spacing: 2px;
    margin-top: 50px;
    text-decoration: none;
    overflow: hidden;
}

.mouse-scroll .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 60px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid var(--white);
    border-radius: 23px;
}

.mouse-scroll .mouse .mouse-movement {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: var(--white);
    border-radius: 50%;
    -webkit-animation: scroll-ani 2s linear infinite;
    animation: scroll-ani 2s linear infinite;
}

/*---mouse animation ends---*/

/*---------- 4. Nav area css starts -------------*/

.nav-area {
    height: 65px;
    transition: all 0.4s ease;
}

.nav-area.sticky_navigation {
    background: var(--black);
    height: 80px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.navbar-nav {
    margin-top: 15px;
}

.sticky_navigation {
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-box-shadow: 0px 3px 4.6px 0.3px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 4.6px 0.3px rgba(0,0,0,0.25);
}

.sticky_navigation .main-menu {
    margin-top: 0;
}

.sticky_navigation .navbar-brand, .sticky_navigation .navbar-brand span {
    color: var(--white);
}

.sticky_navigation .navbar-brand:hover, .sticky_navigation .navbar-brand:focus, .sticky_navigation .navbar-brand span {
    color: var(--primary-color);
}

.sticky_navigation .nav li a {
    color: var(--white);
}

.sticky_navigation .nav li.active a {
    color: var(--primary-color);
}

.sticky_navigation .nav li.active::before {
    border-top: 1px solid var(--primary-color);
    content: "";
    display: block;
    margin: 0 auto;
    width: 50%;
}
.sticky_navigation .nav li.active::after {
    border-bottom: 1px solid var(--primary-color);
    content: "";
    display: block;
    margin: 0 auto;
    width: 50%;
}

.sticky_navigation .navbar-brand:hover {
    color: var(--white);
}

.main-menu {
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    margin-top: 10px;
}

.navbar {
    border: 0;
    margin-bottom: 0;
}

.navbar-brand {
    padding: 30px 0;
    text-transform: uppercase;
    font-size: 25px;
    display: block;
    color: var(--white);
    font-weight: 800;
}

.logo {
    padding: 5px;
    font-size: 32px;
    letter-spacing: 2.5px;
    font-family: 'Montserrat', sans-serif;
}

.navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none;
    color: var(--white);
}

.navbar-right li {
    display: inline-block;
    float: none;
}

.navbar-right li a {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.navbar-right li.active a {
    font-weight: bold;
    color: var(--white);
}

.nav > li > a:hover {
    color: var(--primary-color);
    background: none;
}
.nav > li > a:active {
    background: none;
    color: var(--white);
}
.nav > li > a:focus {
    background: none;
}

button.navbar-toggle {
    margin-top: 15px;
}

button span {
    color: var(--primary-color);
    font-size: 25px;
}

/*---------- Nav area css ends -------------*/

/*----------- 5. Banner area css starts--------------*/

.banner-area {
    background-position: center;
    background-size: cover;
    position: relative;
    height: 100%;
}

.banner-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    content: '';
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.banner-table {
    display: table;
    margin: 0;
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.banner-table-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.welcome-text .intro h2 {
    color: var(--white);
    font-size: 85px;
    font-weight: 800;
    margin-bottom: 10px;
}

.intro h1 {
    color: var(--white);
    font-size: 60px;
    font-weight: 300;
    margin: 0;
    padding-top: 90px;
}

.ah-headline.clip .ah-words-wrapper::after {
    background-color: var(--white);
}

.banner-btn {
    background: var(--primary-color);
    text-decoration: none;
    padding: 12px 35px;
    display: inline-block;
    margin-top: 35px;
    color: var(--white);
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.banner-btn:hover, .banner-btn:focus {
    text-decoration: none;
    color: var(--white);
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.welcome-text h3 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile */
@media (max-width: 767px) {
    .banner-area {
        background-image: url(../images/home/seattle_mobile.jpeg); /*--edit image--*/
    }
}

/* Desktop */
@media (min-width: 768px) {
    .banner-area {
        background-image: url(../images/home/seattle.jpg); /*--edit image--*/
    }
}

/*---------Banner area css ends--------------*/

/*---------- 6. About area css starts---------------*/

.about-text-left h2 {
    font-weight: 700;
    font-size: 38px;
    color: var(--dark-color);
    line-height: 1.2;
    text-align: right;
    margin-bottom: 12px;
}

.about-text-left h3 {
    color: var(--dark-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: right;
    margin-bottom: 24px;
}

.about-text-left p {
    text-align: justify;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text-left a {
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    background: var(--black);
    padding: 12px 25px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-text-left a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.linkedin-button {
    text-decoration: none;
}

#li-logo {
    display: block;
    margin: auto;
    border: 0;
    width: 150px;
    height: auto;
}

.about-text-right {
    margin-top: 70px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: var(--white);
}

.about-text-right img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-text-right img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-text-right h3 {
    color: var(--dark-color);
    line-height: 1.4;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 25px;
}

.about-text-left {
    margin-top: 70px;
}

.skillbar {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    display: block
}

.skillbar .skillbar-title {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

.skillbar .skillbar-percent {
    float: right;
    display: inline-block;
    vertical-align: middle
}

.skillbar-bar {
    background-color: #e9ecef;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.skillbar-bar .skillbar-child {
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
    border-radius: 5px;
    position: relative;
}

.skillbar-bar .skillbar-child:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    from { background-position: 1rem 0; }
    to { background-position: 0 0; }
}

.about-text-right p {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}

/*-------About area css ends--------------*/

/*---------------7. Services area Starts--------------*/

.services-area {
    background: var(--gray-light);
}

.services-icon i {
    font-size: 45px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.single-services:hover i {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.services-content h3 {
    line-height: 1.4;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.services-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.services-icon {
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.single-services {
    padding: 40px 25px;
    margin: 0 15px 30px;
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.single-services:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.single-services:hover .services-icon {
    background: rgba(57, 201, 187, 0.1);
}

.single-services:hover .services-icon i {
    transform: rotate(360deg);
    transition: 0.9s;
}

.single-services:hover .services-content h3 {
    color: var(--primary-color);
}

/*--------------- Services area ends --------------*/

/*-------- 8. Number area css starts-----------*/

.number-area {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.number-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(45, 64, 89, 0.1) 25%, transparent 25%, transparent 50%, rgba(45, 64, 89, 0.1) 50%, rgba(45, 64, 89, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.2;
}

.counter {
    font-size: 50px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.single-number {
    padding: 20px;
    transition: all 0.3s ease;
}

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

.single-number i {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
}

.single-number p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

/*--------Number area ends-----------*/

/*-------------- 9. Portfolio area starts-----------*/

.portfolio-area {
    padding-bottom: 70px;
}

.por-text-details .col-xs-4 p {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
}

.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}

.por-text h2 {
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
    font-weight: 700;
}

.white-popup {
    position: relative;
    background: var(--white);
    padding: 40px;
    width: auto;
    max-width: 70%;
    margin: 0 auto;
    border-radius: 10px;
}

.por-text-details .col-xs-4 p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: pointer;
    background: var(--primary-color);
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 3em;
    text-align: center;
}

.hovereffect img {
    display: block;
    position: relative;
    max-width: none;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.35s, transform 0.45s;
    transform: translate3d(0,0,0);
}

.hovereffect h2 {
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    font-size: 22px;
    background-color: transparent;
    padding: 15px 0;
    text-align: center;
    opacity: 0;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hovereffect:hover h2 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    opacity: 1;
    transform: translateY(-10px);
}

.hovereffect .overlay:before {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--white);
    content: '';
    opacity: 0;
    border-radius: 5px;
    transition: opacity 0.35s, transform 0.45s;
    transform: translate3d(-20px,0,0);
}

.hovereffect a, .hovereffect p {
    color: var(--white);
    opacity: 0;
    transition: opacity 0.35s, transform 0.45s;
    transform: translate3d(-10px,0,0);
}

.hovereffect p {
    margin-bottom: 5px;
    font-size: 16px;
}

.hovereffect:hover img {
    opacity: 0.15;
    transform: scale(1.05);
}

.hovereffect:hover .overlay:before,
.hovereffect:hover a, .hovereffect:hover p {
    opacity: 1;
    transform: translate3d(0,0,0);
}

.hovereffect:hover p {
    transition-delay: 0.1s;
}

.hovereffect:hover p:last-child {
    transition-delay: 0.2s;
    font-weight: 700;
    margin-top: 15px;
}

.no-pad {
    padding: 0 10px;
}

/*--------------Portfolio area Ends-----------*/

/*-------- 10. Testimonial area starts-----------*/

.testimonial-area {
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center center;
    position: relative;
}

.testimonial-area:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.block-quote a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.block-quote a:hover {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
}

.block-quote a:visited {
    text-decoration: none;
    color: var(--primary-color);
}

.block-quote p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.block-quote p:before {
    content: "\275D";
    display: inline-block;
    margin-right: 8px;
    font-size: 24px;
    color: var(--primary-color);
}

.block-quote p:after {
    content: "\275E";
    display: inline-block;
    margin-left: 8px;
    font-size: 24px;
    color: var(--primary-color);
}

.block-quote h2 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.block-quote h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.block-quote h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--gray);
}

.block-quote h5 {
    font-size: 14px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    color: var(--gray);
}

.testi-img {
    width: 120px;
    height: 120px;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
    overflow: hidden;
}

.testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testi-img:hover img {
    transform: scale(1.1);
}

#testimonial-carousel:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

#testimonial-carousel {
    background: rgba(255, 255, 255, 0.95);
    padding: 6%;
    border-radius: 10px;
    position: relative;
}

.testimonial-area .section-header h2 {
    color: var(--white);
}

.single-testi {
    padding: 20px;
}

/*-------Testimonial area ends----------*/

/*------ 11. Contact area starts-------*/

.contact-area {
    background-color: var(--light-color);
}

#contact-form {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    border-radius: 10px;
    background: var(--white);
}

.single-contact {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.single-contact:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.single-contact i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.single-contact i:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.single-contact .socials i {
    font-size: 20px;
    color: var(--dark-color);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.socials i:hover {
    cursor: pointer;
    color: var(--primary-color);
    transform: scale(1.2);
}

.contact-area .form-control {
    border: none;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: none;
    padding: 10px 0;
    border-radius: 0;
    margin-bottom: 30px;
    font-size: 16px;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-area .form-control:focus {
    border-color: var(--secondary-color);
}

.contact-area textarea.form-control {
    border: 2px solid var(--primary-color);
    padding: 15px;
    height: 150px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.contact-area textarea.form-control:focus {
    border-color: var(--secondary-color);
}

.single-contact h2 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.single-contact p {
    font-size: 16px;
    margin-bottom: 0;
}

.btn.btn-send {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 1px;
}

.btn.btn-send:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-right h2 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.socials {
    padding-top: 15px;
}

.socials i {
    margin: 0 10px;
}

.single-contact {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.socialx {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.socialx i {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 15px;
    transition: all 0.3s ease;
}

.socialx i:hover {
    cursor: pointer;
    color: var(--white);
    transform: scale(1.2);
}

.socialx p {
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.socialx a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.socialx a:hover {
    text-decoration: none;
    font-weight: 500;
    color: var(--white);
}

.socialx a:visited {
    text-decoration: none;
    color: var(--primary-color);
}

/*-------- Contact area ends----------- */

/*-------- 12. Brand area starts-----------*/

.brand-area {
    padding: 80px 0;
    background-color: var(--white);
}

.brand-logo-img {
    border: 1px solid #eee;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.brand-logo-img:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.brand-logo-img img {
    max-height: 80px;
    max-width: 80%;
    transition: all 0.3s ease;
}

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

/*--------Brand area ends-----------*/

/*--------------13. Footer area starts -------------*/

.footer-area {
    background: var(--black);
    color: var(--white);
    padding-top: 60px;
    padding-bottom: 20px;
    position: relative;
}

.footer-area:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer-area a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-area a:hover {
    color: var(--white);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.back-to-top i {
    font-size: 20px;
}

/* heart-shape css */
.heart-shape {
    display: inline;
    position: relative;
}

.heart-shape:before {
    color: var(--primary-color);
    content: "❤";
    font-size: 1.8em;
    position: relative;
    top: 4px;
}