*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}
header{
  width: 100%;
  height: 120px;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  position: fixed;
  z-index: 50;
}
.red-top{
  width: 100%;
  height: 40px;
  background-color: #ad0000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  padding-inline: 20px;
  align-items: center;
}
.top-left{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-left: 50px;
}
.top-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 60px;
    gap: 35px;
}
.white{
    display: flex;
    justify-content: space-between;
     margin-inline: auto;
     align-items: center;

   
}
/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-right: 60px;
  text-decoration: none;
}

.links {
  text-decoration: none;
  display: flex;
  color: #000;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.links li {
  list-style-type: none;
  position: relative;
}

/* Link Style */
.links li a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
}

/* Sliding Underline on Hover */
.links li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #960404;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s ease-in-out;
}

/* Hover Effect */
.links li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Slide-in from Left when not hovered */
.links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #960404;
  transform: scaleX(0);
  transition: transform 0.4s ease-in-out;
}

.links li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Button Style */
.btnn {
  background-color: #ad0000;
  color: #fff;
  padding: 7px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

/* Ripple Effect */
.btnn .ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* Hover Effect */
.btnn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(93, 4, 4, 0.923);
  background-color: #b80000;
}

/* Ripple Animation */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Add ripple on click */
.btnn:active .ripple {
  animation: ripple 0.6s linear;
}

/* .btnn:hover{
  color: #fff;
 background-color: #520101;
} */
.logo{
  display: flex;
  align-items: center;
  border: none;
  margin-left: 60px ;
  padding: none;
  line-height: 0;
  /* margin-bottom: 90px; */
                                          
}
.logo img{
  height: 100px;
  overflow-clip-margin: content-box;
  overflow: clip;
  /* vertical-align: middle; */
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 0;
}
.logo h1{
  font-size: 20px;
  font-weight: 200;
  color: #000;
  margin-left: 5px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.logo h1 span{
  font-weight: 100;
  font-style: italic;
  font-size: 14px;
  color: #ad0000;
}
.menu{
  background-color: #000;
  color: #fff;
  padding: 7px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border: none;
  transition: all 0.5s ease-in-out;
  display: none;
  z-index: 9999;
}
.menu:hover{
  color: #fff;
 background-color: #00000099;
}


.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999 !important;
  top: 0;
  right: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  background-color: #4d4a49;
  /* backdrop-filter: blur(20px); */
  /* border: medium solid red; */
}

.sidenav a {
  padding: 20px 20px 20px 32px;

  text-decoration: none;
  font-size: 25px;
  color: #fbf7f7;
  display: block;
  transition: 0.3s;
  font-weight: 600;
  font-family: "Playwrite GB S", serif;


}/* Add the dropdown styles for desktop */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-side {
  position: relative;
}

.dropdown-side > a {
  cursor: pointer;
}

.dropdown-content-side {
  display: none;
  flex-direction: column;
  background-color: #5b5959;
  padding-left: 20px;
}

.dropdown-content-side a {
  font-size: 20px;
  padding: 10px 0;
  color: #f0f0f0;
  transition: background 0.3s ease;
}

.dropdown-content-side a:hover {
  background-color: #d9d9d9;
  color: #000;
}

.dropdown-side:hover .dropdown-content-side {
  display: flex;
}



.sidenav a:hover {
  color: #151414;
  background-color: #f1f1f1;

}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  left: 5px;
  font-size: 36px;
  margin-left: 0;
}
.secone{
/* padding-top: 110px; */
z-index: -1 !important;
top: 110px;
position: relative;

}
.carousel-inner{
  /* display: none; */
  position: relative;
}
.itemone{
  height: 85vh;
  background-image: url(./image/h1_hero1.jpg);
  z-index: 1 !important;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
 
}
.itemtwo{
  height: 85vh;
  background-image: url(./image/h1_hero2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1 !important;
  object-fit: cover;
  
}
.itemthree{
  height: 85vh;
  background-image: url(./image/nk-ni-OINvefdu0T0-unsplash.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1 !important;
  object-fit: cover;
  
}
.one{
  position: absolute;
  top: 30%;
  left: 10%;
  font-family: "Playwrite GB S", serif;

}
.oneh1{
  font-size: 60px;
}
.one p{
  font-size: 25px;
}
.sectwo{
  position: relative;
  top: 170px;
}
.h12{
  font-size: 40px;
  font-weight: 600;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.cards {
  display: flex;
  overflow-x: auto;
  gap: 4rem;
  padding: 1rem;
  scroll-behavior: auto;
  /* scroll-snap-type: x mandatory; */
}


.card1 {
  flex: 0 0 auto;
  /* width: 18rem; */
  /* scroll-snap-align: start; */
  transition: all  0.3s ease-in-out;
}
.card1:hover{
  transform: scale(1.04);
  box-shadow: 0 0 10px  rgba(183, 5, 5, 0.782);
}
.card1:hover .tit{
  color: #960404;
}
.card1:hover .btt{
  background-color: #560202;
}
.secthree{
  position: relative;
  top: 240px;
}
.who{
  font-size: 50px;
  font-weight: 600;
  margin-top: 50px;
}
.ptag{
  font-size: 20px;
  margin-top: 60px;
  line-height: 30px;
}
.span{
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 20px;
  color: #960404;
}
.bigd{
  width: 90%;
  margin-inline: auto; 
}
.secfour{
  position: relative;
  top: 300px;
  background: radial-gradient(rgb(161, 3, 3),rgba(255, 255, 255, 0.407));
}

.txt{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 30px;
  margin-top: 50px;
}
.cardp{
  font-size: 22px;
}
.h{
  transition: all  0.3s ease-in-out;
  
}
.h:hover{
  color: #960404;
  transform: scale(1.04);
  box-shadow: 0 0 10px  rgba(183, 5, 5, 0.782);
}
.secfive{
  position: relative;
  top: 300px;

}
.secsix{
  position: relative;
  top: 290px;

}

.footer {
  background: linear-gradient(to right, #ad0000, #5a3c3c);
  color: #ffffff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  margin-top: 290px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, black, white);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, rgb(255, 255, 255), #5b0202);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yegtxt{
  font-size: 15px;
  font-weight: bold;
}

.footer-about {
  color: white;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 15px;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background: white;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: black;
  font-weight: bold;
  font-style: italic;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: black;
  transform: translateY(-3px);
  color: #fff;
}

.footer-newsletter {
  position: relative;
  margin-top: 20px;
}

.footer-newsletter input {
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  padding-right: 50px;
}

.footer-newsletter input::placeholder {
  color: #a4b5c6;
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 40px;
  border-radius: 50%;
  background: #ad0000;
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: black;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #a4b5c6;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-bottom-links a {
  color: #a4b5c6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: black;
}

@media (max-width: 768px) {
  .footer-section {
      margin-bottom: 40px;
  }
}

@media (max-width: 380px) {
  .footer-bottom-links  {
      flex-direction: column;
  }
}


/* Scroll Animations */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Modern Scroll Animations */
@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s, opacity 1s;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}