*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  .skill-card {
    background: #1d283980;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 10px black;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }
  
  .skill-card:hover {
    transform: translateY(-5px);
  }
  
  .skill-icon {
    font-size: 2.5rem;
    color: #d70f0f;
    margin-bottom: 20px;
  }
  
  .skill-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .skill-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .skill-item span {
    color: #c3cad5;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
  }
  
  .progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .progress-bar {
    background: linear-gradient(90deg, #d70f0f, #ff4444);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
  }
  
  @media (max-width: 768px) {
    .skill-card {
      margin-bottom: 20px;
    }
  }
  /* Services Section Styles */
.service-card {
  background: #1d283980;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px black;
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #d70f0f;
}

.service-icon {
  font-size: 2.5rem;
  color: #d70f0f;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #c3cad5;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: #c3cad5;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  color: #d70f0f;
}

  body{
  font-family: sans-serif;
  background: #0f1b39;
  color: #fff;
  }
  a{
  color: #fff;
  }
  .btn-5 {
    margin-top: 0.15rem;
    min-height: 34px;
    max-width: 230px;
    border-radius: 10rem;
    width: 100%;
    font-weight: 600;
    border-bottom: 2px #ffffff;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    font-size: 16px;
    transition: .3s;
    z-index: 1;
    cursor: pointer;
    font-family: inherit;
    color: white;
    margin-top: 10px;
   }
  
   .btn-5:hover {
    color: red;
   }
  /*navbar*/
  
  .header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  text-align: center;
  text-decoration: none;
  padding: 1rem 4% 1rem;
  }

  .navbar-scrolled{
    background-color: rgba(0, 0, 0, 0.70);
    color: #000;
	backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

  .menu{
    position: fixed;
    bottom: 8%;
    right: 5%;
    width: clamp(3rem, 5vw, 4rem);
    height: clamp(3rem, 5vw, 4rem);
    background-color: black;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    place-items: center;
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100;
    transition: all .3s ease;
  }
  .menu:hover{
    box-shadow: rgb(188, 121, 121);
  }
  .menu-icon{
    width: 50%;
    height: 3px;
    background: red;
    position: relative;
    border-radius: 3px;
    transition: all .4s ease;
  }
  .menu-icon::before,
  .menu-icon::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 3px;
    transition: all .4s ease;
  }
  .menu-icon::before{
    top: -7px;
  }
  .menu-icon::after{
    top: 7px;
  }
  .menu.active .menu-icon{
    background: transparent;
  }
  .menu.active .menu-icon::before{
    transform: rotate(45deg);
    top: 0;
  }
  .menu.active .menu-icon::after{
    transform: rotate(-45deg);
    top: 0;
  }
  .menu-links{
    position: fixed;
    z-index: 999;
    bottom: 25%;
    right: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    cursor: pointer;
    transform: translateY(30px);
    pointer-events: none;
    transition: all .4s ease;
  }
  .menu-links a{
    padding: clamp(0.20rem, 1vw, 1rem) clamp(1rem, 2vw, 1rem);
    background: black;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    border-radius: 15px;
    text-decoration: none;
    border: 2px solid white;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all .3s ease;
  }
  .menu-links a:hover{
    color: #000000;
    border: 2px solid black;
    background: #ffffff;
    transform: translateY(-3px);
  }
  .menu.active + .menu-links{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .navbar-brand img{
    max-height: 4em;
    }
    section{
      padding: clamp(2rem, 5vw, 6rem) clamp(1rem, 5vw, 4rem);
      min-height: 100vh;
    }
   /* Hero Section */
   .hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/coding-924920_1280.jpg");
    background-size: cover;
    background-position: center;
    color: white;
  }
  .wel-text{
  font-size: 25px;
  }
  .wel-text-2{
  font-size: 35px;
  }
  .wel-text-3{
  margin-bottom: 40px;
  }
  .home-icon{
    gap: 2rem;
    margin-top: 20px;
    }
    .home-icon i{
    width: 30px;
    height: 30px;
    padding: 10px;
    border-radius:50%;
    font-size: 20px;
    backdrop-filter: brightness(88%);
    color: white;
    box-shadow: 0 0 20px transparent;
    cursor: pointer;
    transition: all .50s ease;
    }
    
    .home-icon i:hover{
    color: red;
    transform: scale(1.1);
    }
    



    

.about-img .img-about {
  position: relative;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 10px black;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;  
  overflow: hidden;
  }
  
  .about-img .img-about{
  -webkit-animation: bounce 8s infinite ease-in-out;
  animation: bounce 8s infinite ease-in-out;
  }
  @-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  }
  
  @keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  }
  
  .bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  }
  .about-img .img-about .img-about-img {
  position: relative;
  width: 100%;
  height: 100%;
  background:  #0f1b39;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  z-index: 99;
  overflow: hidden;
  }
  .about-img .img-about .img-about-img img{
  position: absolute;
  display: block;
  top: 0%;
  width: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  }
  .about-text h2{
  font-size: 35px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  }
  .about-card{
  background: #1d283980;
  padding: 30px;
  box-shadow: 0 4px 10px black;
  border-radius: 20px;
  }
  
  .exp-area p{
  color:  #fff;
  font-size: 2.3rem;
  line-height: 42px;
  }
  .exp-area p span{
  color:  white;
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 8px;
  }
  
  
  .title_spectial {
  text-align: center;
  font-weight: 600;
  position:relative;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-size: 24px;
  }
  .title_spectial:after {
  content: "";
  display: block;
  background: red;
  width: 60px;
  height: 2px;
  margin: auto;
  margin-top: 15px;
  }
  

  /*skills*/
  /*Swiper slide*/
 .swiper {
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 10px black;
margin-bottom: 5rem;
}



.skills-icon span{
  color: white;
  }
  .skills-icon{
  border-radius: 1rem;
  background: #1d283980;
  padding: 15px;
  box-shadow: 0 4px 10px black;
  transition: 0.3s ease; 
  cursor: pointer;
  }
  .skills-icon svg{
  background-color: #313e56;
  padding: 1px;
  margin-right: 5px;
  border-radius: 5px;
  }
  
  .skills-icon:hover{
  background: #232f44;
  box-shadow: 0 4px 0px red;
  transform: scale(1.03);
  }
  
  .skills .skills-container .skills-bar .info{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  }
  .skills .skills-container .skills-bar .info h1{
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-left: 0.5rem;
  }
  
  /*skills end*/

  
   /*portfolio*/


.box-area{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 40px;
	margin-top: 50px;
}
.boxi{
	border-radius: 10px;
	position: relative;
  box-shadow: 0 4px 10px black;
	overflow: hidden;
  box-shadow: 0 4px 10px black;
}
.boxi img{
	width: 100%;
	border-radius: 10px;
	display: block;
	transition: transform 0.5s;
}
.overlay{
	height: 0;
	width: 100%;
	background: linear-gradient(transparent, #1c1c1c 58%);
	border-radius: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
	display: flex;	
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	font-size: 14px;
	transition: height 0.5s;
}
.overlay h3{
	font-weight: 700;
	margin-bottom: 5px;
	margin-top: 40%;
	font-size: 20px;
	letter-spacing: 2px;
}
.overlay a{
	
}
.boxi:hover img{
	transform: scale(1.2);
}
.boxi:hover .overlay{
	height: 100%;
}
.sourc a{
      position: relative;
      font-size: 1rem;
      color: #fff;
      width: 40px;
      text-decoration: none;
      height: 40px;
      padding: 5px;
      border-radius: 10%;
    }

.sourc a:hover{
       color: red;
    }



    
/* Contact Form */

.contact input {
  background: none;
  border: 2px solid #2d343f;
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  height: 52px;
  padding: 10px 10px 10px 30px;
  width: 100%;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  }
  .contact textarea{
  background: none;
  resize: none;
  border: 2px solid #2d343f;
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 10px 10px 30px;
  width: 100%;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  }
  .contact input:focus {
  background: none;
  color: #fff;
  border: 2px solid red ;
    box-shadow: none;
    outline: 0 none;
  }
  .contact textarea:focus {
    background: none;
    color: #fff;
    border: 2px solid red ;
    box-shadow: none;
    outline: 0 none;
  }
  
  
  form input::placeholder, 
  form textarea::placeholder{
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  color: #fff !important;
  }
  
  .btn_contact_btn:hover{
  color: #fff;
  border:2px solid red;
  background:none;
  }
  .address_title{margin-bottom:40px;}
  .address_title h4 {
  color: #fff;
  font-weight: 600;
  }
  .address_title p{padding-right: 30px;}
  .single_address {
  margin-bottom: 15px;
  overflow: hidden;
  }
  .single_address span {
  float: left;
  margin-right: 15px;
  background: red;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 30px;
  }
  .single_address p{
  color: #9aa9c1;
  padding-top: 6px;
  }
  
  
  .btn-6 {
  font-size: 20px;
  background: red;
  color: white;
  padding: 12px 30px;
  min-height: 40px;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border:2px solid red;
  border-radius: 4rem;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  }
  
  .btn-6 span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
  }
  
  .btn-6 svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
  }
  
  .btn-6:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
  }
  
  .btn-6:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
  }
  
  .btn-6:hover span {
  transform: translateX(9em);
  }
  
  .btn-6:active {
  transform: scale(0.95);
  }
  
  @keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  
  to {
    transform: translateY(-0.1em);
  }
  }

  .to-top.active{
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
    }
    .to-top{
      background: red;
      position: fixed;
      bottom: 16px;
      left: 32px;
      width: 40px;
      height: 40px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      text-decoration: none;
      pointer-events: none;
      opacity: 0;
      z-index:100;
      transition-duration: 0.3s;
      transition: all .4s;
      }
      .svgIcon {
        width: 12px;
        transition-duration: 0.3s;
      }
      
      .svgIcon path {
        fill: white;
      }
/* Mobile Responsive */
@media screen and (max-width: 576px) {

  .navbar-brand img{
  max-height: 3.4em;
  }
  .about-img .img-about {
    position: relative;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 10px black;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;  
    overflow: hidden;
    }
    
    .about-img .img-about{
    -webkit-animation: bounce 8s infinite ease-in-out;
    animation: bounce 8s infinite ease-in-out;
    }
    @-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    
    40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px);
    }
    
    60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px);
    }
    }
    
    @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
    
    40% {
      -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
      transform: translateY(-30px);
    }
    
    60% {
      -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
      transform: translateY(-15px);
    }
    }
    
    .bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    }

  .wel-text{
  font-size: 17px;
  }
  .wel-text-2{
  font-size: 20px;
  }
  .menu{
    position: fixed;
    bottom: 10%;
    right: 5%;
    width: clamp(3rem, 5vw, 4rem);
    height: clamp(3rem, 5vw, 4rem);
    background-color: black;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    place-items: center;
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100;
    transition: all .3s ease;
  }
  .menu:hover{
    box-shadow: rgb(188, 121, 121);
  }
  .menu-icon{
    width: 50%;
    height: 3px;
    background: red;
    position: relative;
    border-radius: 3px;
    transition: all .4s ease;
  }
  .menu-icon::before,
  .menu-icon::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 3px;
    transition: all .4s ease;
  }
  .menu-icon::before{
    top: -7px;
  }
  .menu-icon::after{
    top: 7px;
  }
  .menu.active .menu-icon{
    background: transparent;
  }
  .menu.active .menu-icon::before{
    transform: rotate(45deg);
    top: 0;
  }
  .menu.active .menu-icon::after{
    transform: rotate(-45deg);
    top: 0;
  }
  .menu-links{
    position: fixed;
    z-index: 999;
    bottom: 20%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    cursor: pointer;
    transform: translateY(30px);
    pointer-events: none;
    transition: all .4s ease;
  }
  .menu-links a{
    padding: clamp(0.20rem, 1vw, 1rem) clamp(1.5rem, 2vw, 1rem);
    background: black;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    border: 2px solid white;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all .3s ease;
  }
  .menu-links a:hover{
    color: #000000;
    background: #ffffff;
    border: 2px solid black;
    transform: translateY(-3px);
  }
  .menu.active + .menu-links{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}



/* Tablet Responsive */
@media screen and (min-width: 577px) and (max-width: 991px) {

  .menu{
    position: fixed;
    bottom: 10%;
    right: 5%;
    width: clamp(3rem, 5vw, 4rem);
    height: clamp(3rem, 5vw, 4rem);
    background-color: black;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    place-items: center;
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100;
    transition: all .3s ease;
  }
  .menu:hover{
    box-shadow: rgb(188, 121, 121);
  }
  .menu-icon{
    width: 50%;
    height: 3px;
    background: red;
    position: relative;
    border-radius: 3px;
    transition: all .4s ease;
  }
  .menu-icon::before,
  .menu-icon::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 3px;
    transition: all .4s ease;
  }
  .menu-icon::before{
    top: -7px;
  }
  .menu-icon::after{
    top: 7px;
  }
  .menu.active .menu-icon{
    background: transparent;
  }
  .menu.active .menu-icon::before{
    transform: rotate(45deg);
    top: 0;
  }
  .menu.active .menu-icon::after{
    transform: rotate(-45deg);
    top: 0;
  }
  .menu-links{
    position: fixed;
    z-index: 999;
    bottom: 20%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    cursor: pointer;
    transform: translateY(30px);
    pointer-events: none;
    transition: all .4s ease;
  }
  .menu-links a{
    padding: clamp(0.20rem, 1vw, 1rem) clamp(1.5rem, 2vw, 1rem);
    background: black;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    border: 2px solid white;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all .3s ease;
  }
  .menu-links a:hover{
    color: #000000;
    background: #ffffff;
    border: 2px solid black;
    transform: translateY(-3px);
  }
  .menu.active + .menu-links{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

.home-icon{
  gap: 1rem;
  }
  .home-icon i{
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius:50%;
  font-size: 15px;
  backdrop-filter: brightness(88%);
  color: white;
  box-shadow: 0 0 20px transparent;
  cursor: pointer;
  transition: all .50s ease;
  }
  
  .home-icon i:hover{
  color: red;
  transform: scale(1.1);
  }
  .wel-text{
  font-size: 17px;
  font
  }
  .wel-text-2{
  font-size: 20px;
  font
  }

.about-img .img-about {
position: relative;
width: 40vw;
height: 40vw;
border-radius: 50%;
padding: 5px;
margin-top: 40px;
display: flex;
justify-content: center;
align-items: center;  
overflow: hidden;
}

.about-img .img-about{
-webkit-animation: bounce 8s infinite ease-in-out;
animation: bounce 8s infinite ease-in-out;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}

40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}

60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}

40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}

60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}

.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
.about-img .img-about .img-about-img {
position: relative;
width: 100%;
height: 100%;
background:  #0f1b39;
border-radius: 50%;
display: flex;
justify-content: center;
z-index: 99;
overflow: hidden;
}
.about-img .img-about .img-about-img img{
position: absolute;
display: block;
top: 0%;
width: 100%;
object-fit: cover;
mix-blend-mode: lighten;
}
  }

  /* Contact Section */
.contact-info {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px black;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: #d70f0f;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: #c3cad5;
  font-size: 0.9rem;
  margin: 0;
}
.contact-us {
  background: var(--bg-color);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px black;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d70f0f;
  transform: translateY(-3px);
}

.contact-form .form-control {
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: var(--text-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: #d70f0f;
  box-shadow: 0 0 0 0.2rem rgba(215, 15, 15, 0.25);
}

.contact-form textarea {
  min-height: 160px;
  resize: none;
}

@media (max-width: 768px) {
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .contact-item {
    padding: 0.8rem;
    text-decoration: none;
  }
}



.expertise-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 10px black;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.expertise-icon {
  font-size: 2.5rem;
  color: #d70f0f;
  margin-bottom: 1.5rem;
}

.expertise-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  color: #c3cad5;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.expertise-list li i {
  color: #d70f0f;
  margin-right: 0.8rem;
}
/*whatsapp*/

.float{

  width: 40px;
    height: 40px;
  background-color:#25d366;
  color:#FFF;
  border-radius: 15px;
  text-align:center;
    font-size: 20px;
    place-items: center;
  box-shadow: 2px 2px 3px #999;
    z-index:100;
  align-items: center;
    justify-content: center;
  }
  .my-float{
  margin-top:16px;
  }
  
  .menu {
  animation: blink 2s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}
