


.carousel-item img{ 
height: 550px;
}

.carousel-inner h5{
color: white;
font-size: 50px;
font-weight: bold;
}

.carousel-inner p{
    color: whitesmoke;
    font-size: 30px;
font-weight: bold;
}








/* about-section-start */
/* About Section */
.about-section { 
  background: #ffffff;
}

.welcome-text {
  color: #644f0f;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-title {
  font-size: 60px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

.container p{
    font-size: 18px;
}

/* Buttons */
.btn-black {
  background: black;
  color: white;
  padding: 10px 25px;
  border: none;
  font-weight: 600;
}

/* Image Shape + Border */
.image-wrapper {
  width: 390px;
  height: 600px;
  margin: auto;
  padding: 10px;
  border-radius: 200px / 200px;
  border: 4px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(45deg, #ff0606) border-box;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px / 200px;
}



/* card-section */



.card-section {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
padding: 40px;
max-width: 1400px;
margin: auto;
}


.card {
perspective: 1000px;

}


.card-inner {
position: relative;
width: 100%;
height: 350px;
text-align: center;
transition: transform 0.7s;
transform-style: preserve-3d;
}


.card:hover .card-inner {
transform: rotateY(180deg);
}


.card-front, .card-back {
position: absolute;
width: 100%;
height: 100%;
border-radius: 10px;
backface-visibility: hidden;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
background: #fff;
}


.card-front img {
width: 100%;
height: 87%;
object-fit: cover;
}


.card-front .text {
padding: 10px;
font-size: 16px;
font-weight: 600;
}


.card-back {
background: #222;
color: #fff;
transform: rotateY(180deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 10px;

}

.card-back h2{
  font-size: 20px;
} 

.heading h2{
  font-size: 50px;
  text-align: center;
  font-weight: bold;
}

.heading h2 span{
  color: rgb(194, 7, 7);
}

.enquiry-btn{
  background-color: red;
  color: #fff;
  padding: 12px 28px;          /* button ko bada kar diya */
  font-size: 18px;             /* perfect readable size */
  font-weight: 600;
  border: none;
  border-radius: 8px;          /* smooth corners */
  cursor: pointer;
  transition: 0.3s ease;       /* smooth hover animation */
}

/* Hover effect */
.enquiry-btn:hover{
  background-color: #c40000;   /* thoda dark red hover */
  transform: translateY(-3px); /* halki lift animation */
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}





