html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

/* LOGO */

.logo {
  height: 55px;
  width: auto;

  object-fit: contain;
  display: block;
}

/* Tablet */

@media (max-width: 991px) {

  .logo {
    height: 48px;
  }

}

/* Mobile */

@media (max-width: 767px) {

  .logo {
    height: 42px;
  }

}

/* Header */
.main-header {
  z-index: 999;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #B0135A;
}

/* CTA Button */
.custom-btn {
  background: #B0135A !important;
  color: #fff !important; 
  border: none;
  transition: 0.3s ease;
}

.custom-btn:hover {
  background-color: #920f4d !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Mobile spacing */
@media (max-width: 991px) {

  .navbar-collapse {
    padding-top: 20px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .navbar-nav .btn {
    width: 100%;
  }
}


/* HERO SECTION */
.hero-banner {
  width: 100%;
  height: 700px;

  background: url('images/banner.png') center center/cover no-repeat;
}

/* Responsive */

@media (max-width: 991px) {

  .hero-banner {
    height: 500px;
  }

}

@media (max-width: 767px) {

  .hero-banner {
    height: 350px;
    background-position: center;
  }

}

/* ABOUT SECTION */

.about-section {
  background: #f8f9fa;
  padding: 100px 0;
}

/* Section Heading */

.section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
}

/* Description */

.about-description {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin-top: 25px;
  text-align: left;
}

/* Mission / Vision */

.info-box h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  text-align: left;
}

.info-box p {
  color: #666;
  line-height: 1.8;
  text-align: left;
}

/* FOUNDER CARD */

.founder-card {
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0,0,0,0.08);

  transition: 0.3s ease;

  max-width: 360px;

  margin: auto;
}

.founder-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */

.founder-img {
  width: 100%;

  height: 380px;

  object-fit: cover;

  display: block;
}

/* CONTENT */

.founder-content {
  padding: 18px 20px 20px;
}

.founder-content h5 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 10px;
}

.founder-content p {
  color: #666;

  margin-bottom: 6px;

  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 991px) {

  .founder-card {
    max-width: 340px;
  }

}

@media (max-width: 767px) {

  .founder-card {
    max-width: 100%;
  }

  .founder-img {
    height: 340px;
  }

}
/* WHY CHOOSE SECTION */

.why-choose-section {
  background: #f8f9fa;
  padding: 100px 0;
}

/* Heading */

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #B0135A !important;
  border-radius: 50px;
}

/* Cards */

.choose-card {
  background: #fff;
  padding: 22px 20px;
  border-radius: 16px;
  gap: 16px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-4px);
}

/* Icon */

.icon-box {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #eef8f2;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 22px;
  color: #B0135A;
}

/* Card Content */

.card-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {

  .section-title {
    font-size: 34px;
  }

  .card-content h4 {
    font-size: 24px;
  }

}

@media (max-width: 767px) {

  .why-choose-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .choose-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

}

/* SERVICES SECTION */

.services-section {
  background: #ffffff;
  padding: 100px 0;
}

/* Heading */

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #b76b2b;
  border-radius: 50px;
}

/* Service Card */

/* SERVICE CARD */

.service-card {
  background: #fff;

  padding: 25px 20px; /* reduced */

  border-radius: 16px;

  height: 100%;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);

  transition: 0.3s ease;

  border: 1px solid #f1f1f1;
}

.service-card:hover {
  transform: translateY(-4px);
}

/* Service Icon */

.service-icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: #eef8f2;

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 24px;
  color: #B0135A;
}

/* Content */

.service-card h4 {
  font-size: 20px;
  font-weight: 600;

  margin-bottom: 10px;

  color: #222;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;

  color: #666;

  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 991px) {

  .service-card h4 {
    font-size: 18px;
  }

}

@media (max-width: 767px) {

  .service-card {
    padding: 22px 18px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
  }

  .service-icon i {
    font-size: 22px;
  }

}

/* TEAM SECTION */

.team-section {
  background: #f8f9fa;
  padding: 100px 0;
}

/* Heading */

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #b76b2b;
  border-radius: 50px;
}

/* Team Card */
/* TEAM SECTION */

.team-card {
  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  height: 100%;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

/* Team Image */

.team-img-box {
  overflow: hidden;
}

.team-img-box img {
  width: 100%;

  height: 260px; /* reduced */

  object-fit: cover;

  transition: 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.04);
}

/* Team Content */

.team-content {
  padding: 20px 18px;
}

.team-content h4 {
  font-size: 20px;

  font-weight: 700;

  margin-bottom: 8px;

  color: #222;
}

.designation {
  font-size: 15px;

  font-weight: 600;

  color: #B0135A;

  margin-bottom: 8px;
}

.sub-text {
  font-size: 13px;

  color: #666;

  margin-bottom: 0;

  line-height: 1.6;
}

/* Responsive */

@media (max-width: 991px) {

  .team-img-box img {
    height: 240px;
  }

  .team-content h4 {
    font-size: 18px;
  }

}

@media (max-width: 767px) {

  .team-img-box img {
    height: 220px;
  }

  .team-content {
    padding: 18px 16px;
  }

}

/* LOGO SLIDER SECTION */
/* LOGO SLIDER SECTION */

.logo-slider-section {
  background: #ffffff;
  padding: 90px 0;
  overflow: hidden;
}

/* Heading */

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #b76b2b;
  border-radius: 50px;
}

/* Slider */

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Logo Track */

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;

  width: fit-content;

  animation: infiniteScroll 20s linear infinite;
}

/* Pause on Hover */

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Logo Item */

.logo-item {
  flex: 0 0 auto;
}

/* Logo Image */

.logo-item img {
  width: 150px;
  height: 80px;

  object-fit: contain;
  display: block;

  transition: 0.3s ease;
}

/* Hover Effect */

.logo-item img:hover {
  transform: scale(1.05);
}

/* Infinite Scroll Animation */

@keyframes infiniteScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* Responsive */

@media (max-width: 991px) {

  .section-title {
    font-size: 34px;
  }

}

@media (max-width: 767px) {

  .logo-slider-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .logo-track {
    gap: 35px;
  }

  .logo-item img {
    width: 110px;
    height: 60px;
  }

}

/* TESTIMONIAL SECTION */

.testimonial-section {
  background: #f8f9fa;
  padding: 100px 0;
}

/* Heading */

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #b76b2b;
  border-radius: 50px;
}

/* Testimonial Card */

.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* Quote */

.quote-text {
  position: relative;
  padding-left: 18px;
  margin-bottom: 40px;
}

.quote-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 80%;
  background: #d9f2e3;
  border-radius: 50px;
}

.quote-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  font-style: italic;
  margin-bottom: 0;
}

/* Client Info */

.client-info {
  gap: 15px;
}

.client-img img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.client-content h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
}

.client-content span {
  font-size: 16px;
  color: #888;
}

/* Responsive */

@media (max-width: 991px) {

  .section-title {
    font-size: 34px;
  }

  .client-content h5 {
    font-size: 20px;
  }

}

@media (max-width: 767px) {

  .testimonial-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .quote-text p {
    font-size: 16px;
  }

}

/* CONTACT SECTION */

.contact-section {
  background: #f8f9fa;
  padding: 100px 0;
}

/* Heading */

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #b76b2b;
  border-radius: 50px;
}

.contact-subtitle {
  max-width: 700px;
  margin: auto;

  color: #666;

  font-size: 16px;
  line-height: 1.8;
}

/* Contact Card */

.contact-card {
  background: #fff;

  padding: 45px;

  border-radius: 24px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  border: 1px solid #f1f1f1;
}

/* Form Inputs */

.contact-card .form-control {
  height: 58px;

  border-radius: 14px;

  border: 1px solid #ddd;

  padding: 15px 18px;

  font-size: 15px;

  box-shadow: none;
}

/* Textarea */

.contact-card textarea.form-control {
  height: auto;
  resize: none;
}

/* Focus Effect */

.contact-card .form-control:focus {
  border-color: #b76b2b;
  box-shadow: none;
}

/* Submit Button */

.submit-btn {
  background: #B0135A !important;
  color: #fff !important;

  padding: 15px;

  border-radius: 14px;

  border: none;

  font-size: 17px;
  font-weight: 600;

  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #9d5720;
  color: #fff;

  transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 991px) {

  .section-title {
    font-size: 34px;
  }

}

@media (max-width: 767px) {

  .contact-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-card {
    padding: 28px 20px;
  }

}

/* FOOTER SECTION */

.footer-section {
  background: #2f4156;
  color: #fff;
  padding: 80px 0 30px;
}

/* Footer Title */

.footer-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Orange Line */

.footer-line {
  width: 60px;
  height: 4px;
  background: #B0135A;
  border-radius: 50px;
  margin-bottom: 25px;
}

/* Footer Text */

.footer-text {
  color: #d3d3d3;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* Social Links */

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;

  transition: 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #B0135A;
  transform: translateY(-4px);
}

/* Footer Links */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #d3d3d3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact Info */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: #d3d3d3;
  line-height: 1.7;
}

.footer-contact i {
  color: #fff;
  margin-top: 4px;
}

/* Bottom Footer */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 15px;
  color: #d3d3d3;
}

/* Policy Links */

.footer-policy-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: #fff;
  transition: 0.3s ease;
}

.footer-policy-links a:hover {
  color: #b76b2b;
}

/* Responsive */

@media (max-width: 991px) {

  .footer-title {
    font-size: 24px;
  }

}

@media (max-width: 767px) {

  .footer-section {
    padding: 70px 0 25px;
    text-align: center;
  }

  .footer-line {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

}

/* STICKY CONTACT ICONS */

.sticky-contact-icons {
  position: fixed;
  right: 20px;
  bottom: 30px;

  display: flex;
  flex-direction: column;
  gap: 15px;

  z-index: 9999;
}

/* Common Style */

.sticky-contact-icons a {
  width: 58px;
  height: 58px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 28px;
  color: #fff;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);

  transition: 0.3s ease;
}

/* Hover Effect */

.sticky-contact-icons a:hover {
  transform: translateY(-5px) scale(1.05);
}

/* WhatsApp */

.whatsapp-icon {
  background: #25D366;
}

/* Phone */

.phone-icon {
  background: #0d6efd;
}

/* Mobile Responsive */

@media (max-width: 767px) {

  .sticky-contact-icons {
    right: 15px;
    bottom: 20px;
  }

  .sticky-contact-icons a {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

}

/* Popup form*/
/* MODAL */

.inquiry-modal {
  border-radius: 24px;
  border: none;

  overflow: hidden;
}

/* FORM INPUTS */

.inquiry-modal .form-control {
  height: 55px;

  border-radius: 14px;

  border: 1px solid #ddd;

  padding: 14px 16px;

  font-size: 15px;

  box-shadow: none;
}

/* TEXTAREA */

.inquiry-modal textarea.form-control {
  height: auto;
  resize: none;
}

/* FOCUS */

.inquiry-modal .form-control:focus {
  border-color: #B0135A;
  box-shadow: none;
}

/* SUBMIT BUTTON */

.modal-submit-btn {
  background: #B0135A !important;
  color: #fff !important;

  border: none;

  padding: 14px;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

.modal-submit-btn:hover {
  background: #920f4d;
  color: #fff;
}

/* MOBILE */

@media (max-width: 767px) {

  .inquiry-modal .modal-body {
    padding: 25px 20px !important;
  }

}