body {
    background: #f1f1f1;
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 40px;
}

.imgSection{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

 .social-icon {
    font-size: 2.2rem;
    padding: 14px;
    border-radius: 50%;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .social-icon:hover {
    transform: scale(1.18);
    box-shadow: 0 0 18px currentColor;
  }


   /* Form Card Style */
  #whatsappForm {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #ff8800;
    box-shadow: 0 0 12px rgba(255, 136, 0, 0.4);
    animation: fadeIn 0.7s ease-in-out;
  }

  /* Input Glow on focus */
  #whatsappForm input:focus,
  #whatsappForm textarea:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
    transition: 0.3s;
  }

  /* Button Glow Pulse */
  .btn-glow {
    background: #1ebc46;
    border: none;
    color: white;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    animation: pulseGlow 1.8s infinite;
  }

  @keyframes pulseGlow {
    0% { box-shadow: 0 0 8px #1ebc46; }
    50% { box-shadow: 0 0 20px #1ebc46; }
    100% { box-shadow: 0 0 8px #1ebc46; }
  }

  /* Form Smooth Fade */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }


/* Section backdrop */
.contact-section {
  background: radial-gradient(80% 120% at 20% 0%, #ffefe0 0%, #fff 40%, #fff 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* soft floating shapes */
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  filter: blur(60px); opacity: 0.35;
  border-radius: 50%;
  animation: floaty 10s ease-in-out infinite;
}
.contact-section::before { background:#ff7a00; top:-120px; right:-80px; }
.contact-section::after  { background:#ffa94d; bottom:-140px; left:-80px; animation-delay: -4s; }

@keyframes floaty {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(12px) scale(1.02); }
}

/* Glassy cards */
.contact-card, .social-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 122, 0, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255,122,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover, .social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,122,0,0.18);
}

/* Heading – glow + underline sweep */
.section-heading {
  font-weight: 800;
  letter-spacing: .5px;
  color: #bf4b00;
  text-shadow: 0 0 14px rgba(255,122,0,.35);
  position: relative;
  display: inline-block;
  animation: fadeUp .6s ease both;
}
.section-heading::after {
  content:"";
  position:absolute;
  left: 0; bottom: -10px;
  height: 3px; width: 100%;
  background: linear-gradient(90deg,#ff7a00,#ffb25e);
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: sweep .8s .2s ease-out forwards;
}
@keyframes fadeUp { from {opacity:0; transform: translateY(10px)} to {opacity:1; transform: none} }
@keyframes sweep  { to { transform: scaleX(1)} }

/* Inputs – subtle glow on focus */
#whatsappForm .form-control, #whatsappForm textarea {
  border-radius: 12px;
  border: 1px solid rgba(255,122,0,0.25);
  background: rgba(255,255,255,0.9);
  transition: box-shadow .25s, border-color .25s, transform .06s;
}
#whatsappForm .form-control:focus, #whatsappForm textarea:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 0.25rem rgba(255,122,0,0.25), 0 8px 24px rgba(255,122,0,0.18);
}

/* Labels */
#whatsappForm .form-label {
  font-weight: 600;
  color: #753200;
}

/* Submit button – pulse glow on hover */
.btn-whats {
  background: linear-gradient(90deg,#25d366,#1ebe57);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(37,211,102,0.25);
  transition: transform .12s ease, box-shadow .2s ease;
}
.btn-whats:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.32), 0 0 18px rgba(37,211,102,0.45);
}

/* Social block */
.social-title {
  font-weight: 700;
  color: #a34200;
  margin-bottom: .75rem;
}

.social-icons {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.social-icons a {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(255,122,0,0.25);
  box-shadow: 0 8px 18px rgba(255,122,0,0.18);
  transition: transform .18s ease, box-shadow .2s ease, filter .2s ease;
  text-decoration: none;
}
.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,122,0,0.26);
  filter: drop-shadow(0 0 10px rgba(255,122,0,0.35));
}
.social-icons a .fa-brands, .social-icons a .fa-solid {
  font-size: 1.35rem;
}

/* Small helper for tight mobile spacing */
@media (max-width: 991.98px) {
  .contact-card, .social-card { margin-top: 16px; }
}



/* completed above */


#services {
  background: radial-gradient(circle at top left, #fff4e5, #ffffff);
}

#services .card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(255, 136, 0, 0.18);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(255,136,0,0.25);
  padding: 20px;
}

#services .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(255, 106, 0, 0.35);
}

#services img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform .4s ease;
}

#services img:hover {
  transform: scale(1.05);
}

.section-title {
  font-weight: 800;
  color: #c65300;
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(255,130,0,.35);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,#ff7a00,#ffd7a3);
  margin: 10px auto 0 auto;
  border-radius: 4px;
  animation: slideIn .9s ease-out forwards;
  transform: scaleX(0);
  transform-origin: center;
}

@keyframes slideIn {
  to { transform: scaleX(1); }
}

#services p, #services strong {
  font-size: 17px;
  line-height: 1.6;
  color: #4a2c00;
}

#designations p strong {
  color: #c65300;
  font-weight: 700;
}


/* done */

/* Section Background */
#about {
  background: radial-gradient(circle at top right, #fff3e5, #ffffff);
}

/* Card Style */
#about .card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(255, 136, 0, 0.25);
  box-shadow: 0 12px 35px rgba(255, 136, 0, 0.18);
  transition: all .35s ease-in-out;
}

#about .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(255, 106, 0, 0.38);
}

/* Heading */
#about h1 {
  font-weight: 800;
  color: #c65300;
  text-shadow: 0 0 14px rgba(255,130,0,.35);
  margin-bottom: 12px;
  animation: fadeDown .7s ease-out both;
}

@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-10px);}
  to   {opacity: 1; transform: translateY(0);}
}

/* Text */
#about p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a2c00;
}

/* Strong Text */
#about strong {
  color: #c65300;
  font-weight: 700;
}

/* Image Styling */
#about img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.20);
  transition: transform .45s ease, box-shadow .45s ease;
}

#about img:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}

/* Responsive Vertical Center Alignment */
@media (min-width: 992px) {
  #about .col-md-6:first-child,
  #about .col-md-6:last-child {
    display: flex;
    align-items: center;
  }
}


/* done */

/* Carousel Height + Smooth Zoom */
#myCarousel .carousel-item img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  transition: transform 4s ease-in-out;
}

#myCarousel .carousel-item.active img {
  transform: scale(1.10); /* slow zoom effect */
}

/* Gradient Overlay */
#myCarousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
}

/* Caption Style */
#myCarousel .carousel-caption {
  bottom: 60px;
  animation: fadeUp 1s ease-in-out forwards;
}

#myCarousel .carousel-caption h3 {
  font-size: 38px;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255,106,0,0.9);
  color: #ffb880;
}

#myCarousel .carousel-caption p {
  font-size: 18px;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* Navigation Arrow Glow */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 8px #ff7a00);
}

/* Slide Fade Animation */
.carousel-item {
  opacity: 0;
  transition: opacity .8s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

@keyframes fadeUp {
  0% { opacity:0; transform: translateY(20px); }
  100% { opacity:1; transform: translateY(0); }
}

/* Indicators Custom Style */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  background-color: #ff7a00 !important;
  border: none;
  border-radius: 50%;
  opacity: 0.6;
  transition: transform .3s;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.3);
}


/* done */

.navbar {
  background: linear-gradient(90deg, #1a1a1a, #3b1f00);
  border-bottom: 2px solid #ff7a00;
  box-shadow: 0 4px 18px rgba(255, 122, 0, 0.35);
}

.navbar-brand {
  font-weight: 800;
  font-size: 14px;
  color: #ffb35c !important;
  text-shadow: 0 0 12px rgba(255,130,0,0.75);
  transition: .4s;
}

.navbar-brand:hover {
  color: #ffd7a3 !important;
  text-shadow: 0 0 16px rgba(255,165,0,1);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #f8f8f8 !important;
  transition: 0.4s;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #ffb96e !important;
  text-shadow: 0 0 10px rgba(255,136,0,1);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: #ff7a00;
  border-radius: 4px;
  transition: 0.3s;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

.navbar-toggler {
  border-color: #ff8c29;
  box-shadow: 0 0 8px rgba(255, 136, 0, 0.7);
}


.logo{
    width: 40px;
    height: 40px;
}