
/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
    background-color: #ECF0F3;
    /* height: 400rem; */
  }

  a {
    text-decoration: none;
  }
  
  a:hover {
    color: #32cf93;
    text-decoration: none;
  }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
 
 

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding: 10px 6%; /* Added left and right padding */
  /* background-color: transparent; */
  transition: background-color 0.3s ease;
  box-shadow: 10px 5px 20px #00000033;
}

.navbar.sticky {
  background-color: #fff; /* Change this to the desired background color */
}

.logo img{
 max-height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  text-transform: uppercase;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0d816c;
}

#btn-one {
  background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
  box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
  color: #0d816c;
  padding: 10px 20px;
  border-radius: 5px;
}
#btn-one:hover {
  background: #000;
  transition: all 0.5s ease;
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  height: 3px;
  width: 25px;
  background-color: black;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
      position: absolute;
      top: 60px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 60px);
      background-color: rgb(255, 255, 255);
      flex-direction: column;
      align-items: center;
      /* justify-content: space-around; */
      transition: left 0.3s ease;
      font-size: 1.2rem;
  }

  .nav-links li {
      margin: 0;
      padding-top: 1rem;
  }

  .nav-links.active {
      left: 0;
  }

  .hamburger {
      display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
  }
}



  .styled-button {
    /* display: inline-block; */
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0d816c;
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4);
    border-radius: 5px;
    border: none;
    box-shadow: 2px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'poppins',sans-serif;
    text-transform: uppercase;
    margin-left: 2rem;
}

.styled-button:hover {
    box-shadow: 3px 3px 6px #d1d9e6, -3px -3px 6px #ffffff;
}

#hero .row{
  margin-top: 2.5rem;
}
.image-container {
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
    box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px; /* To create space for the border */
    width: 58%;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 5px solid #f0f0f3; /* Same color as the background to create the border effect */
}


.image-container-two {
  width: 40%;
}
@media screen and (max-width : 576px) {
  .row>* {
    /* flex-shrink: 0;
    width: 100%;
    max-width: 100%; */
    padding-right: calc(var(--bs-gutter-x)* .0);
    padding-left: calc(var(--bs-gutter-x)* .0);
    /* margin-top: var(--bs-gutter-y); */
  }
  #hero .row{
    margin-top: 0rem;
  }
  .image-container {
    padding: 20px;
    width: 100%;
    margin: 3rem auto;
}
#hero .image-container img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #f0f0f3; /* Same color as the background to create the border effect */
}

.image-container-two {
  width: 100%;
}
}
.image-container-two {
  margin: 0 auto;
}

.profile-card {
  padding: 25px 20px;
border-radius: 7px;
background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
  /* text-align: center; */
  margin-bottom: 25px;
}
.profile-actions {
  padding: 30px 20px;
  border-radius: 10px;
  background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
  box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
  /* text-align: center; */
}
#hero .image-container-two .circle-icon{
  background-color: #0d816c7b;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  /* text-align: center; */
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .circle-icon {
 
   width: 100px;
   height: 100px;
   border-radius: 50%;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.425);
 }
 
 #hero .image-container-two .icon{
  background-color: #0d816c;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-align: center;
 }
 #hero .image-container-two .icon .bi{
   color: #f3f3f3;
   font-size: 2rem;
 }

.profile-content {
  margin-top: 20px;
}
#hero .image-container-two span{
  color: #0d816c;
}
#hero .image-container-two h1{
  font-family: 'poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
#hero .image-container-two p{
  font-family: 'poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
#hero .image-container-two .list{
  display: flex;
  font-family: 'montserrat', sans-serif;
}
#hero .image-container-two .list .bi{
  color: #0d816c;
  font-size: 1.5rem;
}
#hero .image-container-two .list p{
  font-size: 1rem;
  padding-top: 5px;
  padding-left: 10px;
  font-weight: 500;
}

.btn {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  transition: background-color 0.3s;
  font-size: 1rem;
  font-weight: 600;
}

.btn-cv {
  color: #0d816c;
    font-family: 'poppins', sans-serif;
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
    box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
}
.btn-cv:hover {
  background: #0d816c;
  color: #fff;
}


.btn-contact {
  color: #0d816c;
    font-family: 'poppins', sans-serif;
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
    box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
}
.btn-contact:hover {
  background: #1f9580;
  color: #fff;
}


/* about-us-section */
/* .container, .container-fluid, .container-md, .container-sm, .container-xl, .container-xxl{
    padding-right: calc(var(--bs-gutter-x)* .0);
    padding-left: calc(var(--bs-gutter-x)* .0);
} */
#about-us .row{
  margin: 3rem 0;
}
#about-us .about-us-contr-one{
  width: 58%;
}
#about-us .about-us-contr-two{
  width: 40%;
}
@media screen and (max-width: 576px) {
  .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: calc(var(--bs-gutter-x)* .3);
    padding-left: calc(var(--bs-gutter-x)* .3);
}
  #about-us .about-btn{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 1rem;
  }
  
#about-us .about-btn button{
  font-size: 1rem;
  padding: 1rem 1rem;
  margin-right: 0;
}
#about-us .stats-section-row .stat {
  border-left: none;
  border-bottom: 1px solid #555;;
}
#about-us .stats-section-row .stat-last {
  border-left: none;
  border-bottom: 1px solid #555;;
}

  #about-us .about-us-contr-one{
    width: 100%;
  }
  #about-us .about-us-contr-two{
    width: 100%;
  }
  #about-us .about-us-contr-two img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
  }

}
@media screen and (max-width: 576px) {
  #about-us .container .row .about-us-contr-one .paragraph{
    font-weight: 500;
    font-size: .9rem;
  }
}
#about-us .about-us-contr-two img{
  border-radius: 10px;
  box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
}
#about-us .about-us-contr-two{
  margin: 0 auto;
}
#about-us .about-us-contr-one h2{
  font-weight: 800;
  text-transform: capitalize;
  font-family: 'poppins', sans-serif;
}
#about-us .about-us-contr-one h3{
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'poppins', sans-serif;
  padding-bottom: 2rem;
}
#about-us .about-us-contr-one h3 span{
  color: #0d816c;
}
#about-us .about-us-contr-one .paragraph{
  font-weight: 500;
  font-size: 1.2rem;
}

/* conting */
#about-us .stats-section-row{
  
  background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
  box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
  padding: 1rem;
}

.stats-section {
  /* background-color: #212529; */
  color: #000000;
  padding:0 0;
}

.stat {
  border-left: 1px solid #555;
}

.stat:first-child {
  border-left: none;
}

.counter {
  font-size: 3em;
  margin: 0;
  font-weight: bold;
  color: #0d816c;
  font-family: 'oswald',sans-serif;
}

.stats-section p {
  font-size: 1.2em;
  margin-top: 10px;
  font-weight: 600;
  font-family: 'poppins',sans-serif;
}

#about-us .abt-one{
  color: #000000;
  font-family: 'poppins', sans-serif;
  background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
  box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem .9rem;
  margin-right: 1rem;
  cursor: pointer;
}
#about-us .abt-one:hover{
background: #0d816c;
color: #fff;
transition: all 0.6s;
}
#about-us .abt-two{
  color: #0d816c;
  font-family: 'poppins', sans-serif;
  background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
  box-shadow: 5px 10px 10px #d1d9e6, -5px -10px 10px #ffffff;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem .9rem;
  /* margin-right: 1rem; */
  cursor: pointer;
}
#about-us .abt-two:hover{
background: #0d816c;
color: #fff;
transition: all 0.6s;
}




/* experience-section-end */
#Experience h4{
  font-size: 1rem;
  color: #0d816c;
}
#Experience h1{
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 2rem;
  font-family: 'poppins', sans-serif;
}
#Experience .col-one{
  width: 20%;
}
#Experience .col-two{
  width: 58%;
  padding-right: 20rem;
}
@media screen and (max-width: 576px) {
  #Experience h4{
    font-size: .8rem;
    color: #0d816c;
  }
  #Experience h1{
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 2rem;
    font-family: 'poppins', sans-serif;
  }
  #Experience .col-one{
    width: 100%;
  }
  #Experience .col-two{
    width: 100%;
    padding-right: 0rem;
    padding: 0 1rem;
  }
  #Experience .container .excard{
    margin: 0;
    width: 100%;
    padding: 1.5rem 0; 
    display: block;
    align-items: center;
    margin-bottom: 2rem;
  }
  #Experience .container .excard .card-image img{
    width: 90%;
    border-radius: .6rem;
    margin-left: 0;
    padding-bottom: 1rem;
    margin-left: 1rem;
  }
}
#Experience .excard{
  margin: auto;
  width: 80%;
  padding: 20px 0; 
  display: flex;
  align-items: center;
  border-radius: 1rem;
  background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
  box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
  margin-bottom: 2rem;
}
#Experience .excard .card-image img{
  width: 100%;
  border-radius: .6rem;
  margin-left: .6rem;
}


#Experience .label {
  display: inline-block;
  background-color: #0d816c;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9em;
  margin-bottom: 10px;
}

#Experience h2 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}

#Experience .role {
  font-size: 1.1em;
  color: #666;
  margin-top: 5px;
}

#Experience .description {
  font-size: 0.9em;
  color: #999;
  margin-top: 10px;
}

#Experience .contact-btn {
  display: inline-block;
  background-color: #fff;
  color: #0d816c;
  padding: 10px 20px;
  border: 1px solid #0d816c;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

#Experience .contact-btn:hover {
  background-color: #0d816c;
  color: #fff;
} 

/* resume-section */
#resume .resume-heading h4{
   color: #0d816c;
   font-size: 1.5rem;
}
#resume .resume-heading h1{
   color: #000000;
   font-size: 3.5rem;
   font-weight: 700;
}
@media screen and (max-width :576px) {
  #resume .resume-heading h1{
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
 }
 #resume .resume-heading h4{
  color: #0d816c;
  font-size: .8rem;
}
#resume .skills-section .skills-column h3{
   font-size: 1.5rem;
   padding-bottom: .5rem;
  padding-top: .5rem;
  color: #565656;
}
#resume .skills-section {
  display: block;
  justify-content: space-between;
}
#resume .skills-section .skills-column {
  width: 100%;
}
}
.skills-section {
  display: flex;
  justify-content: space-between;
}
.skills-column {
  width: 45%;
}
.skills-column h3{
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  font-weight: 600;
  color: #818181;
}
.skill {
  margin-bottom: 20px;
}
.skill-title .persontage{
  font-size: 18px;
  margin-bottom: 5px;

}
.progress-bar {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #d5d5d5;
}
.progress {
  display: block;
  height: 15px;
  border-radius: 20px;
  background: linear-gradient(to right, #ffffff, #0d816c);
  width: 0;
  transition: width 1.5s ease-in-out;
  font-weight: 600;
  align-items: center;
  text-align-last: right;
    padding-right: 2rem;
    color: #fff
}

/* resume-section-end */



/* profile-setions */

#portfolio{
    padding-bottom: 3rem;
    padding-top: 3rem;
}
#portfolio .portfolio-heading {
    padding-bottom: 3rem;
    padding-top: 3rem;
}
#portfolio .portfolio-heading h1{
     font-weight: 700;
     font-size: 3.5rem;
}

@media screen and (max-width: 576px) {
  #portfolio .portfolio-heading h1{
    font-weight: 700;
    font-size: 2rem;
}
#portfolio .portfolio-heading {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
}
@media screen and (min-width: 200px) and (max-width:899px){
  #portfolio .card {
    max-width: 95%;
    padding: 2rem;
    height: 25rem;
    margin: 20px 0;
    margin-bottom: 2rem;
    border: none;
    border-radius: 30px;
    transition: transform 0.2s;
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
    box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
}

}
@media screen and (min-width: 900px) and (max-width:1500px){
  #portfolio .card {
    min-width: 18rem;
    max-width: 23rem;
    padding: 2rem;
    height: 28rem;
    margin: 35px;
    border: none;
    border-radius: 30px;
    transition: transform 0.2s;
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
    box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
}

}

#portfolio .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  
}

#portfolio .card-body {
    text-align: center;
}

.card-footer {
    border-top: none;
    text-align: center;
    font-size: 1rem;
    color: #0d816c;
    align-items: center;
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
    box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
}
.card-footer:hover {
  transform: scale(1.05);
  transition: all .3s ease;
  cursor: pointer;
}
.card-footer:last-child {
  border-radius: .8rem;
}



        #portfolio .custom-nav-btn {
        float: right;
        margin-top: -46%;
        margin-right: 4%;
           
        }

        #portfolio .custom-nav-btn .btn-slider {
          background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
          box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
            border: none;
            border-radius: 50%;
            color: #000;
            font-size: 1.5em;
            /* padding: 10px; */
            width: 3rem;
            height: 3rem;
            cursor: pointer;
            padding-top: 0;
        }
@media screen and (max-width:576px) {
  
  #portfolio .custom-nav-btn {
    margin-top: -2%;
    margin-right: 36%;
       
    }

}


        #portfolio .owl-carousel .owl-nav button {
            display: none;
        }

/* modal-portfolio */
/* Modal container */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000; /* Increase z-index value */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 0; /* Remove padding-top */
}

/* Modal content */
.custom-modal-content {
  background-color: #ECF0F3;
  margin: 0; /* Remove margin */
  padding: 5% 10%;
  border: none; /* Remove border */
  width: 100%;
  height: 100%; /* Set height to 100% */
  max-width: none; /* Remove max-width */
  border-radius: 0; /* Remove border-radius */
  display: flex;
  flex-direction: column; /* Ensure the content stacks vertically */
  justify-content: center; /* Center the content vertically */
  align-items: center; /* Center the content horizontally */
  overflow: auto; /* Allow scrolling if content is too large */
}

/* Close button */
.custom-modal-close {
  color: #0a6652;
  position: fixed; /* Change to absolute positioning */
  top: 18%; /* Position at the top-right */
  right: 12%;
  font-size: 2rem;
  font-weight: 500;
  padding: 0 1rem;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(-145deg, #ECF0F3, #d4d4d4d4);
  box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
  color: rgb(255, 255, 255);
 background: #0a6652;
 transition: all 0.6s ease;
}

/* Modal body */
.custom-modal-body {
  display: flex;
  align-items: center; /* Center items horizontally */
  width: 100%;
  padding: 5% 4%;
  border-radius: 2rem;
  /* height: 100%; */
  justify-content: space-between; /* Center items vertically */
  background: linear-gradient(-145deg, #ECF0F3, #d4d4d4d4);
  box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
}
@media screen and (max-width: 576px){
  .custom-modal-content {
    padding: 5% 2%;
  }
  
  #portfolioModal .custom-modal-body {
    display: block;
    width: 100%;
    padding: none;
  }
  #portfolioModal .custom-modal-image {
    width: 100%;
  }
  #portfolioModal .custom-modal-image img {
    width: 100%;
  }
  
  #portfolioModal .custom-modal-text {
    width: 100%;
  }
  /* Close button */
  #portfolioModal .custom-modal-close {
  top: 10%; /* Position at the top-right */
  right: 2%;
  font-size: 2rem;
  font-weight: 500;
  padding: 0 1rem;
}
}
.custom-modal-image {
  width: 48%;
  border-radius: 10px;
}
.custom-modal-image img {
  width: 100%;
  border-radius: 10px;
}

.custom-modal-text {
  padding-top: 20px;
  text-align: left;
  padding-left: 1rem;
  width: 48%;
}

.custom-modal-text h5 {
  font-size: 24px;
  margin-bottom: 20px;
}

.custom-modal-text p {
  margin-bottom: 20px;
}

.custom-btn {
  background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
  color: #0a6652;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.custom-btn:hover {
  background: #0a6652;
  color: #fff;
  transition: all 0.5s ease;
}


/* contactus-section */
 #contactus{
  background: url("img/contactbg-01-01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  padding: 10% 0;
  margin-bottom: -5rem;
 }
 @media screen and (max-width: 576px) {
  #contactus{
    background:none;
    height: auto;
    margin-bottom: 0;
   }
   #contactus .contact-form {
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    margin: auto;
  }
 }
.contact-form {
  background: #fff;
  padding: 5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* max-width: 400px; */
  text-align: center;
}

.contact-form h1 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-bottom: 3px solid #ddd;
  border-radius: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 1px solid #333;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  padding: 10px 20px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.contact-form button:hover {
  background: #555;
}

/* contactus-section-end */
.dp-content .bluetick{
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 3px;
}
.dp-content .two-three{
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 10px;
}
.tweet {
  color: rgb(40, 40, 40);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 2rem;
}
@media screen and (max-width: 576px) {
  .tweet {
    padding: 1px;
    margin: 10px 2rem;
  }
}
.tweet .dp-text{
  padding-left: 1rem;
}

.tweet .visit-one{
  background-color: #1DA1F2; /* Twitter's brand color */
  text-decoration: none;
  font-size: 1rem;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  margin-top: .3rem;
}
.tweet .visit-one:hover{
  box-shadow: 5px 5px 10px #0000004d;
  transition: all .3s ease;
}
.tweet .visit-two{
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  text-decoration: none;
  font-size: 1rem;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  margin-top: .3rem;
}
.tweet .visit-two:hover{
  box-shadow: 5px 5px 10px #0000004d;
  transition: all .3s ease;
}

.tweet .visit-three{
  background-color: #25D366; /* WhatsApp's brand color */
  text-decoration: none;
  font-size: 1rem;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  margin-top: .3rem;
}
.tweet .visit-three:hover{
  box-shadow: 5px 5px 10px #0000004d;
  transition: all .3s ease;
}

.tweet img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  /* margin-right: 10px; */
  object-fit: cover;
}
.tweet .content {
  display: flex;
  align-items: center;
}
.tweet .text {
  font-size: 1em;
}



/* footer-section */
/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
} */
#footer{
  background: linear-gradient(360deg, #ffffff, #72c5ec); /* Gradient background */
}
.footer-container {

  padding: 20px;
  color: white;
}
@media screen and (max-width: 576px){
  .footer-container {
    padding: 0px;
  }
  
}
.newsletter {
  text-align: center;
}

.newsletter p {
  margin: 0;
  font-size: 16px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: .5rem;
  padding-top: 1rem;
  color: #0a6652;
}

.newsletter form {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.newsletter input[type="email"] {
  padding: 15px;
  padding-left: 2rem;
  border: none;
  border-radius: 5px 5px 5px 5px;
  font-size: 16px;
  width: 90%;
}

.newsletter button {
  padding: 10px 2rem;
  border: none;
  color: #fff;
  border-radius: 5px 5px 5px 5px;
  font-size: 16px;
  cursor: pointer;
  background: #0a6652;
  margin-left: .6rem;

}

.newsletter button:hover {
  background-color: #000000;
  transition: all 0.5s ease;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.footer-content .footer-logo{
  margin-top: 1rem;
}

.social-icons a {
  margin: 0 10px;
  background-color: #0a6652;
  color: #fff;
  border-radius: 50%;
  padding: .8rem 1rem;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.footer-logo img {
  width: 100px;
}

.footer-links {
  text-align: center;
}

.footer-links a {
  margin: 0 10px;
  color: #0a6652;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-credits {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #000;
  font-size: 12px;
  color: #000;
}

@media (max-width: 600px) {
  .footer-content {
      flex-direction: column;
  }

  .newsletter form {
      flex-direction: column;
  }

  .newsletter input[type="email"],
  .newsletter button {
      width: 100%;
      border-radius: 5px;
      margin: 5px 0;
  }

}

/* footer-section-end */