/* Landing Section Styles */
.landing-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    /* background-color: black;
    color: white; */
}
 .custom-card {
      border-radius: 15px;
      /* overflow: hidden; */
      transition: transform 0.2s;
    }
    .custom-card:hover {
      transform: scale(1.03);
    }

.landing-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.landing-section .content {
    position: relative;
    z-index: 2;
}
.lead{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    /* font-size: large; */
    /* letter-spacing: 1rem; */
    text-transform: uppercase;
   font-size: 20rem;
}
.display-2{
    font-size: xx-large;
    text-transform: uppercase;
}
.card{
    border-radius: 5rem;
}
.custom-card {
      border-radius: 1rem !important;
      overflow: hidden; /* so content also follows the curve */
    }
.card-img-top {
  height: 200px;         /* fixed uniform height */
  object-fit: contain;     /* fills card, crops extra */
  background-color: #f8f9fa; /* fallback bg if image is small */
}

.card-img-top-ser{
  height: 200px;         /* fixed uniform height */
  object-fit: cover;     /* fills card, crops extra */
  background-color: #f8f9fa; /* fallback bg if image is small */
}
.GST{
    font-size: large;
}


@media (max-width: 768px) {
    .landing-section h1 {
        font-size: 2.2rem;
    }
    .landing-section h3 {
        font-size: 1.2rem;
    }
    .landing-section .lead {
        font-size: 1rem;
       
    }
}
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #212529;
    padding: 0.75rem 2rem;
}
header a.navbar-brand {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: none;
}
header nav a {
    color: white;
    margin-left: 1.25rem;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
header nav a:hover {
    color: #ffc107;
}
main {
    padding: 2rem;
}
footer {
    background-color: #212529;
    color: white;
    padding: 1rem;
}
footer a {
    color: #0dcaf0;
}