

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: #1f242d;

}

a{
  color: #fff;
  text-decoration: none;
}

/* Christmas Bells */
.left-bell,
.right-bell {
  position: fixed;
  width: 100px; /* Adjust size */
  height: auto; /* Maintain aspect ratio */
  z-index: 101; /* Above navbar */
}

.left-bell {
  top: 10px;
  left: 10px;
}

.right-bell {
  top: 10px;
  right: 10px;
}




.navbar{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 25px 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  animation: show-content 1.5s linear forwards;
  animation-delay: 1.2s;
}

@keyframes show-content {
  100% {
    visibility: visible;
    opacity: 1;
  }
}

.navbar .logo{
  font-size: 30px;
  font-weight: 700;
}

.navbar ul{
  display: flex;
}

.navbar ul li{
  list-style: none;
  margin-left: 35px;
}

.navbar ul li a{
  font-size: 20px;
  font-weight: 500;
  transition: .5s;
}

.navbar ul li:hover a,
.navbar ul li.active a {
  color: #ff0000;
}

.home{
  display: flex;
  align-items: center;
  gap: 50px;
  height: 100vh;
  padding: 60px 9% 0;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  animation: show-content 1.5s linear forwards;
  animation-delay: 1.2s;
}

.home-info h1{
  font-size: 55px;
}


.home-info h2{
  font-size:32px;
  margin-top: -10px;
}

.home-info p{
  font-size: 16px;
  margin: 10px 0 25px;
}

.home-info .btn-sci{
  display: flex;
  align-items: center;
}

.btn{
  display: inline-block;
  padding: 10px 30px;
  background: #ff0000;
  border: 2px solid #ff0000;
  border-radius: 40px;
  box-shadow: 0 0 10px #ff0000;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  transition: .5s;

}

.btn:hover{
  background: transparent;
  color: #ff0000;
  box-shadow: none;
}

.home-info .btn-sci .sci{
  margin-left: 20px;
}

.home-info .btn-sci .sci a{
  display: inline-flex;
  padding: 8px;
  border: 2px solid #ff0000;
  border-radius: 50%;
  font-size: 20px;
  color: #ff0000;
  margin: 0 8px;
  transition: .5s;
}

.home-info .btn-sci .sci a:hover{
  background: #ff0000;
  color: #1f242d;
  box-shadow: 0 0 10px #ff0000;
}

.home-img .img-box{
  position: relative;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  padding: 5px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home-img .img-box::before,
.home-img .img-box::after{
  content:'';
  position: absolute;
  width: 500px;
  height: 500px;
  background: conic-gradient(transparent, transparent, 
  transparent, #ff0000);
}

.home-img .img-box .img-item{
  position: relative;
  width: 100%;
  height: 100%;
  background: #1f242d;
  border-radius: 50%;
  border: .1px solid #1f242d;
  display: flex;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.home-img .img-box .img-item img{
  position: absolute;
  top: 30px;
  display: block;
  width: 105%;
  object-fit: cover;
  mix-blend-mode: lighten;
}

.bars-animation{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: -1;
}

.bars-animation .bar {
  width: 100%;
  height: 100%;
  background: #1f242d;
  transform: translateY(-100%);
  animation: show-bars .5s ease-in-out forwards;
  animation-delay: calc(.1 var(--i));
}

@keyframes show-bars{
  100%{
    transform: translateY(0%);
  }
}


/* About Section */
.about {
  padding: 60px 9%;
  color: #fff;
  text-align: center;
  background: #1f242d;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff0000;
}

/* Experience Section */
#experience {
  background-color: #1f242d;
  padding: 2rem 0;
  color: white; /* Set font color to white for the entire section */
}

#experience h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

#experience .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#experience .grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  #experience .grid {
      grid-template-columns: 1fr 1fr;
  }
}

#experience .card {
  background-color: #2d3748;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

#experience .card:hover {
  transform: translateY(-5px);
}

#experience h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#experience ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

#experience ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Responsive typography */
@media (max-width: 767px) {
  #experience h2 {
      font-size: 1.75rem;
  }

  #experience h3 {
      font-size: 1.125rem;
  }
}


/* Service Section */
.services {
  padding: 60px 9%;
  color: #fff;
  text-align: center;
  background: #1f242d;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff0000;
}

.service-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.card {
  background: #2a2f3a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(243, 0, 0, 0.919);
  flex: 1;
  max-width: 300px;
}

/* Contact Section */
.contact {
  padding: 60px 9%;
  color: #fff;
  text-align: center;
  background: #1f242d;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff0000;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ff0000;
  border-radius: 5px;
  background: #2a2f3a;
  color: #fff;
}

.contact button {
  padding: 10px;
  background: #ff0000;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.contact button:hover {
  background: transparent;
  color: #ff0000;
  border: 2px solid #ff0000;
}


/* Footer Styling */
.footer {
  text-align: center;
  padding: 20px;
  color: #fff;
  background: #1f242d;
  font-size: 16px;
}

.footer a {
  color: #ff0000;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
