/* Original blue color - #0563bb */
/* Original Black Color - #424549 */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
  .main {
    margin: .0%;
    
    width: 94.9rem;
    height: 52rem;
    background-size: cover;
    border: 1px solid rgb(253, 250, 250);
    border-radius: 5px;
    position: relative;
}
.iconsm1{
  display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: -30px;
    margin: 0px;
    
  }
  
.iconsm1 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.3s ease;
}

.iconsm1 a i {
  font-size: 24px;
  margin-bottom: 5px;
}

.iconsm1 a:hover {
  color: #0077b5; /* Change color on hover */
}
.container{
  padding-left: 120px;
  padding-right: 100px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #343a40;
}

/* scroll bar start */
/* width */
::-webkit-scrollbar {
  width: 10px;
	background-color: #F5F5F5;
}

 
/* Handle */
::-webkit-scrollbar-thumb {
 border-radius: 10px;
  background: #2979de; 
}

/* scroll bar end */

.external-link{
  padding-left: 5px;
}

.external-link:hover{
color: #2979de;
}

.custom-btn {
  background-color: #fff;
  font-size: 18px;
  border: 2px solid #2979de;
  padding: 7px 15px;
  color: #343a40;
  transition: 0.4s;
  border-radius: 5px;
}

.custom-btn:hover{
  color: #fff;
  background: #2979de;
}


.custom-btn-sm:hover {
  color: #fff;
  background: #2979de;
}

.custom-btn-sm {
  font-size: 14px;
  /* background: #f4faff ; */
  background-color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
  border: 2px solid #2979de;
  padding: 2px 10px;
  color: #343a40;
  transition: 0.4s;
  border-radius: 5px;
}

.custom-btn-sm:visited {
  color: #2979de;
  background: #fff;
}



a {
  color: #2979de;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 8px;
  bottom: 12px;
  z-index: 996;
  transition: all 1.2s;
}


.back-to-top:hover {
  animation-name: up-down;
  animation-duration:1.2s;        
  transition: 1s all ease-in-out;
}

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



@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2979de;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 5s linear infinite;
  animation: animate-preloader 5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto
  
}

@media (max-width: 10000px) {
  #header {
    width: 100%;
    background: #fff;
    border-right: 1px solid white;
    left: -100%;
    align-items: center;
  }
}

@media (min-width: 10000px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  display: block;
  font-family: "Poppins", sans-serif;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  text-align: center;
  align-items: center;
  color: #343a40;
  padding:20px 16.5px;
  margin-bottom: 18px;
  transition: 0.3s;
  font-size: 18px;
  border-radius: 50px;
  background-color: #fff;
  /* background: #eef7ff; */
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

/* .nav-menu a span {
  padding: 0 5px 0 7px;
  color: #777777;
} */

.nav-menu a span {
  background-image: linear-gradient(
    to right,
    #7e878f,
  #60676e 50%,
  #b5aeae 50%
  );
  margin-right:15px;
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.nav-menu a span:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.nav-menu a span:hover {
 background-position: 0;
 border-bottom: 0;
}

.nav-menu a span:hover::before {
  width:100%;
}

.nav-menu a:hover, .nav-menu .active, .nav-menu li:hover > a {
 font-weight: 600;
 color: white;
}

/* .nav-menu a:hover span, .nav-menu .active span, .nav-menu li:hover > a span {
  color: #fff;
}  */


/* .nav-menu a:hover, .nav-menu li:hover > a {
  width: 100%;
  color: #fff;
} 

/* .nav-menu a:hover span, .nav-menu li:hover > a span {
  display: block;
} */


/**
* Horizontal Desktop Navigation 
*/

.navigation{
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  width: 100%;
  font-family: "poppins", sans-serif;
  z-index: 1;
  padding-top: 10px;
  padding-bottom: 7px;
  display: flex;
}

.navigation .brand a{
  float: left;
  color: #6f767c;
  font-family: 'Allura', ;  
  text-decoration: none;
  font-size: 35px;
  font-weight: 600;
  
}

.navigation .navigation-links a{
  float: right;
  padding-top: 14px;
  margin-left: 20px;
  color: #999999;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;

  background-image: linear-gradient(
  to right,
  #7e878f,
  #60676e 50%,
  #b5aeae 50%
);
margin-right:15px;
background-size: 200% 100%;
background-position: 100%;
display: inline-block;
position: relative;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.3s ease-in-out;
}



.navigation .navigation-links a:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.navigation .navigation-links a:hover {
 background-position: 0;
 border-bottom: 0;
}

.navigation .navigation-links a:hover::before {
  width:100%;
}




@media screen and (max-width: 1200px){ 
  .navigation-links {
    display: none;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #343a40;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #2979de;
}





/*** broad area block**/
.ba-section{background: #F3F3F3;}
.ba-image{padding:20px 0px 20px 0px;}
.ba-text{padding:20px 0px 40px 0px; font-size: 17px;}
.ba-text ul{line-height: 2.4;list-style-type:none; font-weight:550}
.ba-text ul a{text-decoration: none; color:#003a68;}
.ba-text ul a:hover{text-decoration: none; color:#430079;}
.ba-text ul i{margin-right: 10px;}

























/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/




#hero {
  width: 100%;
  height: 100vh;
  /* background: url("../img/hero-bg.JPG") top right no-repeat; */
  background-size: cover;
  position: relative;
}



#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .title {
  padding-top: 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #343a40;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

#hero .sub-title {
  margin-bottom: 10px;
  padding: 5px 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 40px;
  color: #343a40;
  text-align: center;
}

.sub-heading{
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  color: #999999;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.highlight{
  font-weight: 400;
  color: #343a40;
}

.highlight:hover{
  color: #343a40;
}

#hero .contact-links {
  font-size: 16px;
  margin-top: 50px;
  margin-left: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
}

/* #hero .contact-links a {
  line-height: 1.5;
} */

#hero .contact-links a {
  background-image: linear-gradient(
    to right,
    #7e878f,
 
  #b5aeae 50%,
    #2979de 50%
  );
  margin-right:15px;
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

#hero .contact-links a:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

#hero .contact-links a:hover {
 background-position: 0;
 border-bottom: 0;

}

#hero .contact-links a:hover::before {
  width:100%;
}


@media screen and (max-width: 500px){ 

  #hero {
    height: 90vh;
  }
  #hero .sub-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  #hero .sub-heading {
    padding: 0 20px;
    font-size: 16px;
  }
}


/* #hero .contact-links a:hover {
  color: #2979de;
  text-decoration: none;
} */

/* 
@media (max-width: 992px) {
  #hero {
    text-align: center;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
} */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  font-family: "Poppins", sans-serif;

}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}

.section-title p {
  font-size: 18px;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #2979de;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Work
--------------------------------------------------------------*/

#work .work-project{
  margin-bottom: 120px;
}

#work .work-title{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #343a40;
  font-family: "Poppins", sans-serif;
}

#work .work-body{
  padding-top: 15px;
  color: #666666;
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

.work-body h5 {
  font-size: 12px;
  background: #f7f8f9;
  padding: 5px 10px;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
  margin-right: 5px;
  border-radius: 5px ;
  color: #555555;
  align-items: right;
}

#work a {
  background-image: linear-gradient(
    to right,
    #343a40,
    #343a40 50%,
    #2979de  50%
  );
  font-weight: 500;
  margin-right:5px;
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

#work a:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

#work a:hover {
 background-position: 0;
 border-bottom: 0;
 margin-right:8px;
 transition: all 0.3s ease-in-out;
}

#work a:hover::before {
  width:100%;
  margin-right:5px;
  transition: all 0.3s ease-in-out;
}


.capmetro-img {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  filter: gray; /* IE5+ */
  -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
  -webkit-transition: all .5s ease-in-out; 
}

.capmetro-img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about{
  color:#343a40;
  font-family: "Poppins", sans-serif;
}

.about .less-semi-bold{
  font-weight: 500;
}

.about .semi-bold{
  font-weight: 500;
  color: #2979de;

}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 15px;
  color: #343a40;
}

.about .content a{
  text-decoration: none;
  color: #2979de;
}

.about .content ul {
  padding-top: 10px;
  padding-left: 20px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# stats
--------------------------------------------------------------*/


.stats ul li{
  font-family: "Poppins", sans-serif;
}

.stats .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.stats .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #2979de;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.stats .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}

.stats .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------

# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #2979de;
  font-family: "Poppins", sans-serif;

}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #2979de;
  position: relative;
  font-family: "Poppins", sans-serif;

}

.resume .resume-item #hyperlink a {
  background-image: linear-gradient(
    to right,
    #343a40,
    #343a40 50%,
    #2979de 50%
  );
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}

.resume .resume-item #hyperlink a:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.resume .resume-item #hyperlink a:hover {
 background-position: 0;
 border-bottom: 0;
}

.resume .resume-item #hyperlink a:hover::before {
  width:100%;
}

.resume .resume-item .resume-item-title {
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #343a40;
}

.resume .resume-item .resume-item-title a{
  color: #2979de;
}

.resume .resume-item .resume-item-subtitle{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.resume .resume-item h5 {
  font-size: 14px;
  background: #f7f8f9;
  padding: 6px 10px;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
  margin-right: 5px;
  border-radius: 5px ;
  color: #555555;
  align-items: right;
}

.resume .resume-item h6 {
  font-size: 14px;
  color: #2979de;
  font-family: "Poppins", sans-serif;
  padding-top: 5px;
  margin-bottom: 15px;
}

.resume .resume-item ul {
  padding-left: 20px;
  font-size: 15px;
  color: #555555;
}


.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #2979de;
}

/*--------------------------------------------------------------


# Devloper Portfolio
--------------------------------------------------------------*/



.dev-portfolio .dev-portfolio-item {
  margin: 0px 0px;
  font-family: "Poppins", sans-serif;

}

.dev-portfolio #dev-portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
  font-family: "Poppins", sans-serif;

}

.dev-portfolio #dev-portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #343a40;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.dev-portfolio #dev-portfolio-flters li:hover, .portfolio #dev-portfolio-flters li.filter-active {
  color: #2979de;
}

.dev-portfolio #dev-portfolio-flters li:last-child {
  margin-right: 0;
}

.dev-portfolio .portfolio-wrap {
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  filter: gray; /* IE5+ */
  -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
  -webkit-transition: all .5s ease-in-out; 
}

.dev-portfolio .portfolio-wrap:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  transform: scale(1.05);
}

.view-more{
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(
    to right,
    #343a40,
    #343a40 50%,
    #2979de  50%
  );
  text-align: center;
  font-weight: 500;
  margin-right:5px;
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

#dev-portfolio .view-more:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

#dev-portfolio .view-more:hover {
 background-position: 0;
 border-bottom: 0;
 margin-right:8px;
 transition: all 0.3s ease-in-out;
}

#dev-portfolio .view-more:hover::before {
  width:100%;
  margin-right:5px;
  transition: all 0.3s ease-in-out;
}


.p-body {
  padding: 5px;
}

.p-badge {
  font-size: 13px;
  border: 0;
  padding:  1px 7px 2px 7px;
  margin-bottom: 4px;
  color: #2979de;
  transition: 0.4s;
  border-radius: 4px;
  background: #fff;
  /* background: #f5faff; */
  border: 1px solid #2979de;
}

.p-badge:hover{
  background-color: #2979de ;
  color: #fff;
  transition: 0.9;
}

.p-github {
  font-size: 14px;
  vertical-align: middle;
  background: #31373d;
  border: 0;
  margin-top: 15px;
  padding:  2px 7px 3px 7px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  border: 1px solid #a7a7a7;

}

.p-github:hover {

  background: #fff;
  /* color: #31373d; */
  color: #343a40;
  border: 0.1px solid #cecfcf ;
}

/*--------------------------------------------------------------

# Portfolio
--------------------------------------------------------------*/


.des-portfolio .des-portfolio-item {
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;

}

.des-portfolio #des-portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
  font-family: "Poppins", sans-serif;

}

.des-portfolio #des-portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #343a40;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.des-portfolio #des-portfolio-flters li:hover, .des-portfolio #des-portfolio-flters li.filter-active {
  color: #2979de;
}

.des-portfolio #des-portfolio-flters li:last-child {
  margin-right: 0;
}

.des-portfolio .des-portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}


.des-portfolio .des-portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255,0.97);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.des-portfolio .des-portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.des-portfolio .des-portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  right: 35px;
  border-top: 3px solid #2979de;
  border-right: 3px solid #2979de;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.des-portfolio .des-portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  left: 35px;
  border-bottom: 3px solid #2979de;
  border-left: 3px solid #2979de;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.des-portfolio .des-portfolio-wrap .portfolio-info h4 {
  font-size: 25px;
  color: #343a40;
  font-weight: 600;
}

.des-portfolio .des-portfolio-wrap .portfolio-info p {
  color: #2979de;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.des-portfolio .des-portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.des-portfolio .des-portfolio-wrap .portfolio-links a {
  color: #343a40;
  margin: 0 2px;
  font-size: 30px;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
}

.des-portfolio .des-portfolio-wrap .portfolio-links a:hover {
  color: #2979de;
}

.des-portfolio .des-portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.des-portfolio .des-portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.des-portfolio .des-portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  right: 15px;
}

.des-portfolio .des-portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  left: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2979de;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2979de;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}



.portfolio-details .portfolio-info ul li {
  display: inline-block;
  margin-bottom: 10px;
  padding-right: 15px;
  position: relative;
}

.portfolio-details .portfolio-info ul li:last-child {
  padding-right: 0;
}

.portfolio-details .portfolio-info ul li::before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background: #2979de;
  right: -2px;
  top: 8px;
}

.portfolio-details .portfolio-info .view-more {
  display: inline-block;
  font-size: 18px;
  color: #2979de;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .view-more:hover {
  color: #343a40;
}


/*--------------------------------------------------------------
# Prize Start
--------------------------------------------------------------*/

  h1 {
    text-align: center;
    color: #333;
  }
  .prize {
    margin: 15px 0;
    padding: 10px;
    border-left: 5px solid #4CAF50;
    background-color: #f9f9f9;
  }
  .special-mentions {
    margin: 15px 0;
    padding: 10px;
    border-left: 5px solid #2196F3;
    background-color: #f9f9f9;
  }
  .participation {
    margin: 15px 0;
    padding: 10px;
    border-left: 5px solid #FF9800;
    background-color: #f9f9f9;
  }
  
  
  
  /*--------------------------------------------------------------
  # Prize End
  --------------------------------------------------------------*/

  


  .slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden; /* Hide overflow */
}

.mySlides {
    display: none; /* Hide all slides by default */
}

img {
    width: 100%; /* Make images responsive */
    border-radius: 10px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .prev, .next {
        font-size: 14px; /* Smaller buttons on mobile */
        padding: 10px;
    }
}





 /*--------------------------------------------------------------
# Gallery start
--------------------------------------------------------------*/

.slideshow-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
}

.slides {
  display : none;
  width: 100%;
  position: relative;
}

.slides img {
  width: vh;
  margin-top: 20%;
  height: 60vh;
  object-fit: cover;
}

@media (max-width: 600px) {
  .slideshow-container {
    max-width: 100%; /* Ensure slideshow is full width */
    padding: 0; /* Remove any padding */
  }

  .slides img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    margin-top: 10%; /* Adjust top margin for better spacing */
  }

  .slideshow-container .slides {
    display: block; /* Ensure slides are displayed */
  }
}

/*--------------------------------------------------------------
#Gallery End
--------------------------------------------------------------*/


/*--------------------------------------------------------------

# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;

}

.testimonials .testimonial-item {
  text-align: center;
  font-family: "Poppins", sans-serif;

}

.testimonials .testimonial-item .testimonial-img {
  width: 300px;
  height: 400px;
  border-radius: 5%;
  border: 4px solid #0c0c0c;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #343a40;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}


.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #2979de;
}


 .testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
  color: #343a40;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #00008B;
  opacity: 1;
  border: 1px solid #00008B;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2979de;
  border-color: #2979de;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*
.services .services-item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
  transition: 0.3s;
}

.services .services-item:hover {
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.16);
}

.services .services-item i {
  font-size: 32px;
  color: #2979de;
  float: left;
  line-height: 1;
  transition: 0.3s;
}

.services .services-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 50px;
  color: #343a40;
  transition: 0.3s;
}

.services .services-item p {
  font-size: 15px;
  line-height: 24px;
  padding-left: 50px;
  margin-bottom: 0;
  color: #666666;
  transition: 0.3s;
}

.services .services-item:hover i, .services .services-item:hover h4, .services .services-item:hover p {
  color: #2979de;
}
*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact{
  margin: 150px 0;
}

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

#contact .contact-links {
  font-size: 14px;
  margin-top: 20px;
  margin-left: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
}

/* #hero .contact-links a {
  line-height: 1.5;
} */

#contact .contact-links a {
  background-image: linear-gradient(
    to right,
    #343a40,
    #7e8388 50%,
    #2979de 50%
  );
  margin-right:15px;
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

#contact .contact-links a:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

#contact .contact-links a:hover {
 background-position: 0;
 border-bottom: 0;

}

#contact .contact-links a:hover::before {
  width:100%;
}



.contact .info .email, .contact .info .phone {
  margin-top: 20px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #2979de;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #2979de;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0678e3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #343a40;
  font-size: 14px;
  text-align: center;
  padding: 3px 0;
  margin-top: 250px;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
.bc{
  background-color: #343a40;
  width: 100%;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 25px 0;
}

#footer .social-links a {
  font-size: 25px;
  display: inline-block;
  /* background: #2979de; */
  background-color: #ffffffa9;
  color: #2979de;
  line-height: 0;
  padding: 6px 0;
  /* padding: 8px 0; */
  margin: 0px 0px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #2979de;
  color: #fff;
  transition: .3s all ease-in-out;

}

.iconsm{
  font-size: 20px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 0px;
  }
#footer .copyright-1 {
  font-family: "Poppins", sans-serif;
  color: #555555;
  background-color: #343a40;
}

#footer .copyright-2 {
  font-family: "Poppins", sans-serif;
  color: #888888;
}

/* #footer .copyright-2 a{
  text-decoration: none;
  color: #2979de;
} */

#footer .copyright-2 a {
  background-image: linear-gradient(
    to right,
    #343a40,
    #9099a2 50%,
    #2979de 50%
  );
  font-weight: 500;
  background-size: 200% 100%;
  background-position: 100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

#footer .copyright-2 a:before {
  content: '';
  background: #2979de;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

#footer .copyright-2 a:hover {
 background-position: 0;
}

#footer .copyright-2 a:hover::before {
  width:100%;
}


/*--------------------------------------------------------------
# Animation
--------------------------------------------------------------*/

.hero-gif {
  float:right;
  width: 50%; 
  padding: 0px 50px;
  padding-top: 150px;
  animation-name: hero-float;  
  animation-duration: 4s;        
  animation-iteration-count: infinite; 
}

@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
   10% { transform: rotate( 2.0deg) }  /* The following five values can be played with to make the waving more or less extreme */
   20% { transform: rotate(-3.0deg) }
   30% { transform: rotate(2.0deg) }
   40% { transform: rotate(-3.0deg) }
   50% { transform: rotate(2.0deg) }
   60% { transform: rotate( 0.0deg) }  /* Reset for the last half to pause */
  100% { transform: rotate( 0.0deg) }
}

@keyframes vibrate {
  0% { transform: translateX(0px); }
 10% { transform: translateX(10px); }
 20% { transform: translateX(0px); }
 30% { transform: translateX(10px); }
 40% { transform: translateX(0px); }
 50% { transform: translateX(0px); }
 60% { transform: translateX(0px); }
 70% { transform: translateX(0px); }
 80% { transform: translateX(0px); }
 90% { transform: translateX(0px); }
 100% { transform: translateX(0px); }
}

@keyframes up-down {
  0% { transform: translatey(0px); }
 25% { transform: translatey(-10px); }
 50% { transform: translatey(0px); }
 75% { transform: translatey(-10px); }
100% { transform: translatey(0px); }
}

@keyframes hero-float {
  0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(20px);
	}
	100% {
		transform: translatey(0px);
	}
}


/* For demonstration purposes only: */
body { font-size: 3.5em }
h1 { font-size: 0.5em }

/* Media Queries */

@media (max-width: 1200px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 992px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main {
    width: 100%;
    height: 100vh;
  }
  .hero-gif {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main {
    height: 100vh;
  }
  .hero-gif {
    width: 100%;
    padding: 0;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .main {
    height: 100vh;
  }
  .hero-gif {
    width: 100%;
    padding: 0;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .back-to-top {
    right: 5px;
    bottom: 5px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .main {
    height: 100vh;
  }
  .hero-gif {
    width: 100%;
    padding: 0;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .back-to-top {
    right: 5px;
    bottom: 5px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title p {
    font-size: 16px;
  }
  .portfolio-details .portfolio-info h3 {
    font-size: 20px;
  }
  .portfolio-details .portfolio-info ul {
    font-size: 14px;
  }
  .portfolio-details .portfolio-info .view-more {
    font-size: 16px;
  }
  .contact .php-email-form input, .contact .php-email-form textarea {
    font-size: 14px;
  }
  .contact .php-email-form button[type="submit"] {
    padding: 10px 25px;
  }
  #footer h3 {
    font-size: 24px;
  }
  #footer p {
    font-size: 14px;
  }
  #footer .social-links a {
    font-size: 20px;
  }
}
