/*==================================
* Author        : "ThemeSine"
* Template Name :  Browny  HTML Template
* Version       : 1.0
==================================== */

/*==================================
font-family: 'Poppins', sans-serif;
==================================== */


/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)
2.  Header
3.  Welcome-hero
4.  About me 
5.  Education
6.  Skill
7.  Experience
8.  Profiles
9.  Portfolio
10. Clients
11. Contact

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/

:root {
    /* Light mode (default) colors */
    --bg-color: #fff;
    --text-color: #676a81;
    --heading-color: #43485c;
    --accent-color: #b61010;
    --secondary-bg: #f9fbfd;
    --item-border: rgba(31,44,108,.5);
    --card-bg: #fff;
    --box-shadow: rgba(0,0,0,.2);
    --section-border: #e5ebf2;
  }
  
  [data-theme="dark"] {
    /* Dark mode colors */
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --heading-color: #f0f0f0;
    --accent-color: #ff4545;
    --secondary-bg: #1e1e1e;
    --item-border: rgba(255,255,255,.2);
    --card-bg: #2d2d2d;
    --box-shadow: rgba(0,0,0,.4);
    --section-border: #333;
  }

*{
    padding: 0;
    margin: 0;
}

*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    font-size:16px;
    color: var(--text-color);
    background: var(--bg-color);
    max-width:1920px;
    margin:0 auto;
    overflow-x:hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

a,a:hover,a:active,a:focus {
    display:inline-block;
    text-decoration:none;
    color: var(--text-color);
    font-size:16px;
    padding:0;
}
h1,h2,h3,h4,h5,h6 { 
    margin: 0;
    color: var(--heading-color);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}
p {
    margin: 0;
    line-height:1.8;
    color: var(--text-color);
    font-size:14px;
    font-family: 'Poppins', sans-serif;
}
img{border:none;max-width:100%; height:auto;}
ul{
	padding: 0;
    margin: 0 auto;
    list-style: none;
}
ul li {
	list-style: none;
	
}
select,input,textarea,button{box-shadow:none;outline:0!important;}
button {background: transparent;border: 0;}

html,body{
    height: 100%;
	position: relative;
}
[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.3s ease; 
  -moz-transition: opacity 0.3s 0.3s ease; 
  -ms-transition: opacity 0.3s 0.3s ease; 
  -o-transition: opacity 0.3s 0.3s ease; 
  transition: opacity 0.3s 0.3s ease; 
  opacity: 0;
}

.fix{position: relative;clear: both;}
/*=============Style css=========*/

/*-------------------------------------
        2. Header
--------------------------------------*/
.top-area {
    position: relative;
    z-index: 9999;
}
@media (min-width: 1024px){}
nav.navbar.bootsnav.no-background {
    box-shadow: none;
    border: none;
}

nav.navbar.bootsnav {
    background-color: white;
    border-bottom: transparent;
    box-shadow: 0 3px 15px rgba(0,0,0,.2);
}

/*.navbar-brand*/
.navbar-header a.navbar-brand,.navbar-header a.navbar-brand:hover,.navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    padding: 33px 0px 57px;
    text-transform: uppercase;
}
/*.navbar-brand*/

/*.nav li*/

/* Navigation link styles */
nav a {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    color: #b61010; /* Adjust color as needed */
}

/* Pseudo-element for the underline */
nav a:not(.navbar-brand)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #b61010; /* Adjust color as needed */
    transition: width 0.3s ease, right 0.3s ease;
}

/* Hover effect */
nav a:not(.navbar-brand):hover::after {
    width: 100%;
    left: 0;
}


nav.navbar.bootsnav ul.nav > li > a {
    font-size: 16px;
    font-weight: 500;
    text-transform:uppercase;
    -webkit-transition: 0.3s linear; 
    -moz-transition: 0.3s linear; 
    -ms-transition: 0.3s linear; 
    -o-transition: 0.3s linear; 
    transition: 0.3s linear;
}
nav.navbar.bootsnav ul.nav > li > a {padding: 35px 20px; color: white;}
nav.navbar.bootsnav ul.nav > li > a:hover,nav.navbar.bootsnav ul.nav > li > a:focus,nav.navbar.bootsnav ul.nav > li.active>a{color: #b61010;}

nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
    content: "";
}
nav.navbar.bootsnav ul.nav > li.dropdown span {
    font-size: 8px;
    margin-left: 15px;
}
.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li > a {color:#3c4258;}
a.navbar-brand {
    transition: 0.5s linear;
}
.sticky-wrapper.is-sticky a.navbar-brand {color: #b61010;}
.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li > a:hover,.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li > a:focus,.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li.active>a{color: #b61010;}
/*.nav li*/



/*.menu-ui-design*/
.menu-ui-design{overflow-y:scroll;height: 350px;}
.menu-ui-design::-webkit-scrollbar {
    width:5px;
}
.menu-ui-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px #000;
}
.menu-ui-design::-webkit-scrollbar-thumb {
  background-color: #3c4258;
}
/*.menu-ui-design*/



/*.navbar-toggle */
nav.navbar.bootsnav .navbar-toggle {
    position: relative;
    background-color: transparent;
    border: 1px solid #b61010;
    padding: 10px;
    top: 0;
}
nav.navbar.bootsnav .navbar-toggle i{color: var(--text-color);}
/*.navbar-toggle */



/*-------------------------------------
        3.  Welcome-hero
--------------------------------------*/

.auto-type {
    text-decoration: underline;
    font-weight: bold;
    color: #b61010;
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
}
.welcome-hero{
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    background:url(../images/about/background.jpg)no-repeat;
    background-size:cover;
    background-position: center;
    height:898px;
}
.welcome-hero:before{
    position:absolute;
    content: " ";
    top:0;
    left:0;
    background:rgba(0, 0, 0, 0.6);
    width:100%;
    height:100%;
}

/*.header-text-area*/
.header-text h2 {
    color: #b61010;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    padding-top: 50px;
}

.header-text h2 span {color: #b61010;}
.header-text h2 .name {
    display: inline;
    color: white;
    font-size: 80px;
}
.header-text .namep{
    font-size: 80px;
}
.header-text p {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 30px 0 60px;
    letter-spacing: 1px;
}
.header-text a {
    width: 200px;
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    text-transform: capitalize;
    color: #fff;
    background: #b61010;
    border:1px solid #b61010;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    -webkit-transition: 0.3s linear; 
    -moz-transition: 0.3s linear; 
    -ms-transition: 0.3s linear; 
    -o-transition: 0.3s linear; 
    transition: 0.3s linear;
}
.header-text a:hover{ box-shadow: 0 5px 20px rgba(0,0,0,.4);background:#b61010;border: 1px solid #b61010;}

#section10 a {
    width: auto;
    height: auto;
    margin-top:  100px;
    background: none;
    border: none;
  }
#section10 a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
  }
  #section10 a span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
  }
  @-webkit-keyframes sdb10 {
    0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      -webkit-transform: translate(0, 20px);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb10 {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    80% {
      transform: translate(0, 20px);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}
/*.header-text-area*/

/*-------------------------------------
        4.  About
--------------------------------------*/
.about {padding: 50px 0 100px;
    border-top: 1px solid #e5ebf2;}
.about-content {padding-top: 50px;}
/*.single-about-txt*/
.single-about-txt {
    width: 120%;
}
.single-about-txt h3 {
    font-size:20px;
    color: var(--heading-color);
    text-transform: initial;
    line-height: 1.8;
}
.single-about-txt p {
    font-size: 18px;
    color: #999fb3;
    padding: 35px 0 43px;
    border-bottom: 1px solid #999fb3;
}
.single-about-add-info {
    margin: 35px 0;
}
.single-about-add-info h3 {
    color: #636a82;
    font-size: 16px;
    text-transform: capitalize;
}
.single-about-add-info p {font-weight:  300;border:  0;padding: 0;margin-top: 3px;}
/*.single-about-txt*/

/*.single-about-img */
 .single-about-img{margin-left: 80px; width: fit-content;position: relative;box-shadow: 0 5px 20px rgba(14,25,80,.30);}
.single-about-img:before {
    position:  absolute;
    content: " ";
    top: 0;
    left:  0;
    width: 100%;
    height:  100%;
    background: rgba(31,44,108,.3);
} 
.single-about-img img {
    max-width: 508px;
    height: 468px;
} 
.about-list-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #3c4258;
}
/*.ab-list-icon */
.about-list-icon ul {
    display: flex;
}
.about-list-icon ul li a:hover {
    background-color: #b61010;
    transition: 0.4s;
}
.about-list-icon  ul li a {
    /* padding-right: 22px; */
    cursor:pointer;
    color: #fff;
}
.about-list-icon .about-icons {
    filter: invert();
    height: 18px;
    padding-bottom: 3px;
}

.about-list-icon ul li a {
    cursor: pointer;
    color: #fff;
    display: inline-block;
    border: 2px solid;
    margin-left: 20px;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    justify-content: center;
}
.about-list-icon ul li a i {
    margin-left: 6px;
}
/*.ab-list-icon */

/*.single-about-img */

/*-------------------------------------
        5.  Education
--------------------------------------*/

.education {
    background:  #f9fbfd;
    padding-top:  50px;
}
.education-horizontal-timeline {
    padding: 80px 0;
}

/*.education-horizontal-timeline*/
.education-horizontal-timeline .col-sm-4 {padding:0 2px;}

.single-horizontal-timeline .experience-time h3{text-transform: capitalize;}
.single-horizontal-timeline .experience-time h3 span{text-transform:lowercase;}
.single-horizontal-timeline .timeline-content h5 {margin: 15px 0;}
.single-horizontal-timeline p {color: #999fb3;max-width: 335px;}

/* Experience separator line */
.experience-separator {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    margin: 60px 0;
    width: 90%;
  }

/*.timeline-horizontal-border*/
.timeline-horizontal-border {
    display:  flex;
    align-items: center;
    padding: 26px 0 30px;
}
.timeline-horizontal-border i {
    font-size:  10px;
    color: #d92cf9;
    margin-right:  5px;
}
span.single-timeline-horizontal {
    display:  inline-block;
    background: #b2c1ce;
    height:  1px;
    width: 380px;
}
span.single-timeline-horizontal.spacial-horizontal-line {width: 88px;}
/*.timeline-horizontal-border*/

/*.education-horizontal-timeline*/

/*-------------------------------------
        6.  Skills
--------------------------------------*/

.skill-content{padding: 50px 0 80px;}
.single-skill-content{padding-top: 100px;}
.section-heading h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5ebf2;
}
.single-progress-txt {
    display: flex;
}
.single-progress-txt h3 {
    width: 10%;
    color: #a606c3;
    position: relative;
    top: 6px;
    left: 20px;
}
.barWrapper {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
}
.progress {
    border-radius:3px;
    overflow: visible;
    background: #e6ecf3;
    height:8px;
    margin-top: 15px;
    width: 85%;
    margin-bottom: 37px;
}
.progress-bar {
   background: #b636ff;
    border-radius: 3px;
   -webkit-transition: width 1.5s ease-in-out;
   -ms-transition: width 1.5s ease-in-out;
   -moz-transition: width 1.5s ease-in-out;
   -o-transition: width 1.5s ease-in-out;
   transition: width 1.5s ease-in-out;
}
.tooltip{
   position:relative;
   float:right;
}
.tooltip > .tooltip-inner {
   background-color: transparent;
   padding: 1px 5px;
   color: #b636ff;
   font-weight: 500;
   font-size: 12px;
   border-radius: 0;
}
.popOver + .tooltip > .tooltip-arrow {
   border-left: 6px solid transparent;
   border-right: 6px solid transparent;
   border-top: 6px solid #fff;
   bottom: -1px;
   transform: translateX(-50%);
   margin-left: 0;
}

/*-------------------------------------
        7. Experience
-------------------------------------*/
.experience {
    padding: 50px 0 50px;
    border-top: 1px solid #e5ebf2;
}
.experience-content {padding-top: 100px; padding-left: 30px;}
.single-timeline-box {margin-bottom: 75px;}

/*experience-time*/
.experience-time {
    position: relative;
}
.experience-time h2 {
    font-weight: 400;
}
.experience-time h3 {
    font-size: 16px;
    font-weight: 500;
    color: #636a82;
    margin-top: 14px;
    text-transform: uppercase;
}
/*experience-time*/

/*main-timeline*/
.main-timeline{
    position: relative;
}
.main-timeline:before{
    content: "";
    width: 2px;
    height: 91.5%;
    background: #b2c1ce;
    position: absolute;
    top: 0.3%;
    left: 45.8%;
    z-index: -1;
}
.main-timeline .timeline{
    position: relative;
}

.timeline-content span>i, .experience-time span>i {
    color: #b61010;
    position: absolute;
    font-size: 10px;
    left: -14.5%;
    z-index: 1;
}
.timeline-content h4.title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.timeline-content h5 {
    color: #636a82;
    font-size: 14px;
    font-weight: 300;
    margin: 18px 0 20px;
}
.main-timeline .description {
    font-size: 14px;
    color: var(--text-color)
}
.main-timeline .timeline-content.right{
    float: right;
    text-align: left;
}
.timeline-single-before:before {
    content: '';
    top: 57px;
    left: -3px;
    position: absolute;
    width: 100%;
    height:400px;
    border-left:15px solid #fff;
}

.experience-time-responsive{display: none;}
/*-------------------------------------
        8. Profiles
--------------------------------------*/
.profiles {
    padding:  50px 0 100px;
    border-top:  1px solid #e5ebf2;
}

.profiles-content {padding-top: 100px;}
.profiles-content .col-sm-3{padding:0;}
.profile-txt {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.single-profile {
    position: relative;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #b2c1ce;
    overflow:hidden;
    -webkit-transition:background 0.5s linear; 
    -moz-transition:background 0.5s linear; 
    -ms-transition:background 0.5s linear; 
    -o-transition:background 0.5s linear; 
    transition:background 0.5s linear;
}
.profile-icon-name {
    text-transform: capitalize;
    color: #636a82;
    font-size: 16px;
}
.single-profile.profile-no-border{border-right:transparent;}
.profile-border {
    border-bottom: 1px solid #b2c1ce;
}
.single-profile-overlay{
    display:flex;
    align-items:center;
    text-transform: capitalize;
    justify-content:center;
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    width:100%;
    height: 100%;
    background: #b61010 ;
    background: -moz-linear-gradient(left, #b61010 0%, #a72f11 100%);
    background: -webkit-linear-gradient(left, #b61010 0%,#a72f11 100%);
    background: linear-gradient(to right, #b61010 0%,#a72f11 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b61010', endColorstr='#a72f11',GradientType=1 );
    -webkit-transform:scale(0);
    -moz-transform:scale(0);
    -ms-transform:scale(0);
    -o-transform:scale(0);
    transform:scale(0);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.single-profile:hover .single-profile-overlay{
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1);
    transform:scale(1);
    top:0;
}
.single-profile:hover .profile-icon-name,.single-profile:hover .profile-txt a>i{color: #fff;}
.single-profile:hover .profile-border {border:transparent;}


.icon-black-white {
    filter: invert(100%);
    padding-bottom: 10px;
}
.initial-icon  {
    filter: invert(41%) sepia(10%) saturate(969%) hue-rotate(189deg) brightness(97%) contrast(85%);
    padding-bottom: 10px;
}


/*-------------------------------------
        9. Portfolio
--------------------------------------*/
.portfolio {
    padding:  50px 0 50px;
    border-top:  1px solid #e5ebf2;
}

.portfolio-content {padding-top: 100px;}
.item {
    border: rgba(31,44,108,.5) 1.5px solid;
    border-radius: 5px;
    padding: 20px;
}
.item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #b61010, #a72f11 );
    z-index: -1;
    border-radius: 10px; /* Adjust to match the .item border-radius */
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s;
}

.item:hover::before {
    opacity: 0.9;
}
.item:hover {
    box-shadow:0px 0px 10px;
    transition: 0.5s;
    color: white;
}
.item:hover h3, .item:hover p{
    color: white;
    transition: 0.5s;
}
/* ---- .item ---- */
.isotope:after {
    content: '';
    display: block;
    clear: both;
}
.isotope .item {
    position:relative;
    overflow:hidden;
    margin-bottom: 30px;
}
/*.item img*/
.isotope .item img{
    width:100%;
    height:100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
/* .item  img{
    
}.item img */

/*.isotope-overlay*/
.isotope-overlay{
    position:absolute;
    height:100%;
    width:100%;
    background:rgba(31,44,108,.5);
    display:flex;
    align-items:center;
    text-transform: uppercase;
    justify-content:center;
    flex-direction:row;
    -webkit-transform:scale(0);
    -moz-transform:scale(0);
    -ms-transform:scale(0);
    -o-transform:scale(0);
    transform:scale(0);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.isotope-overlay a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.isotope .isotope-overlay .content{
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1);
    transform:scale(1);
    top:0;
}/*.isotope-overlay*/

/*-------------------------------------
        10. Clients
--------------------------------------*/
.clients {padding-top: 50px;}
.clients-area {
    display: flex;
    align-items: center;
    height: 250px;
}
.clients-area .item {padding: 0 25px;}

.clients .clients-area .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius:0;
}

/*-------------------------------------
        11. Contact
--------------------------------------*/
.contact {
    background: #f9fbfd;
    padding: 50px 0 100px;
    border-top: 1px solid #e5ebf2;
}
.single-contact-box {padding-top: 100px;}
.contact-form  .form-group {
    margin-bottom: 20px;
    
}
.contact-form .form-control {
    padding: 25px;
    font-size: 14px;
    border: 1px solid #636a82;
    border-radius: 5px;
    box-shadow: none;
    outline: 0!important;
    background: #fff;
    color: #636a82;
    resize: none;
}

/*--contct button--*/
.contact-form .single-contact-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    height:50px;
    text-transform:capitalize;
    margin-top: 3px;
    background: #b61010;
    border: 1px solid #b61010;
    border-radius: 5px;
    cursor:pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
     -webkit-transition: .5s; 
    -moz-transition:.5s; 
    -ms-transition:.5s; 
    -o-transition:.5s;
    transition: .5s;
}
.contact-form .single-contact-btn .contact-btn ,
.contact-form .single-contact-btn .contact-btn:focus {
    margin-top:0px;
    outline: 0 !important;
    border:0;
    color: #fff;
    border-radius: 0px;
    font-size:14px;
    -webkit-transition: .5s; 
    -moz-transition:.5s; 
    -ms-transition:.5s; 
    -o-transition:.5s;
    transition: .5s;
    
}
.single-contact-btn:hover{
    background: #b61010;
    border: 1px solid #b61010;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

/*--contct button--*/

/* contact-adress */
.contact-add-head h3 {
    font-size:  24px;
    color:  var(--text-color);
}
.contact-add-head p {
    font-size:  16px;
    text-transform: capitalize;
    color:  #636a82;
    font-weight:  300;
    margin-top:  6px;
}
/* contact-adress */

/*.contact-add-info */
.contact-add-info { margin: 42px 0 52px;}
.single-contact-add-info h3 {
    color:  #636a82;
    font-weight:  500;
}
.single-contact-add-info p {
    color:  #999fb3;
    font-size:  16px;
    margin-top:  18px;
}
.single-contact-add-info {
    margin-bottom:  26px;
}
/*.contact-add-info */

/*hm-foot-icon*/
.footer-icon {
    filter: opacity(0.6);
}

.footer-icon:hover{ filter: invert(11%) sepia(42%) saturate(6433%) hue-rotate(351deg) brightness(131%) contrast(105%);
   
}
.hm-foot-icon ul li{float:left;}
.hm-foot-icon ul li>a {
    color: #636a82;
    margin-right:18px;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.hm-foot-icon ul li>a:hover{
    color: #b61010;
}/*hm-foot-icon*/

.hm-footer-copyright p{
    color: #888ea5;
    text-transform: capitalize;
    padding: 38px 0;
}
.hm-footer-copyright p a {color: #888ea5;}
/*===============================
    Scroll Top
===============================*/
#scroll-Top  .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background:#b61010;
	border:1px solid #b61010;
	border-radius:50%;
	-webkit-transition: .5s; 
	-moz-transition:.5s; 
	-ms-transition:.5s; 
	-o-transition:.5s;
    transition: .5s;
	z-index: 2;
}
#scroll-Top  .return-to-top:hover {
    background:#fff;
    color: #b61010;
	border:1px solid #b61010;
}

#scroll-Top  .return-to-top i{
    position:relative;
    bottom:0;

}

#scroll-Top  .return-to-top i{
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration:1s;
}
@keyframes example {
    0%   {bottom:0px;}
    100%  {bottom:7px;}
}

/* Theme Toggle Styling */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 35px 15px;
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
}

.theme-toggle:hover {
    color: var(--accent-color);
}

@media (max-width: 767px) {
    .theme-toggle-wrapper {
        padding: 15px 0;
    }
    
    .theme-toggle {
        padding: 10px;
    }
}
/* Dark mode specific overrides */
[data-theme="dark"] .welcome-hero:before {
    background: rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] nav.navbar.bootsnav {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--section-border);
    box-shadow: 0 3px 15px var(--box-shadow);
}

[data-theme="dark"] .sticky-wrapper.is-sticky nav.navbar.bootsnav {
    background-color: var(--bg-color);
}

[data-theme="dark"] .sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li > a {
    color: var(--text-color);
}

[data-theme="dark"] .education,
[data-theme="dark"] .contact {
    background: var(--secondary-bg);
}

[data-theme="dark"] .item {
    border-color: var(--item-border);
    background-color: var(--card-bg);
}

[data-theme="dark"] .single-profile {
    background-color: var(--bg-color);
    border-right-color: var(--section-border);
}

[data-theme="dark"] .profile-border {
    border-color: var(--section-border);
}

[data-theme="dark"] .menu-ui-design::-webkit-scrollbar-thumb {
    background-color: var(--text-color);
}

[data-theme="dark"] .contact-form .form-control {
    background: var(--secondary-bg);
    border-color: var(--section-border);
}

[data-theme="dark"] .experience-separator {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

[data-theme="dark"] .section-heading h2 {
    border-bottom-color: var(--section-border);
}

[data-theme="dark"] .main-timeline:before,
[data-theme="dark"] span.single-timeline-horizontal {
    background: var(--section-border);
}

[data-theme="dark"] .timeline-single-before:before {
    border-left-color: var(--bg-color);
}

/* for dark mode icons at bottom of contact form */
[data-theme="dark"] .footer-icon {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(60%) contrast(100%);
}

[data-theme="dark"] .footer-icon:hover {
    filter: invert(11%) sepia(42%) saturate(6433%) hue-rotate(351deg) brightness(131%) contrast(105%);
}