
/* Hide desktop slider on mobile */

.navbar {
    
    border-bottom: 1px solid #d4d4d4;
}
.desktop-slider {
  display: block;
}

.mobile-slider {
  display: none;
}

@media (max-width: 768px) {
  .desktop-slider,.top-bar {
    display: none;
  }
  .mobile-slider {
    display: block;
  }
  .about-section {
    padding-top:25px !important;
}
}

.active{
  color: #001d5b;
}
.top-bar {
      background-color: #002d7a;
      color: #fff;
      font-size: 14px;
      padding: 10px 0;
    }
    .top-bar .contact-info i {
      margin-right: 6px;
    }
    .top-bar .social-icons a {
      background: #2a8c29;
      color: #fff;
      margin-left: 6px;
      padding: 6px 9px;
      border-radius: 4px;
      transition: 0.3s;
      text-decoration: none;
    }
    .top-bar .social-icons a:hover {
      background: #206b20;
    }

    /* ===== Navbaar ===== */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    .navbar-brand img {
      height: 55px;
    }
    .nav-link {
      font-weight: 500;
      color: #000 !important;
      margin-right: 15px;
    }
    .nav-link:hover {
      color: #002d7a !important;
    }

    /* ===== Dropdown hover for Desktop ===== */
    @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    /* ===== Mobile Nav Fixes ===== */
    .navbar-toggler {
      border: none;
      font-size: 1.5rem;
    }

    /*----about-us--*/
      body {
      font-family: 'Poppins', sans-serif;
    }
    .about-section {
      padding: 80px 0;
    }
    .about-section h6 {
      color: #6ba83f;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .about-section h2 {
      color: #08275b;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.3;
    }
    .about-section p {
      color: #333;
      font-size: 17px;
      line-height: 1.8;
    }
    .about-section .btn-primary {
      background-color: #08275b;
      border: none;
      border-radius: 10px;
      padding: 10px 30px;
      font-weight: 600;
    }
    .about-section .btn-primary:hover {
      background-color: #0a357f;
    }
    .about-image img {
      width: 100%;
      border-radius: 10px;
    }
    /*--about-us-end----*/
    /*--items-we-collect----*/
    .multi-product-carousel {
  background-color: #f9f9f9;
}

.multi-product-carousel .product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
  padding: 15px;
}

.multi-product-carousel .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.multi-product-carousel .product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.multi-product-carousel .product-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

/* ✅ Anchor button style (gradient + rounded) */
.multi-product-carousel .product-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(90deg, #002d7a 0%, #2575fc 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.multi-product-carousel .product-btn:hover {
  background: linear-gradient(90deg, #2575fc 0%, #002d7a 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  color: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}



/*-----items-we-collectend----*/

/*---why-choose-us--*/
.why-choose-us {
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before,
.why-choose-us::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  z-index: 0;
}
.why-choose-us::before {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle at top left, rgba(90, 144, 255, 0.15), transparent);
}
.why-choose-us::after {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle at bottom right, rgba(167, 94, 255, 0.15), transparent);
}

.why-choose-us h2 {
  font-weight: 700;
  color: #1d1d1d;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.why-choose-us p {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.choose-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(230, 230, 255, 0.6);
  text-align: center;
  padding: 35px 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(12px);
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(101, 84, 255, 0.25);
  transition: all 0.3s ease;
}

.choose-card:hover .icon-wrap {
  transform: rotate(8deg) scale(1.1);
}

.choose-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d1d1d;
  font-size: 1.1rem;
}

.choose-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
/*why-cho0se-us-end--*/
/*--time-line--*/
.timeline-section {
  background: #eef2f7;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.section-title h6 {
  font-weight: 600;
  color: #007bff;
  text-transform: uppercase;
}

.section-title h2 {
  font-weight: 700;
  color: #222;
}

.timeline {
  position: relative;
  margin: 70px auto 0;
  max-width: 950px;
}

.line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #d1d9e6;
  border-radius: 4px;
}

.line-progress {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #002d7a, #00c851);
  border-radius: 4px;
  z-index: 2;
  transition: height 0.3s ease;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
}

.dot {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #002d7a;
  z-index: 3;
}

.timeline-item.left .card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.timeline-item.right .card::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.card h4 {
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

.card p {
  color: #555;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-item {
    width: 100%;
    padding: 20px 0 20px 60px;
    text-align: left !important;
  }

  .timeline-item.right {
    left: 0;
  }

  .line,
  .line-progress {
    left: 30px;
  }

  .dot {
    left: 30px;
  }

  .timeline-item .card::after {
    left: 25px !important;
    right: auto !important;
    transform: rotate(45deg);
  }
}

/*---time-line--end--*/
/*--faq-section--*/
.faq-heading h2 {
  font-family: 'Poppins', sans-serif;
  color: #002b7f;
}

.accordion-button {
  font-weight: 600;
  color: #002b7f;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #002d7a;
  background-color: #eaf2ff;
}

.accordion-body {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .faq-image {
    margin-bottom: 40px;
  }
}
/*--faq-section-end--*/
/*---testimonials--*/
.testimonial-section {
  background-color: #d2e3cc; /* light green background */
}

.testimonial-card {
  background-color: #03256C; /* dark navy blue */
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #fff;
  transition: transform 0.3s ease;
  height: 100%;
}

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

.testimonial-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 5px solid #fff;
  background: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

@media (max-width: 991px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/*----testimonials-end--*/
/*----cta--section----*/
.contact-help-section {
  background-image: url('../images/cta-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #001d5b; /* dark blue for heading */
}

.contact-help-section h2 {
  color: #002b8f;
}

.contact-help-section p {
  color: #333;
}

.contact-help-section .btn {
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-help-section .btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  .contact-help-section h2 {
    font-size: 1.2rem;
  }
  .contact-help-section p {
    font-size: 0.95rem;
  }
}

/*---cta-section--end--*/

/*---footer---*/
.footer-section {
  position: relative;
  background-image: url('../images/footer-img.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 84, 0.85); /* Blue overlay */
  z-index: -1;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #1a3b7b;
}

.social-icons a:hover {
  color: #7ac943;
}

@media (max-width: 768px) {
  .footer-section .col-md-6 {
    text-align: center !important;
  }

  .footer-section ul {
    padding-left: 0;
  }

  .footer-section h5 {
    margin-top: 20px;
  }
}

/*footer-end--*/
/*--inner-page--*/
/* HERO */
/* HERO */
.iron-hero {
  position: relative;
  background: url("../images/breadcrumbs.jpg") center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
/* Responsive Hero Adjustments */
@media (max-width: 768px) {
  .iron-hero {
    min-height: 35vh; /* reduce overall hero height */
    padding: 60px 0 40px; /* less vertical space */
  }

  .iron-hero h1 {
    font-size: 1.75rem;
  }

  .iron-hero .breadcrumb-text {
    font-size: 0.85rem;
  }
}

/* solid color overlay */
.iron-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #002d7ac1; /* Bootstrap blue overlay, adjust opacity */
  z-index: 1;
}

.iron-hero .container {
  position: relative;
  z-index: 2;
}

.iron-hero h1 {
  font-weight: 700;
}

.iron-hero .breadcrumb-text {
  color: #e6e6e6;
  font-size: 0.95rem;


}
.iron-hero .breadcrumb-text { color:#d1d1d1; font-size:.95rem; }

/* ABOUT */
.iron-about h2 { color:#222; }
.iron-about p { line-height:1.7; }

/* PRICE TABLE */
.table th { background:#002d7a !important; color:#fff !important; }

/* WHY CHOOSE US */
/* WHY CHOOSE US SECTION */
.why-choose {
  position: relative;
  background: url("../images/why-choose.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

/* solid color overlay */
.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 44, 128, 0.8); /* deep blue overlay */
  z-index: 1;
}

/* bring content above overlay */
.why-choose .container {
  position: relative;
  z-index: 2;
}

.why-choose h2 {
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.why-choose .choose-item {
  background-color:white;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  color: #000000;
  transition: all 0.3s ease;
}

.why-choose .choose-item:hover {
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  color: white;
}

.why-choose .choose-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}


/* WHAT WE COLLECT / WHO CAN SELL */
.iron-collect .section-header { background:#002c80; padding:10px 20px; border-radius:6px; }
.iron-collect .section-title { color:#fff; font-size:1.25rem; font-weight:600; margin:0; }
.iron-collect ul li { font-size:1rem; color:#222; margin-bottom:0px; display:flex; align-items:center; }

/* PROCESS TIMELINE */
/* Timeline Section */
.timeline-section {
  background-color: #f9f9f9;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 20px 0;
}

/* Static Flow Line Background */
.timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background: #e0e0e0;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  z-index: 0;
}

/* Animated Blue Flow Line */
.timeline-line {
  position: absolute;
  width: 4px;
  background: #002d7a;
  top: 0;
  left: 50%;
  margin-left: -2px;
  z-index: 1;
  height: 0;
  transition: height 0.2s ease-out;
}

/* Timeline Items */
.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
}

.timeline-item .timeline-content {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  z-index: 2;
  border: 1px solid #e0e0e0;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

/* Dots with Icons */
.timeline-dot {
  position: absolute;
  top: 25px;
  width: 36px;
  height: 36px;
  background: #002d7a;
  border-radius: 50%;
  z-index: 3;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.timeline-item.left .timeline-dot {
  right: -18px;
}

.timeline-item.right .timeline-dot {
  left: -18px;
}

/* Text Styling */
.timeline-item h5 {
  font-weight: 600;
  color: #333;
}

.timeline-item p {
  margin: 0;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before,
  .timeline-line {
    left: 25px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .timeline-item.right {
    left: 0%;
  }

  .timeline-dot {
    left: 8px !important;
  }
}

/* FAQ */
.iron-faq .accordion-button { font-weight:500; }
.iron-faq .accordion-button:focus { box-shadow:none; }

/* RELATED SCRAP */
.related-scrap .card { border-radius:10px; overflow:hidden; transition:.3s; }
.related-scrap .card:hover { transform:translateY(-5px); box-shadow:0 5px 15px rgba(0,0,0,.1); }
.related-scrap img { height:200px; object-fit:cover; }

/* FOOTER */
.iron-footer { background:#002d7a; }
.iron-footer p { font-size:.9rem; letter-spacing:.3px; }

/*--inner-page-end-*/
/*----price-list-cards-page---*/
/* ===============================
   ECO SCRAP CARDS SECTION
   =============================== */
.eco-pricelist-section {
  background: #ffffff;
}

.eco-section-header h2 {
  color: #0b2b5a;
  font-weight: 700;
}

.eco-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* 🔥 IMAGE CUT FIX */
.eco-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;        /* ✅ NO CUTTING */
  background: #f5f5f5;        /* clean look */
  padding: 10px;
  display: block;
}

/* CARD BODY */
.eco-card-body {
  padding: 20px 15px;
  text-align: center;
  flex-grow: 1;
}

.eco-card-body h5 {
  color: #0b2b5a;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Button */
.eco-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  border: 2px solid #ffffff;
  background: linear-gradient(135deg, #0b2b5a, #007bff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.eco-btn:hover {
  background: #fff;
  color: #0b2b5a;
  border-color: #0b2b5a;
}

/* Responsive */
@media (max-width: 992px) {
  .eco-card img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .eco-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
  }

  .eco-btn {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
.eco-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* 736x736 perfect */
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.eco-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* 🔥 NO CUTTING – EVER */
}

/*----price-list-cards-page-end--*/

/*----about-us---*/
/* HERO SECTION */
.eco-about-hero {
  position: relative;
  background: url('https://picsum.photos/1920/700') center/cover no-repeat;
  padding: 120px 0;
}
.eco-about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.eco-about-title {
  font-size: 3rem;
  font-weight: 700;
}
.eco-about-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ABOUT CONTENT */
.eco-about-heading {
  font-weight: 700;
  color: #1c1c1c;
}
.eco-about-text {
  color: #555;
  line-height: 1.7;
}

/* MISSION SECTION */
.eco-about-mission {
  position: relative;
  background: url('https://picsum.photos/1920/800?blur=3') center/cover no-repeat;
}
.eco-about-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.eco-about-box h4 {
  font-weight: 600;
  color: #fff;
}

/* WHY CHOOSE US */
.eco-about-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.eco-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.eco-about-card h5 {
  font-weight: 600;
  color: #1c1c1c;
}

/* CTA SECTION */
.eco-about-cta {
  position: relative;
  background: url('https://picsum.photos/1920/600?grayscale') center/cover no-repeat;
}
.eco-about-cta h2 {
  font-weight: 700;
}
.eco-about-cta .btn {
  border-radius: 30px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eco-about-hero {
    padding: 80px 0;
  }
  .eco-about-title {
    font-size: 2.2rem;
  }
}

/*----about-us--end--*/

/*----blog---*/
/* Hero Section */
.eco-blog-hero {
  background: url('https://images.unsplash.com/photo-1542831371-d531d36971e6') center/cover no-repeat;
  position: relative;
}
.eco-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 90, 0.6);
}
.eco-blog-hero .container {
  position: relative;
  z-index: 2;
}

/* Blog Cards */
.eco-blog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}
.eco-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.eco-blog-body {
  padding: 20px;
  text-align: center;
}
.eco-blog-body h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.eco-blog-body p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}
.eco-blog-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #007b5e;
  color: #007b5e;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.eco-blog-btn:hover {
  background: #007b5e;
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .eco-blog-hero {
    padding: 60px 0;
  }
  .eco-blog-body {
    padding: 15px;
  }
  .eco-blog-btn {
    padding: 6px 16px;
  }
}

/*---blog--end--*/
  .choose-icon {
  background: #fff;
  color: #057a55;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.choose-item:hover .choose-icon {
  background: #f8f9fa;
  transform: translateY(-5px);
}
.text-primary{
  color:#002d7a !important ;
}
.btn-primary{
  background-color: #002b7f !important;
}
/*---contact-us--page---*/
.contact-section input,
.contact-section textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #198754;
  box-shadow: 0 0 5px rgba(25, 135, 84, 0.3);
}

.map-container iframe {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.contact-card-section {
  background: linear-gradient(180deg, #f5f9f7 0%, #ffffff 100%);
}

.info-card {
  background: #fff;
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.map-container iframe {
  width: 100%;
  border: none;
}

.contact-card {
  background: #ffffffb3;
  border: 1px solid #e7e7e7;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.contact-card .form-label {
  color: #198754;
  font-size: 14px;
}

.contact-card .input-group-text {
  border: none;
  font-size: 16px;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  transition: all 0.3s ease;
  font-size: 15px;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  border-color: #198754;
  box-shadow: 0 0 6px rgba(25, 135, 84, 0.25);
}

#formStatus {
  color: #198754;
  font-size: 15px;
}


/*---contact-us-page--end--*/
.navbar .nav-link.active {
  color: #2eb85c !important;  /* Green highlight */
  font-weight: 600;
  border-bottom: 2px solid #2eb85c;
}
/*----=-faq------*/
.accordion-button {
  background-color: #fff;
  font-weight: 600;
  border-radius: 10px !important;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: #d1f5e0;
  color: #145c3a;
}
.accordion-body {
  color: #555;
  background: #fff;
  border-radius: 10px;
}
.faq-section {
    background-color: #ffffff !important;
}
/*------privacy---terms--conditions---*/
.privacy-section {
  background: #f8f9fa;
  line-height: 1.8;
}
.privacy-section h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.privacy-section ul {
  margin-left: 1.5rem;
}
.privacy-section ul li {
  margin-bottom: 8px;
}
.privacy-section p {
  color: #555;
}
.terms-section {
  background: #f8f9fa;
  line-height: 1.8;
}
.terms-section h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.terms-section ul {
  margin-left: 1.5rem;
}
.terms-section ul li {
  margin-bottom: 8px;
}
.terms-section p {
  color: #555;
}
.terms-section a {
  text-decoration: underline;
}
.testimonial-card {
  background: #262f75;
  border-radius: 15px;
}

.carousel-item {
  padding: 0px 0;
}

.carousel-inner {
  overflow: hidden;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
/* Position arrows properly */
.carousel-control-prev, 
.carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
}

/* Perfect round white button */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #ffffff !important; /* white circle */
  border-radius: 50%;
  padding: 15px;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  filter: none !important;
}

/* Replace default arrow svg with visible icon */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M11 1 3 8l8 7'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7'/%3E%3C/svg%3E");
}
.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }

  .about-im-s {
    height:500px !important;
  }


/* Move them inward so they don't look cut */
.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }
@media (max-width: 768px) {
  .about-im-s {
    height:300px !important;
  }
}
.price-ta {
  
  color: #262f75;
  
 font-size: 25px !important;
  font-weight: bold;
  margin-bottom:10px;
  text-align: center;
}
/* Floating icon button */
.floating-icons a {
  position: fixed;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* 🔥 FORCE IMAGE SIZE (FIXES YOUR ISSUE) */
.floating-icons a img {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  object-fit: contain;
  display: block;
}

/* Left phone */
.phone-float {
  left: 20px;
}

/* Right WhatsApp */
.whatsapp-float {
  right: 20px;
}

/* Hover effect */
.floating-icons a:hover {
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .floating-icons a {
    width: 48px;
    height: 48px;
  }
  .floating-icons a img {
    width: 22px !important;
    height: 22px !important;
  }
}
