/* ====================================================================
SQE - ONE PAGE TEMPLATE
======================================================================= 
 Theme Name: SQE
 Theme URI: http://
 Description: The Multi-Purpose Onepage Template
 Author: gecdesigns
*/

/*=================================================
 == Table Of Content

    1. TYPOGRAPHY 
    2. GLOBAL STYLES
    3. NAVGITION
    4. HEADER    
    5. CHOOSE-US
    6. ABOUT
    7. SKILLS
    8. SERVICES
    9. PORTFOLIO
    10. COUNT
    11. TEAM
    12. TESTIMONIALS
    13. PRICES
    14. BLOG
    15. SUBSCRIBE
    16. CONTACT
    17. FOOTER
    18. services

*/
/*---------------------------------------
  1. TYPOGRAPHY                
-----------------------------------------*/
/* FONTS */
@import url("https://fonts.googleapis.com/css?family=Basic|Kreon|Roboto");

/* --------------------------------------
  2. GLOBAL STYLES
-----------------------------------------*/
/* ===== wilnic ===== */

*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Inter',sans-serif;background:#fff;overflow-x:hidden;color:#0f172a;}

/* ===== INTRO SCREEN ===== */
.intro{position:fixed;inset:0;background:#fff;display:flex;align-items:center;justify-content:center;z-index:9999;transition:1s ease;}
.intro-logo{width:500px;animation:introPop 1s ease;}
@keyframes introPop{0%{transform:scale(0.5);opacity:0;}100%{transform:scale(1);opacity:1;}}
.intro.move .intro-logo{position:absolute;top:20px;left:20px;width:80px;transition:1s ease;}
.intro.hide{opacity:0;pointer-events:none;}



/* ===== NAVBAR ===== */
.header{position:fixed;width:100%;top:0;z-index:1000;}
.nav{display:flex;justify-content:space-between;align-items:center;padding:15px 50px;transition:0.4s;background:#062861;}
.nav.active{background:#041d47;box-shadow:0 10px 30px rgba(0,0,0,0.3);}
.logo-wrap{display:flex;align-items:center;gap:10px;}
.logo-img{width:80px;}
.nav-links{display:flex;gap:25px;}
.nav-links a{color:white;text-decoration:none;position:relative;}
.nav-links a::after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:#f9c10b;transition:0.3s;}
.nav-links a:hover::after{width:100%;}
.cta{padding:10px 22px;border-radius:30px;background:#062861;color:#fff;text-decoration:none;font-weight:600;transition:0.4s ease;}
.cta:hover{background:#f9c10b;color:#062861;}

/* ===== CENTER BADGE ===== */
.center-badge{display:flex;justify-content:center;align-items:center;margin-top:90px;margin-bottom:20px;}
.badge{display:inline-flex;align-items:center;gap:10px;padding:8px 20px;border-radius:30px;font-weight:600;font-size:14px;background:rgba(6,40,97,0.1);border:1px solid rgba(6,40,97,0.3); }
.live-dot{width:10px;height:10px;border-radius:50%;background:#062861;position:relative;}
.live-dot::after{content:'';position:absolute;width:100%;height:100%;border-radius:50%;background:#062861;animation:pulse 1.5s infinite;}
@keyframes pulse{0%{transform:scale(1);opacity:0.7;}70%{transform:scale(2.5);opacity:0;}100%{opacity:0;}}

/* ===== HERO ===== */
.hero{display:grid;grid-template-columns:1fr 1fr;align-items:center;padding:40px 50px 60px;gap:30px;margin-top: -50px;}
.hero-left h1{font-size:48px;font-weight:800;color:#062861;margin-top:-120px;}
.hero-title .line{display:inline-block;background:linear-gradient(90deg,#062861,#f9c10b);-webkit-background-clip:text;-webkit-text-fill-color:transparent;opacity:0;}
@keyframes slideFromLeft{0%{opacity:0;transform:translateX(-50px) scale(0.95);}100%{opacity:1;transform:translateX(0) scale(1);}}
@keyframes slideFromRight{0%{opacity:0;transform:translateX(50px) scale(0.95);}100%{opacity:1;transform:translateX(0) scale(1);}}
.line1.show{animation:slideFromLeft 0.8s forwards;}
.line2.show{animation:slideFromRight 0.8s forwards;}
.line3.show{animation:slideFromLeft 0.8s forwards;}
.desc{margin-bottom:20px;color:#64748b;}
.actions{display:flex;gap:15px;}

/* MOVED HERO LEFT CONTENT A LITTLE HIGHER */
.hero-left { margin-top: -70px; }

.btn{padding:12px 24px;border-radius:30px;text-decoration:none;font-weight:600;}
.btn.primary{background:#518ff9;color:#fff;}
.btn.primary:hover{background:#f9c10b;color:#062861;}
.btn.secondary{border:1px solid #cbd5e1;color:#062861;}
.btn.secondary:hover{background:#4e6997;color:#fff;border-color:#062861;}

/* HERO RIGHT - SQUARE WITH RIGHT TO LEFT EFFECT */
.hero-right{
    position:relative;
    height:420px;
}
.panel{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:20px;
    overflow:hidden;
    opacity:0;
    transform:scale(0.85);
    transition:all 0.6s ease;
}
.panel img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.panel.active{
    opacity:1;
    transform:scale(1);
}

/* RESPONSIVE */
@media(max-width:900px){
    .hero{grid-template-columns:1fr;text-align:center;}
    .hero-left { margin-top: 0; }
    .hero-right{width:280px;height:280px;margin:30px auto;}
    .metrics{flex-direction:column;align-items:center;gap:15px;}
}

/* Other styles */
.slide-left{opacity:0;transform:translateX(-50px);animation:slideLeftAnim 0.8s forwards;}
@keyframes slideLeftAnim{to{opacity:1;transform:translateX(0);}}
.metrics{display:flex;justify-content:left;gap:20px;flex-wrap:wrap;margin-bottom:40px;}
.metric{background:#fff;padding:20px 30px;border-radius:20px;text-align:left;box-shadow:0 10px 20px rgba(0,0,0,0.1);transition:0.4s;cursor:pointer;flex:1 1 150px;max-width:200px;position:relative;overflow:hidden;opacity:0;transform:translateY(30px);}
.metric h2{font-size:28px;color:#f9c10b;margin-bottom:5px;}
.metric span{font-size:14px;color:#062861;}
.metric:hover{transform:translateY(-8px) scale(1.03);box-shadow:0 15px 35px rgba(6,40,97,0.3);}
.metric::after{content:'';position:absolute;inset:0;background:linear-gradient(120deg,rgba(6,40,97,0.1),rgba(249,193,11,0.1));opacity:0;transition:0.4s;}
.metric:hover::after{opacity:1;}
.metric.show{opacity:1;transform:translateY(0);transition:0.6s ease;}
.scroll-down{display:flex;flex-direction:column;align-items:center;gap:5px;margin-top:-50px;}
.arrow{width:12px;height:12px;border-right:2px solid;border-bottom:2px solid;transform:rotate(45deg);animation:bounce 1s infinite;}
.arrow-blue{border-color:#062861;}
.arrow-yellow{border-color:#f9c10b;animation-delay:0.3s;}
@keyframes bounce{0%,20%,50%,80%,100%{transform:rotate(45deg) translateY(0);}40%{transform:rotate(45deg) translateY(8px);}60%{transform:rotate(45deg) translateY(4px);}}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

/*------ width < 75em ------*/
@media only screen and (max-width: 75em) {
    html {
        font-size: 56.25%;
    }
}

/*------ width < 61.94em ------*/
@media only screen and (max-width: 61.94em) {
    html {
        font-size: 53.13%;
    }
}

/*------ width < 48em ------*/
@media only screen and (max-width: 48em) {
    html {
        font-size: 50%;
    }
}
.btn.tertiary {
    background: white;
    color: #001f7a;
    border: 2px solid #001f7a;
}
.btn.tertiary:hover {
    background: #d0d9f5;
    color: white;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #353434;
    font-size: 1.6rem;
    background-color: #fff;
    line-height: 1.6;
    letter-spacing: .08rem;
    font-weight: 400;
}

.heading-primary {
    font-size: 4.8rem;
    font-weight: 800;
    color:#062861;
    font-family: 'Roboto', sans-serif;
}

.heading-secondary {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 2rem 0;
    font-family: 'Kreon', serif;
}

.heading-tertiary {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Basic', sans-serif;
}

p {
    font-family: 'Basic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #494848;
    line-height: 1.8;
    margin: 1rem 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

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

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: #353434;
}

button,
button:hover,
button:focus,
button:active {
    text-decoration: none;
    outline: none;
}

.padding {
    padding: 120px 0;
    position: relative;
}

/*------------ PRELOADER --------*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
}

.no-js #loader-wrapper {
    display: none;
}

#loader {
    position: relative;
    top: 50%;
    margin: 0 auto;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: .2rem solid transparent;
    border-color: #1B2732;
    z-index: 1000;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

#loader:before {
    content: "";
    position: absolute;
    top: .8rem;
    left: .8rem;
    right: .8rem;
    bottom: .8rem;
    border-radius: 50%;
    border: .2rem solid transparent;
    border-color: #1B2732;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

#loader:after {
    content: "";
    position: absolute;
    top: .6rem;
    left: .6rem;
    right: .6rem;
    bottom: .6rem;
    border-radius: 50%;
    border: .6rem solid transparent;
    border-top-color: #f9c10b;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    -o-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

/*----------------- BUTTON STYLE----------------- */
.button:link,
.button:visited {
    margin: 10px auto 0;
    padding: 14px 15px;
    color: #353434;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: .08em;
    border-radius: .2rem;
    -webkit-text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.btn-hover:link:after,
.btn-hover:visited:after {
    content: "";
    position: absolute;
    height: 0%;
    left: 51%;
    top: 50%;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}

.btn-hover:link:hover,
.btn-hover:visited:hover {
    color: #FFF;
    text-shadow: none;
}

.btn-hover:link:hover:after,
.btn-hover:visited:hover:after {
    height: 100%;
}

.btn-hover:link,
.btn-hover:visited {
    position: relative;
    margin: 10px auto 0;
    padding: 14px 15px;
    color: #353434;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: .08em;
    border-radius: .2rem;
    -webkit-text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.btn-hover.btn-fill {
    border: 2px solid #f9c10b;
}

.btn-hover.btn-fill:after {
    background: #f9c10b;
    opacity: .5;
    -moz-transform: translateX(-51%) translateY(-51%);
    -ms-transform: translateX(-51%) translateY(-51%);
    -webkit-transform: translateX(-51%) translateY(-51%);
    transform: translateX(-51%) translateY(-51%);
}

.btn-hover.btn-fill:hover:after {
    height: 100%;
    opacity: 1;
}

/*------ Scroll to Top------- */
#scroll-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    display: none;
    z-index: 9;
    background: #f9c10b;
    color: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
}

#scroll-to-top i {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
}

#scroll-to-top:hover {
    background: #fff;
    color: #f9c10b;
    transform: scale(1.2);
}

/* --------------------------------------
  3. NAVIGATION
-----------------------------------------*/
.custom-nav{
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    width: 92%;
    margin: auto;

    background: white;
    border-radius: 14px;

    padding: 9px 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    z-index: 1000;
}
.logo {
    height: 40px; /* adjust as needed */
    gap: 25px;
}

.navbar-brand span {
    font-weight: 600;
    font-size: 15px;
}
.navbar-nav{
    width:10%;
    display:flex;
    justify-content:space-between;
}
.navbar{
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;

    background: white;
    border-radius: 65px;
    padding: 0px 100px;
    font-size: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      z-index: 1000;
       opacity:0;
}

.navbar-brand .logo {
    width: 20%;
    height: 20%;
    margin-left: -10rem;
}

.navbar .icon-bar {
    color: #fff;
    margin-right: 15px;
}

.navbar .navbar-nav .active {
    color: #f9c10b !important;
}

.navbar-collapse .navbar-nav .nav-link {
    text-align: center;
    color: #2b2929;
    padding: 10px;
    margin: 1rem;
    font-weight: 600;
    letter-spacing: .5px;
    
}
.navbar-collapse .navbar-nav{
gap:100px;
}

.nav-scroll {
    background: #fff;
    transition: background-color .5s ease 0s;
    position: fixed;
    color: #353434;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
}

.nav-scroll .icon-bar {
    color: #353434;
    margin-right: 15px;
}

.nav-scroll .navbar-nav .nav-link {
    color: #353434;
}

.nav-scroll .navbar-nav .nav-link .active {
    color: #f9c10b !important;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
    }

    .navbar-collapse .navbar-nav .nav-link {
        color: #353434;
    }
}

/*------- line ---------*/
.line li a {
    position: relative;
}

.line li a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #f9c10b;
    height: 1px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.line li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #f9c10b;
    height: 1px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.nav-scroll .line li a:before {
    background: #f9c10b;
}

.nav-scroll .line li a:after {
    background: #f9c10b;
}

.line li a:hover:before {
    width: 100%;
}

.line li a:hover:after {
    width: 100%;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .line li a:hover:before {
        width: 20%;
    }

    .line li a:hover:after {
        width: 20%;
    }
}

/*---------------------------------------
  4. HEADER                
-----------------------------------------*/

/*--------------home-------------------*/
.home{
    position: relative;
    padding: 140px 0 120px 0;   /* space for content only */
    /* margin-left:760px; */

   
}

.home .home-content a {
    z-index: 1;
    color: #eef113;
}

.home .video-btn {
    background: #f9c10b;
}

.home .video-btn i {
    color: #FFF;
}

.home .video-btn i:hover {
    color: #353434;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.home-content h1 {
    font-size: 6rem;
    font-weight: 900;
    color: #f9c10b;
}

.home-content p {
    color: #062861;
}

.home-content h3 {
    color: #ffc107;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .home {
        padding: 20rem 0;
    }
}

/*------ width < 768px ------*/
@media (max-width: 768px) {
    .home {
        padding: 25rem 0;
    }

    .home-content {
        margin-top: 20px;
        text-align: center;
    }

    .home-content h1 {
        margin-top: 20px;
        font-size: 5rem;
    }
}

/* --------------------------------------
  5. CHOOSE-US
-----------------------------------------*/
.choose-item{
padding:25px;
border-radius:10px;
background:#fff;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.choose-item:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

.icon{
color:#007bff;
margin-bottom:10px;
}
.choose-us {
    padding: 110px 0 120px;
    position: relative
}

.choose-us .choose-item {
    margin: .5rem;
    padding: 20px 35px;
    background: #fff;
}

.choose-us .choose-us_title {
    margin-top: 50px;
    padding: 20px;
}

.choose-us-cont {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.choose-us .choose-item {
    -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    position: relative;
    z-index: 3;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.choose-us .choose-item:hover .icon {
    border-radius: 200px 200px 200px 200px;
    -moz-border-radius: 200px 200px 200px 200px;
    -webkit-border-radius: 200px 200px 200px 200px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.choose-us .choose-item:hover .icon:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.choose-us .choose-item .icon {
    width: 80px;
    height: 80px;
    color: #f9c10b;
    line-height: 80px;
    display: inline-block;
    font-size: 40px;
    margin-bottom: 35px;
    position: relative;
    background: whitesmoke;
    z-index: 3;
    border: 2px dotted #f9c10b;
    -webkit-transition: all .4s;
    transition: all .4s;
    border-radius: 5px;
}

.choose-us .choose-item .icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    border-radius: 200px 200px 200px 200px;
    -moz-border-radius: 200px 200px 200px 200px;
    -webkit-border-radius: 200px 200px 200px 200px;
    z-index: -1;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.choose-us .choose-item h5 {
    font-weight: 500;
    font-size: 25px;
    font-family: 'kreon', sans-serif;
    margin-bottom: 20px;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .choose-us .choose-item p {
        padding: 0 10px;
    }

    .choose-us .choose-us_title {
        margin-top: 250px;
        padding: 0px;
    }
}

/*------ width < 768px ------*/
@media (max-width: 768px) {
    .choose-us .choose-us_title {
        margin-top: 20px;
        text-align: center;
    }
}

/* --------------------------------------
  6. ABOUT
-----------------------------------------*/
.about .about-content {
    padding-left: 50px;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .about .about-content {
        padding-left: 15px;
        text-align: center;
    }
}

/*------ width < 600px ------*/
@media (max-width: 600px) {
    .about .about-content {
        margin-top: 30px;
    }
}

/* --------------------------------------
  7. SKILLS
-----------------------------------------*/
.skills .skills-right {
    margin-top: 3rem;
    height: 500px;
    background: url(../img/skills.jpg);
    background-attachment: fixed;
    background-origin: content-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 600px solid transparent;
    border-left: 150px solid #fff;
}

.skills .skills-left {
    padding-left: 50px;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .skills .skills-left {
        padding: 30px;
    }
}

.skills h2 {
    font-size: 5rem;
}

.skills .content .skill .progress-item {
    margin-top: 50px;
}

.skills .content .skill h6 {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    position: relative;
    margin-bottom: 1rem;
}

.skills .content .skill .skills-progress {
    width: 100%;
    height: 50%;
    padding: 3px;
    -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
    position: relative;
}

.skills .content .skill .skills-progress span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5%;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.skills .content .skill .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    float: right;
    right: 0px;
    font-size: 12px;
    border-radius: 2px;
    color: #fff;
    background: #000;
}

.skills .content .skill .skills-progress span {
    background: #ffc107;
    background: -moz-linear-gradient(right, rgba(255, 77, 28, 0.8) 10%, rgba(255, 77, 28, 1) 100%);
    background: -webkit-linear-gradient(right, rgba(255, 77, 28, 0.8) 10%, rgba(255, 77, 28, 1) 100%);
    background: linear-gradient(to right, rgba(255, 77, 28, 0.8) 10%, rgba(255, 77, 28, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 77, 28, 0.8)', endColorstr='rgba(255, 77, 28, 1)', GradientType=0);
}

/* --------------------------------------
  8. SERVICES
-----------------------------------------*/
/* .services .content-box {
    margin: 20px auto;
    padding: 15px 15px 0 15px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

.services .services-img {
    width: 100%;
    height: 100%;
    background: url("../img/services.png")no-repeat center;
    background-size: contain;
}

.services .content-box-icon i {
    width: 120px;
    height: 120px;
    line-height: 120px;
    display: inline-block;
    font-size: 5rem;
    text-align: center;
    color: #fff;
    background: url("../img/services-icon.png")no-repeat center;
    background-size: cover;
    position: relative;
}

.services .content-box:hover i {
    background: #ffc107;
    color: #fff;
    -webkit-transition: all .7s ease 0s;
    transition: all .7s ease 0s;
    border-radius: 20px;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.services .content-box h5 {
    font-weight: 400;
    font-size: 22px;
    margin: 20px;
} */


/* --------------------------------------
  9. PORTFOLIO
-----------------------------------------*/
.portfolio .port-title {
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
}

.portfolio .filter-port {
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.portfolio .port-title p {
    padding: 0 10rem;
}

.portfolio .filter-port li {
    padding: 5px 30px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    display: inline-block;
    border: 2px solid #ffc107;
}

.portfolio .filter-port .active {
    color: #fff;
    background: #ffc107;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.portfolio .filtr-container {
    margin: 20px;
}

.portfolio .filtr-item {
    padding: 10px;
}

.portfolio .port-caption {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio .port-caption img {
    height: auto;
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
}

.portfolio .port-caption .overlay {
    position: absolute;
    background: rgba(255, 77, 28, 0.5);
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.portfolio .port-caption .view-more {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.portfolio .port-caption .view-more .fa {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    margin: 0 1px;
    color: rgba(255, 77, 28, 0.9);
    -webkit-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
    -moz-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
    -o-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
    transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
}

.portfolio .port-caption .view-more .fa-search {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.portfolio .port-caption:hover .view-more .fa {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.portfolio .port-caption:hover .overlay {
    opacity: 1;
}

.portfolio .port-caption:focus,
.portfolio .filtr-item:focus,
.portfolio .port-caption img:focus,
.portfolio .port-caption a:focus {
    outline: none;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .portfolio .port-title p {
        padding: 0 5rem;
    }

    .portfolio .filter-port li {
        margin-bottom: 7px;
    }
}

/*------ width < 575px ------*/
@media (max-width: 575px) {
    .portfolio .port-title p {
        padding: 0;
    }

    .portfolio .filter-port {
        padding: 0 15px;
    }
}

/* --------------------------------------
  10. COUNT
-----------------------------------------*/
.counts {
    background: linear-gradient(rgba(6,40,97,0.85), rgba(6,40,97,0.85)), url("../img/hero-01.jpg") no-repeat fixed center;
    background-size: cover;
    padding: 2rem;
}

.counter {
    margin: 5px auto;
    padding: 10px 10px;
    color: #fff;
}

.counting-icon i {
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: inline-block;
    font-size: 4rem;
    text-align: center;
    background: #fff;
    color: #ffc107;
    position: relative;
    border-radius: 50%;
}

.counts .count {
    font-size: 55px;
}

.counts h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

/*------ width < 768px ------*/
@media (max-width: 768px) {
    .counts .counts-c .count {
        font-size: 40px;
    }
}

/*------ width < 575px ------*/
@media (max-width: 575px) {
    .counts .counts-c .count {
        font-size: 35px;
    }
}

/* --------------------------------------
  11.TEAM
-----------------------------------------*/
.team .team-info {
    position: relative;
    box-shadow: 0 0 5px whitesmoke;
    overflow: hidden;
}

.team .team-info:after,
.team .team-info:before {
    position: absolute;
    content: "";
}

.team .team-info:before {
    width: 60%;
    height: 220%;
    background: #ffc107;
    top: -50%;
    left: -100%;
    z-index: 1;
    transform: rotate(25deg);
    transform-origin: center top 0;
    transition: all .5s ease 0s;
}

.team .team-info:hover:before {
    left: 10%;
}

.team .team-info:after {
    width: 45%;
    height: 175%;
    background-color: rgba(0, 0, 0, .8);
    bottom: -1000%;
    left: 53%;
    transform: rotate(-33deg);
    transform-origin: center bottom 0;
    transition: all .8s ease 0s;
}

.team .team-info .view-content,
.team .team-info .icon {
    width: 100%;
    padding: 0 20px;
    position: absolute;
    left: 0;
    z-index: 2;
    transition: all 1.1s ease 0s;
}

.team .team-info:hover:after {
    bottom: -70%;
}

.team .team-info .view-content {
    top: -100%;
    color: #fff;
}

.team .team-info:hover .view-content {
    top: 30px;
}

.team .team-info .title {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.team .team-info .icon li a,
.team .team-info .post {
    display: inline-block;
    font-size: 14px;
}

.team .team-info .post {
    margin-top: 5px;
    text-transform: capitalize;
}

.team .team-info .icon {
    list-style: none;
    margin: 0;
    bottom: -100%;
}

.team .team-info:hover .icon {
    bottom: 25px;
}

.team .team-info .icon li {
    display: inline-block;
}

.team .team-info .icon li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #444;
    border-radius: 50%;
    margin: 0 3px;
    color: #fff;
    text-align: center;
    transition: all .5s ease 0s;
}

.team .team-info .icon li a:hover {
    background: #fff;
    color: #ffc107;
}

/*------ width < 991px ------*/
@media only screen and (max-width:991px) {
    .team .team-info {
        margin-bottom: 30px;
    }
}

/*------ width < 479px ------*/
@media only screen and (max-width:479px) {
    .team .team-info .title {
        font-size: 20px;
    }
}

/* --------------------------------------
  12.TESTIMONIALS
-----------------------------------------*/
.test {
    background: linear-gradient(rgba(255, 193, 28, 0.8), rgba(255, 193, 28, 0.8)), url("../img/hero-02.jpg") no-repeat fixed center;
    background-size: cover;
}

.test .test-title {
    margin-bottom: 3rem;
}

.test .testimonials {
    background: #fff;
    padding: 3rem;
    margin-top: 2rem;
    border-radius: 5px;
}

.testimonials .client-area {
    margin-bottom: 20px;
}

.testimonials .client-area .img {
    display: inline-block;
}

.testimonials .client-area .author {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 2px solid #ffc107;
}

.testimonials .client-area h6 {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonials .client-area span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #353434;
}

.testimonials p {
    margin-bottom: 15px;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #ffc107;
    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.7);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

.owl-carousel .owl-dots .owl-dot span {
    background: #353434;
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    margin: 0 2px 5px;
    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
}

/* --------------------------------------
  13. PRICES
-----------------------------------------*/
.price .item {
    margin-top: 2rem;
    padding-bottom: 5rem;
    background-color: #fff;
    -webkit-box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.price .type h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding: 25px 0;
    background: #1B2732;
    font-family: 'Kreon', serif;
    color: #fff;
    border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -webkit-box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.2);
}

.price .value {
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
}

.price .value:after {
    content: '';
    width: 100px;
    height: 1px;
    background: #353434;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
}

.price .value h3 {
    font-size: 50px;
    display: inline-block;
    position: relative;
}

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

.price .features {
    margin-bottom: 30px;
    font-family: 'Basic', sans-serif;
}

.price .features li {
    font-size: 14px;
    color: #353434;
    margin-bottom: 15px;
}

.price .features li:last-child {
    margin-bottom: 0;
}

.price .order .button {
    z-index: 1;
}

.price .active {
    -webkit-box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.5);
    background-color: #1B2732;
    color: #fff;
}

.price .active .features li {
    color: #fff;
}

.price .active .button {
    color: #fff;
}

/* --------------------------------------
  14. BLOG
-----------------------------------------*/
.blog .text-center p {
    padding-bottom: 5rem;
}

.blog-item {
    color: #353434;
    background: #fff;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

img {
    max-width: 100%;
    transition: transform 4s ease-in-out;
}

.blog-list:hover .blog-img img {
    transform: scale(1.3);
}

.blog-img .post-date {
    background: #ffc107;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 0;
    margin: 1rem;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: all 0.50s ease;
}

.blog-img .date {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.blog-img .month {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
}

.blog-item .post-meta {
    font-size: 12px;
    font-weight: 400;
    padding-top: 2rem;
    border-top: .5px solid #353434;
}

.blog-item .post-meta ul li {
    margin-right: 10px;
    display: inline-block;
    font-style: italic;
}

.blog-item .post-meta ul li i {
    padding-right: 2px;
}

.blog-item .post-title {
    margin: 10px 0;
}

.blog-item .post-title a {
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.blog-item .post-title h3 {
    font-size: 22px;
    font-family: "kreon", sans-serif;
    color: #353434;
}

.blog-item:hover h3 {
    color: #ffc107;
}

.blog-item .post-content p {
    color: rgba(53, 52, 52, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.blog-item .post-content .button {
    background: #1B2732;
    color: #fff;
    border-radius: 2px;
    padding: 2rem;
    font-weight: normal;
    text-transform: initial;
    text-shadow: none;
}

.blog-item .fa-long-arrow-right {
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.blog-item:hover .fa-long-arrow-right {
    -webkit-animation: push 2s infinite;
    animation: push 2s infinite;
}

/* -------- push animation ------- */
@-webkit-keyframes push {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    40% {
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }

    60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

/*------ push animation ------*/
@-moz-keyframes push {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(15px);
    }

    60% {
        transform: translateX(10px);
    }
}

/*------ push animation ------*/
@keyframes push {

    0%,
    20%,
    50%,
    80%,
    100% {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    40% {
        -ms-transform: translateX(15px);
        transform: translateX(15px);
    }

    60% {
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

/* ----------------------------------------------------------------
  15. SUBSCRIBE
-----------------------------------------------------------------*/
.subscribe {
    padding: 80px 0;
    background: #1B2732;
    color: whitesmoke;
}

.subscribe h2 {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    color: #ffc107;
}

.subscribe p {
    color: #fff;
}

.subs-container form .input-group {
    padding: 2rem 20rem;
}

.subscribe .form-control {
    height: 50px;
    border: 1px solid #ffc107;
    border-radius: 0;
    font-size: 15px;
    padding-left: 2rem;
}

.subscribe .form-control:focus {
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.subscribe .btn {
    height: 50px !important;
    border-radius: 0;
    color: #1B2732;
    border: 1px solid #ffc107;
    background: #ffc107;
    font-size: 15px;
    padding: 0 2rem;
}

.subscribe .btn:hover i {
    color: #fff;
    transition: all 0.50s ease;
}

/*------ width < 991px ------*/
@media only screen and (max-width:991px) {
    .subs-container form .input-group {
        padding: 2rem 2rem;
    }
}

/* --------------------------------------
  16. CONTACT
-----------------------------------------*/
.contact-info {
    margin: 2rem 0 0 0;
    background: whitesmoke;
    padding: 2rem 0 0 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
}

.contact-info i {
    color: #fff;
    background: #ffc107;
    width: 70px;
    height: 70px;
    display: inline-block;
    line-height: 70px;
    font-size: 25px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    z-index: 1;
}

.contact-info p {
    font-size: 15px;
}

.contact-info h5 {
    font-weight: 700;
    font-size: 16px;
}

.contact-info_text {
    padding-left: 20px;
}

.contact .contact-form input {
    border-radius: .2rem;
}

.contact .contact-form .button {
    display: inline-block;
    width: 40%;
    margin: 0 auto;
    padding: 1rem;
    background: #ffc107;
    cursor: pointer;
    color: #fff;
    outline: none;
    border: 1px solid #ffc107;
    border-radius: 2px;
}

.contact .contact-form .button:hover {
    background: #1B2732;
    border: 1px solid #1B2732;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.contact .contact-form {
    margin-top: 30px;
    padding: 5rem;
    background: whitesmoke;
    border-radius: 5px;
}

.contact .form input,
.contact .form textarea {
    width: 100%;
    padding: 10px;
    border: 0;
    background-color: #fff;
}

.contact .form input:focus,
.contact .form textarea:focus {
    border: none;
    outline: none;
}

.contact .form textarea {
    height: 160px;
    max-height: 160px;
    max-width: 100%;
}

/* --------------------------------------
  MAP
-----------------------------------------*/
#map {
    height: 300px;
    position: relative;
}

/* --------------------------------------
  17. FOOTER
-----------------------------------------*/
.footer{
background: linear-gradient(rgba(6,40,97,0.85), rgba(6,40,97,0.85)), url("../img/hero-03.jpg") no-repeat fixed center;
color:#fff;
padding:60px 0 20px;
}

.footer h4{
margin-bottom:15px;
font-size: 25px;
font-weight:600;
}

/* subscribe */

.subscribe-form{
display:flex;
}

.subscribe-form input{
flex:1;
padding:10px;
border:none;
border-radius:4px 0 0 4px;
}

.subscribe-form button{
background:#ffc107;
border:none;
color:#fff;
padding:10px 15px;
border-radius:0 4px 4px 0;
}

/* social icons */

.social-links a{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
background:#ffc107;
color:#fff;
border-radius:50%;
margin:5px;
font-size:18px;
transition:0.3s;
}

.social-links a:hover{
background:#fff;
color:#ffc107;
}

/* map */

.footer-map iframe{
border-radius:6px;
}

/* divider */

.footer-divider{
border-top:1px solid rgba(255,255,255,0.3);
margin:40px 0 15px;
}

/* copyright */

.copyright{
font-size:14px;
opacity:0.8;
}
.footer {
    padding: 5rem 0;
    text-align: center;
}

.footet .navbar-brand .logo {
    width: 100%;
    height: 100%;
}

.footer .social-links {
    margin: 40px 0;
    text-align: center;
}

.footer .social-links ul li {
    display: inline-block;
    padding: 0;
}

.footer .social-links ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    background: #ffc107;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    display: inline-block;
    margin: 0 5px;
}

.footer .social-links ul li a:hover {
    color: #ffc107;
    background: #fff;
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

.copyright h5 {
    font-weight: 400;
}

/*------ width < 600px ------*/
@media (max-width: 600px) {
    .footer {
        text-align: center;
    }

    .footer h3 {
        margin-top: 10px;
    }
}
/* Services*/
/* .service-title{
 font-size:80px;
    font-weight: 500;
    color:#062861;
    font-family: 'Roboto', sans-serif;
} */

.service-title h2{
 font-size:2.8em;
    font-weight: 500;
    color:#062861;
    font-family: 'Roboto', sans-serif;

}

.service-title p{
color:#332f2f;
font-size:20px;
line-height:1.7;
}
.services-section{
padding:80px 5%;
background:#f7f7f7;
}

.services-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.service-box{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
text-align:center;
}
.serviceSwiper{
width:100%;
height:150px;
}

.serviceSwiper .swiper-slide{
width:100%;
}

.serviceSwiper img{
width:100%;
height:150px;
object-fit:cover;
border-radius:8px;
display:block;
}
.swiper-wrapper{
align-items:center;
}
.service-box h3{
    font-size: 22px;
    font-weight: 600;
    color: #062861;
    margin-top: 15px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

.swiper{
width:100%;
padding:40px 0;
}

.swiper-slide{
width:120px !important;
height:500px;
}

.swiper-slide img{
width:100%;
height:130%;
object-fit:cover;
border-radius:2px;
cursor:pointer;
}
.swiper-wrapper{
transition-timing-function: linear !important;
}

.swiper-slide-active{
transform:scale(1.25);
z-index:2;
}

/* Center slide bigger */

.swiper-slide-active{
transform:scale(1.25);
z-index:2;
}
.popup{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
justify-content:center;
align-items:center;
z-index:9999;
}

.popup img{
max-width:80%;
max-height:80%;
border-radius:10px;
}

.close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}
/* work Process */
.process-timeline{
position:relative;
padding:20px 0;
}

/* vertical line */

.process-timeline:before{
content:"";
position:absolute;
left:50%;
top:0;
height:100%;
width:4px;
background:#ffc107;
transform:translateX(-50%);
}

/* step container */

.process-item{
position:relative;
width:50%;
padding:20px 40px;
}
.process-title 
{
    font-size: 4.8rem;
    font-weight: 800;
    color:#062861;
    font-family: 'Roboto', sans-serif;
}
/* left steps */

.process-item.left{
left:0;
text-align:right;
}

/* right steps */

.process-item.right{
left:50%;
}

/* step number */

.step-number{
position:absolute;
top:30px;
left:100%;
transform:translate(-50%);
width:50px;
height:50px;
background:#ffc107;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
z-index:2;
}

.process-item.right .step-number{
left:0;
transform:translate(-50%);
}

/* card */

.process-content{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

/* icon */

.process-icon{
font-size:22px;
color:#ffc107;
margin-bottom:10px;
}

/* hover animation */

.process-content:hover{
transform:translateY(-5px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}
.modern-process{
position:relative;
padding-left:80px;
}

/* vertical dotted line */

.modern-process:before{
content:"";
position:absolute;
left:35px;
top:0;
bottom:0;
width:3px;
background:#062861;
}

/* step layout */

.process-step{
display:flex;
align-items:flex-start;
margin-bottom:40px;
position:relative;
}

/* icon box */

.step-icon{
width:50px;
height:50px;
background:#ffc107;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
font-size:20px;
position:absolute;
left:-80px;
top:0;
box-shadow:0 6px 15px rgba(0,0,0,0.25);
}

/* text area */

.step-content h4{
font-size:22px;
font-weight:700;
margin:5px 0;
color:#062861;
}

.step-content p{
color:#666;
font-size:15px;
line-height:1.6;
}

/* step label */

.step-label{
font-size:12px;
letter-spacing:1px;
color:#888;
font-weight:600;
}
/*tech section */
.tech-section{
background-color: #f7f7f7;;
}
.tech-title h1{
    font-size: 4.8rem;
    font-weight: 800;
    color:#062861;
    font-family: 'Roboto', sans-serif;
 
   
    padding: 80px 0;

}
.tech-tabs{
border-bottom:1px solid #ddd;
margin-bottom:40px;
gap:30px; 
}

.tech-tabs .nav-link{
border:none;
background:none;
font-weight:600;
color:#555;
font-size:18px;
padding:12px 25px;
position:relative;
transition:0.3s;
}

/* underline */

.tech-tabs .nav-link::after{
content:"";
position:absolute;
left:0;
bottom:-1px;
width:0;
height:3px;
background:#ffc107;
transition:0.3s;
}

/* hover effect */

.tech-tabs .nav-link:hover{
color:#062861;
}

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

/* active tab */

.tech-tabs .nav-link.active{
color:#ffc107;
}

.tech-tabs .nav-link.active::after{
width:100%;
}
.tech-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
text-align:center;
}

.tech-box i{
font-size:55px;
color:#ffc107;
margin-bottom:10px;
}

.tech-box p{
font-weight:600;
}
/*  clien t section */
/* .clients-title{
padding:70px 0;
background:#f7f9ff;
} */
.clients-section h2{
        font-size: 4.8rem;
    font-weight: 500;
    color:#062861;
    font-family: 'Roboto', sans-serif;

}

.clients-slider{
overflow:hidden;
position:relative;
}

.slide-track{
display:flex;
width:calc(200px * 12);
animation:scroll 25s linear infinite;
}

.slide{
width:200px;
display:flex;
align-items:center;
justify-content:center;
padding:15px;
}

.slide img{
width:130px;
/* filter:grayscale(100%); */
opacity:0.7;
transition:0.3s;
}

.slide img:hover{
filter:none;
opacity:1;
transform:scale(1.1);
}

/* animation */

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* =====================================================
   MOBILE RESPONSIVE (TABLET + MOBILE)
=====================================================*/

/* ---------- Tablets ---------- */
@media (max-width: 991px){

/* navbar */

.navbar-collapse .navbar-nav{
gap:20px;
flex-direction:column;
}

/* home */

.home{
background-position:center top;
padding:120px 20px;
}

.home-content h1{
font-size:4rem;
}

/* services grid */

.services-container{
grid-template-columns:1fr;
}

/* tech grid */

.tech-grid{
grid-template-columns:repeat(2,1fr);
}

/* clients */

.slide-track{
animation:scroll 40s linear infinite;
}

/* process timeline */

.process-item{
width:100%;
left:0 !important;
text-align:left;
padding-left:70px;
}

.process-timeline:before{
left:30px;
}

.step-number{
left:30px;
transform:none;
}

/* modern process */

.modern-process{
padding-left:60px;
}

.step-icon{
left:-60px;
}

/* swiper */

.swiper-slide{
width:160px !important;
height:350px;
}

}

/* ---------- Mobile Phones ---------- */
@media (max-width: 768px){

/* headings */

.heading-primary{
font-size:3.2rem;
}

.heading-secondary{
font-size:1.8rem;
}

/* navbar */

.navbar{
width:95%;
padding:10px 15px;
}

.navbar-brand .logo{
width:120px;

}

/* home */

/* .home{
padding:100px 15px;
text-align:center;
background-position:center;
} */

.home-content h1{
font-size:3rem;
}

.home-content p{
font-size:15px;
}

/* choose us */

.choose-us{
padding:70px 20px;
}

.choose-item{
margin-bottom:20px;
}

/* services */

.services-section{
padding:60px 20px;
}

.serviceSwiper{
height:180px;
}

.serviceSwiper img{
height:180px;
}

/* process */

.process-title{
font-size:3rem;
}

/* tech */

.tech-title h1{
font-size:3rem;
padding:50px 0;
}

.tech-grid{
grid-template-columns:1fr 1fr;
gap:20px;
}

/* clients */

.clients-section h2{
font-size:3rem;
}

.slide{
width:150px;
}

.slide img{
width:100px;
}

/* footer */

.footer{
text-align:center;
}

.footer-map iframe{
height:200px;
width:100%;
}

}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px){

.tech-grid{
grid-template-columns:1fr;
}

.services-container{
grid-template-columns:1fr;
}

.swiper-slide{
width:140px !important;
height:280px;
}

.serviceSwiper{
height:160px;
}

.serviceSwiper img{
height:160px;
}

.home-content h1{
font-size:2.5rem;
}

.process-title{
font-size:2.5rem;
}

.clients-section h2{
font-size:2.5rem;
}

}
@media (max-width:991px){

.home{
    background-position: right top;
    background-size: 400px auto;
}

}


/* Mobile */


@media (max-width:768px){

.home{
    background-position: 120px top;   /* move image left/right */
    background-size: auto;            /* keep original size */
}

}
@media (max-width:768px){

.services-section{
padding:60px 20px;
}

.services-container{
grid-template-columns:1fr;
gap:25px;
}

.service-title h2{
font-size:2rem;
}

.service-title p{
font-size:16px;
}

.serviceSwiper{
height:120px;
}

.serviceSwiper img{
height:120px;
}

.swiper{
padding:20px 0;
}

.swiper-slide{
width:60px !important;
height:100px;
}

.swiper-slide img{
height:100%;
}

.service-box{
padding:12px;
}

}