/* Footer Styling */
.footer {
  /*background:#98df47;*/
  background:#a1a29f;
  /*background: #3b6808;*/
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials a {
  display: inline-block;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  text-align: center;
  line-height: 38px;
  border-radius: 5px;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: #ffb100;
  color: #071325;
  border-color: #ffb100;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}
.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ffb100;
  margin-top: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  /*color: #ffb100;*/
  color:black;
}

.footer-contact p {
  margin-bottom: 10px;
}
.footer-contact i {
  color:black;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid white;
  margin-top: 30px;
  padding-top: 15px;
}
.footer-bottom span {
  color:black;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
}

/*========================================*/
/* Section Wrapper */
.why-choose-bbfx {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

/* Title */
.why-choose-bbfx .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  /*color: #0a1f44;*/
  color:#3b6808;
}

/* Grid Layout */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Card */
.feature-card {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 25px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
  transition: 0.3s ease-in-out;
}

.feature-card:hover {
  background: #e9ecef;
  transform: translateY(-5px);
}

/* Card Title */
.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a1f44;
}

/* Card Text */
.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

/* Read More Link */
.feature-link {
  font-size: 14px;
  font-weight: 600;
  color: #0a1f44;
  text-decoration: none;
  border-bottom: 2px solid #0a1f44;
  padding-bottom: 2px;
  transition: 0.3s;
}

.feature-link:hover {
  color: #ff6600;
  border-color: #ff6600;
}

/* ðŸ“± Responsive Design */

/* Tablet (<=768px) */
@media (max-width: 768px) {
  .why-choose-bbfx {
    padding: 40px 15px;
  }

  .why-choose-bbfx .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .feature-card {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
    padding: 20px 15px;
  }

  .feature-title {
    font-size: 17px;
  }

  .feature-text {
    font-size: 14px;
  }
}

/* Mobile (<=480px) */
@media (max-width: 480px) {
  .why-choose-bbfx {
    padding: 30px 10px;
  }

  .why-choose-bbfx .section-title {
    font-size: 20px;
  }

  .feature-card {
    padding: 18px 12px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-text {
    font-size: 13px;
  }

  .feature-link {
    font-size: 13px;
  }
}


/*========================================*/
/* Section Wrapper */
.pamm-reasons {
  background: #f4f3f1;
  padding: 60px 20px;
  text-align: center;
}

/* Subtitle */
.pamm-reasons .subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 5px;
}

/* Title */
.pamm-reasons .section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #3b6808;
  /*color: #0a1f44;*/
}

/* Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Card */
.reason-card {
  background: #fff;
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #0a1f44;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}

.reason-card:hover {
  background: #3b6808; /* hover par yellow/orange effect */
  color: #fff;
  transform: translateY(-5px);
}

.reason-card:hover .icon-wrap {
  background: #fff;
  color: #ff6600;
}

/* Icon */
.icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #ffe6b3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0a1f44;
  transition: 0.3s;
}

/* CTA Button */
.btn-wrapper {
  margin-top: 40px;
}

.cta-btn {
  background: #0a1f44;
  color: #fff;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  white-space: nowrap; 
}
@media (max-width: 480px) {
  .cta-btn {
    font-size: 13px;   
    padding: 10px 18px; 
  }
}

.cta-btn:hover {
  background: #3b6808;
  color:white;
}

/* ðŸ“± Mobile Responsive */
@media (max-width: 768px) {
  .pamm-reasons {
    padding: 40px 15px;
  }

  .pamm-reasons .section-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .reason-card {
    padding: 20px 15px;
    font-size: 14px;
  }

  .icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pamm-reasons {
    padding: 30px 10px;
  }

  .pamm-reasons .section-title {
    font-size: 20px;
  }

  .reason-card {
    font-size: 13px;
    padding: 18px 12px;
  }

  .icon-wrap {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .cta-btn {
    font-size: 13px;
    padding: 8px 18px;
  }
}


/*===================card ==================================*/
/* Section Styling */
.projects-section {
  padding: 20px 20px;
  text-align: center;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.projects-heading h4 {
  color:#3b6808;
  margin-bottom: 10px;
  font-weight: 500;
}

.projects-heading h2 {
  font-size: 28px;
  color: #0a2d55;
  margin-bottom: 40px;
}

/* Grid Layout */
.projects-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Card Style */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Effect */
.project-card:hover img {
  transform: scale(1.1);
}

/* Overlay Text */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: left;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color:white;
}

.project-overlay p {
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-container {
    grid-template-columns: 1fr;
  }
}


/*===========================================================*/
.pamm-working-process {
  padding: 20px 20px;
  background: #fff;
}

.pamm-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.pamm-image img {
  max-width: 100%;
  border-radius: 10px;
}

.pamm-content {
  flex: 1;
}

.pamm-content .subtitle {
  font-size: 18px;
  color: #0077b6;
  margin-bottom: 10px;
}

.pamm-content .section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.pamm-list {
  list-style: none;
  padding: 0;
}

.pamm-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
}

.pamm-list li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  color: #0077b6;
  font-weight: bold;
}

/* âœ… Mobile responsive */
@media (max-width: 768px) {
  .pamm-row {
    flex-direction: column;
    text-align: center;
  }

  .pamm-content {
    margin-top: 20px;
  }

  .pamm-list li {
    text-align: left;
  }
}


/*--------------======================================----------------*/

.investment-example {
  padding: 60px 20px;
  background: #f9f9f9;
}

.investment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.investment-text {
  flex: 1;
}

.investment-text .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 8px;
}

.investment-text .section-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.investment-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.investment-chart {
  flex: 1;
  text-align: center;
}

.investment-chart img {
  max-width: 100%;
  height: auto;
}

/* âœ… Responsive Design */
@media (max-width: 768px) {
  .investment-row {
    flex-direction: column;
    text-align: center;
  }

  .investment-text {
    margin-bottom: 20px;
  }

  .investment-text p {
    text-align: left;
  }
}


/*mission and vission*/

  .new-section {
    padding: 30px 15px;
    background: #fff;
    text-align: center;
  }

  .new-section h2 {
    color: #00cfff;
    margin-bottom: 20px;
  }

  .new-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    justify-content: center;
  }

  .new-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    max-width: 300px; 
    margin: auto;
  }

  .new-card:hover {
    transform: translateY(-5px);
  }

  .new-card img {
    width: 100%;
    height: 140px;   /* Image छोटी */
    object-fit: cover;
  }

  .new-card-content {
    padding: 15px;
  }

  .new-card-content h3 {
    margin: 8px 0;
    font-size: 18px;   /* छोटा title */
    color: #111;
  }

  .new-card-content p {
    font-size: 13px;
    color: #666;
  }






.special-features {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-img img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
  /*box-shadow: 0px 4px 12px rgba(0,0,0,0.2);*/
}

.feature-info {
  flex: 1;
  text-align: left;
}

.feature-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-info {
    text-align: center;
  }
}





.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  padding: 40px;
  max-width: 1100px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.contact-left {
  flex: 1;
  padding-right: 40px;
}

.contact-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.contact-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.contact-info span {
  margin-right: 8px;
  font-size: 18px;
}

.contact-right {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-textarea {
  min-height: 120px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  font-size: 14px;
  margin-bottom: 20px;
}

.send-btn {
  background: #f9b000;
  border: none;
  padding: 14px 20px;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.send-btn:hover {
  background: #e19a00;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    padding: 25px;
    margin: 30px 15px;
  }

  .contact-left {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .contact-title {
    font-size: 22px;
    text-align: center;
  }

  .contact-desc {
    font-size: 14px;
    text-align: center;
  }

  .contact-info li {
    font-size: 13px;
  }

  .contact-right {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-input, 
  .form-textarea {
    font-size: 13px;
  }

  .send-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .contact-box {
    padding: 20px 15px;
  }

  .contact-title {
    font-size: 20px;
  }

  .contact-desc {
    font-size: 13px;
  }

  .form-input, 
  .form-textarea {
    padding: 10px;
  }
}


