* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}

.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.ubuntu-bold-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* -------------------top bar -------------- */

.top-bar {
    background-color: black;
    padding: 10px;
}

.quick-contact {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}


/* Animation Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/* Header2 Styles */
.header2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;
  display: none; /* hidden initially */
}

/* When showing */
.header2.show {
  display: block;
  animation: fadeInDown 0.5s ease forwards;
}

/* When hiding */
.header2.hide {
  animation: fadeOutUp 0.5s ease forwards;
}



.nav-link {
    color: black !important;
    font-size: 19px !important;
    margin-left: 10px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; 
    width: 0;
    height: 2px;
    background-color: #D80F1B;
    transition: width 0.3s ease;
}



.nav-link:hover {
    color: #D80F1B !important;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    border-bottom: 2px solid #D80F1B !important;
    color: #D80F1B !important;
}

.quick-contact a {
    text-decoration: none;
    color: white;
}

.navbar-brand img {
    width: 70px;

}

.navbar-brand {
    display: flex;
    gap: 10px;
}

.navbar-brand h3 {
    margin: 0;
    padding: 0;
    text-align: left;
    color: #D80F1B;

    font-weight: bold;
}

.main-btn{
    text-decoration: none;
    background-color:#ff2a38;
    padding: 15px 20px;
    color: white;
    border-radius: 6px;
}
.main-btn2{
    text-decoration: none;
    background-color:#ff2a38;
    padding: 10px 20px;
    color: white;
    border-radius: 6px;
}
.social-link{
    display: flex;
    justify-content: end;
    gap: 10px;
    
}
.social-link i{
    background-color: #ff2a38;
    padding:13px 14px;
    border-radius: 50%;
    color: white;
    font-size: 19px;
}



.phone-poster{
    display: none;
}

.poster{
    display: block;
}

/* -------------------- about ------------------ */


.heading-section{
    padding: 10px 0px;
}
.heading-section p{
    width: max-content;
    border: 1px solid #ff2a38;
    border-radius: 30px;
    color: #ff2a38;
    padding: 2px 20px;
    font-size: 14px;
margin: auto;
}
.heading-section h3{
    color: #ff2a38;
    text-align: center;
}


.heading-section2{
    padding: 10px 0px;
}
.heading-section2 p{
    width: max-content;
    border: 1px solid #ff2a38;
    border-radius: 30px;
    color: #ff2a38;
    padding: 2px 20px;
    font-size: 14px;

}
.heading-section2 h3{
    color: #ff2a38;

}




.about-section{
    padding: 40px 0px;
}
.about-section span{
color: #ff2a38;


}




/* -------------------- Service ------------------ */

.service-section {
  background: #f9f9f9;
  padding: 40px 0px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding:16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.service-image{
  height: 210px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}



.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.btn-main {
  background: #ff2a38;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: #D80F1B;
  color: #fff;
}


/* -------------------- faq ------------------ */

.faq-section {
  padding: 60px 0;
}

.accordion-button {
  background-color: #ff2a38 !important;
  color: #fff !important;
  font-weight: 600;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1); /* makes arrow white */
}

.accordion-item {
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.accordion-body {
  background: #fff;
  color: #333;
  font-size: 15px;
}





.gallery-section img {
  transition: transform 0.3s ease;
  cursor: zoom-in;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
}

.gallery-section img:hover {
  transform: scale(1.05);
}







/* --------------Contact  section --------------   */

.contact-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  min-height: 160px;
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-box h5 {
  font-weight: 600;
  font-size: 18px;
  color: #D80F1B;
}

.contact-box p {
  color: #555;
  margin: 0;
  font-size: 16px;
}

.contact-from {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.contact-from .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.contact-from .form-control:focus {
  border-color: #50914B;
  box-shadow: 0 0 0 0.2rem rgba(80, 145, 75, 0.25);
}

.map-container iframe {
  border-radius: 12px;

  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp2 0.6s ease-out forwards;
}

.animate-fade-in.delay-1 {
  animation-delay: 0.3s;
}

.animate-fade-in.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/*=========================
	Start Footer CSS
===========================*/

.footer .footer-top{
	padding:60px 0px;
	position:relative;
	background:black;
}
.footer a{
  text-decoration: none;
}
.footer .single-footer{
	
}
.footer .single-footer .social{
	margin-top:25px;
}
.footer .single-footer .social li{
	display:inline-block;
	margin-right:10px;
}
.footer .single-footer .social li:last-child{
	margin-right:0px;
}
.footer .single-footer .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #fff;
	text-align: center;
	padding: 0;
	border-radius: 100%;
	display: block;
	color:#fff;
	font-size: 16px;
}
.footer .single-footer .social li a:hover{
	color:#1A76D1;;
	background:#fff;
	border-color:transparent;
}
.footer .single-footer .social li a i{
	
}
.footer .single-footer.f-link li a i{
	margin-right:10px;
}
.footer .single-footer.f-link li{
	display:block;
	margin-bottom:12px;
}
.footer .single-footer.f-link li:last-child{
	margin:0;
}
.footer .single-footer.f-link li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
}
.footer .single-footer.f-link li a:hover{
	padding-left:8px;
}
.footer .single-footer h2{
	color:#fff;
	font-size:20px;
	font-weight:600;
	text-transform:capitalize;
	margin-bottom:40px;
	padding-bottom:20px;
	text-transform:capitalize;
	position:relative;
}
.footer .single-footer h2::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0px;
	height: 3px;
	width: 50px;
	background: #fff;
}
.footer .single-footer .time-sidual{
	margin-top:15px;
}
.footer .single-footer .time-sidual{
	overflow:hidden;
}
.footer .single-footer .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span{
	display:inline-block;
	float:right;
}
.footer .single-footer .day-head .time {
	font-weight: 400;
	float: right;
}
.footer .single-footer p{
	color:#fff;
}



.footer .copyright{
	background:black;;
	padding:25px 0px 25px 0px;
	text-align:center;
}
.footer .copyright .copyright-content p{
	color:#fff;
}
.footer .copyright .copyright-content p a{
	color:#fff;
	font-weight:400;
	text-decoration:underline;
	display:inline-block;
	margin-left:4px;
}
/*=========================
	End Footer CSS
===========================*/



.abs-form {
  position: fixed;
  top: 300px;
  right: -300px; /* hidden by default (off-screen) */
  width: 300px;
  padding: 10px;

  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18.5px);
  -webkit-backdrop-filter: blur(18.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 999;
  transition: right 0.4s ease-in-out; /* smooth sliding */
}

.abs-form.show {
  right: 0; /* visible */
}

.abs-btn {
  position: absolute;
  top: -1px;
  left: -77px;
}

.abs-btn button{
    background-color: #ff2a38;
  border: none;
  color: white;
  padding: 4px 8px;
}
.abs-form input{
  height: 30px !important;
  border-radius: 2px;
  font-size: 14px;
  box-shadow: none !important;
}
.abs-form label{
  font-size: 13px;
}
.abs-form textarea{
  height: 60px !important;
  border-radius: 2px;
  font-size: 14px;
  box-shadow: none !important;
}

.main-btn3{
  background-color: #ff2a38;
  padding: 5px 7px;
  margin-top: 10px;
  color: white;
  border-radius: 5px;
}


@media (max-width: 576px) {
  .social-link{
      margin-top: 20px;
      justify-content: center;
  }
  .quick-contact{
      gap: 23px;
  }
  
  .nav-item .main-btn{
      display: none;
  }
  
  
.phone-poster{
    display: block !important;

}
.phone-poster img{
        height: 300px !important
        ;
}

.poster{
    display:none;
}

}
