#countdown {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

#countdown div {
  font-size: 1.2rem;
  color: #fff;
  padding: 10px;
}

#countdown span {
  font-size: 2rem;
  color: white;  
  display: block;
  margin-bottom: 5px;
}

h1.text-white {
  white-space: nowrap; 
  color: white;
  font-size: 24px; 
}
@media (max-width: 768px) {
  h1.text-white {
      font-size: 13px !important; 
  }
}


h1.text-ele {
  white-space: nowrap; 
  color: white;
  font-size: 50px; 
}

p.text-secondary {
  white-space: nowrap;

}



#about-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
  #about-section .pl-lg-5 {
    padding-left: 0 !important;
  }

  #about-section {
    padding: 30px 0;
  }
}
.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 400px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 80%; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-body {

  text-align: center;
  padding-top: 7vh;
  margin-top: auto; 
}

.btn {
  margin: 5px;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
}

.container {
  padding-top: 50px;
}
/* Floating Icons Container */
.floating-icons {
position: fixed;
bottom: 20px;
left: 20px; /* Changed from right to left */
display: flex;
flex-direction: column;
gap: 10px;
}

/* Icon Style */
.floating-icons .icon {
text-decoration: none;
background-color: #333;
padding: 15px;
border-radius: 50%;
color: white;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
}

/* LinkedIn Color */
.floating-icons .linkedin {
background-color: #0077b5;
}

/* Instagram Color */
.floating-icons .instagram {
background-color: #e1306c;
}

/* Hover Effect */
.floating-icons .icon:hover {
background-color: #555;
}


/* Floating Video Container */
.floating-video {
position: fixed;
right: 20px;
bottom: 20px;
z-index: 1000; 
}

/* Video Styling */
.floating-video video {
width: 300px;
height: auto; 
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 
}
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -1; 
}
@media (max-width: 768px) {
  .floating-video{
      display: none;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}
 /* Mobile specific styles */
 @media only screen and (max-width: 768px) {
  .text-intro {
    text-align: center; 
    padding: 20px;
  }

  .text-intro h1 {
    font-size: 1.5rem; 
  }

  .countdown-container {
    display: flex;
    justify-content: center;
  }

  .video-bg {
    object-fit: cover; 
    width: 100vw; 
    height: auto; 
  }

  .overlay {
    background: rgba(0, 0, 0, 0.7); 
  }
}

/* For smaller devices (up to 480px) */
@media only screen and (max-width: 480px) {
  .text-intro h1 {
    font-size: 1.25rem; 
  }

  .text-intro p {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.875rem;
    padding: 10px 20px;
  }
}


 /* Popup container */
 .popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 999; /* Ensure it's above all other content */
}

/* Popup content */
.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 600px;
  text-align: center;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popupFadeIn 0.4s ease-out; /* Animation for smooth appearance */
}

/* Animation */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #a7382d;
}

/* Popup header styling */
h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}

/* Popup text */
p, ul {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  text-align: left;
}

/* Button style */
button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-warning {
  background-color: #ffc107;
  color: white;
}

.site-section {
  padding: 20px 0;
}

blockquote ul {
  padding-left: 20px;
  margin: 0;
}

.arrow-bullets {
  list-style-type: none;
  padding-left: 20px;
  color: white;
}

.arrow-bullets li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: white;
  font-size: 18px;
  
}

.arrow-bullets li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  font-size: 22px;
}

.section-title {
  margin-bottom: 10px; 

  font-size: 30px;
  color: rgb(0, 0, 0);
}

.arrow-list {
  list-style-type: none;
  padding-left: 1em;
}

.arrow-list li {
  position: relative;
  padding-left: 1.5em;
}

.arrow-list li:before {
  content: '\2192'; 
  position: absolute;
  left: 0;
  color: #ffc107; 
}
.circle-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
 
}

.navbar-logo {
  position: absolute;
  left: 20px; 
  top: 10px;
}
@media (max-width: 768px) {
  #photo {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin: -5px;
  }

  #photo .item {
      flex: 0 0 calc(33.333% - 10px); /* Each item takes 33.33% of the row minus margin */
      margin: 5px;
      box-sizing: border-box;
  }

  #photo .item img {
      width: 100%;
      height: auto;
      border-radius: 8px; /* Optional: Add border-radius for aesthetics */
  }
}

.video-responsive {
  max-width: 470px; 
  height: auto; 
  display: block; 
}
@media (max-width: 768px) {
#responsive-image{
  padding: 0;
  padding-left: 40vh;
}
}