/* previous colors :  //#ff5722, #e64a19 */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

h1 {
    color: #333;
}

.heading {
    font-size: 3rem !important;
    text-transform: uppercase;
    color: #E3B34A;
}
.top-logo-section {
  width: 25%;
}
.logo-img {
  width: 100px;
}
.dual-color-heading {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(to bottom, #E3B34A 75%, #5e5e5e 25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-transform: uppercase;
}

h1.dual-color-heading.long {
    background: linear-gradient(to bottom, #E3B34A 85%, #5e5e5e 15%);
    -webkit-background-clip: text;
}

/* Smooth scroller and scroll top styling start */
#scrollbar {
    height: 100vh;
    overflow: hidden;
}

.scroll-content {
    will-change: transform;
}

.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

#section1 { background: #59c5af; }
#section2 { background: #547e99; }
#section3 { background: #a373b5; }
#section4 { background: #cd8c85; }

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ffffffcc;
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.4s ease, transform 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

#scrollTopBtn.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
/* Smooth scroller and scroll top styling end */

/* navbar start */
button.navbar-toggler {
    background: #F8F9FA;
    border: 1px solid;
}
button.navbar-toggler .navbar-toggler-icon {
    background: #bfbfbf;
}
/* Shrinking navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #ccc;
    background-color: white;
}
ul.navbar-nav li a.active {
    color: #E3B34A !important;
}
.navbar.shrink {
    padding: 0.5rem 1rem;
    background-color: #ffffffe0 !important;
}

.nav-link {
    color: #444 !important;
    font-weight: 500;
    margin-right: 1rem;
}

.nav-link:hover {
    color: #E3B34A !important;
}

.btn-quote {
    background-color: #E3B34A;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #848282;
    color: #fff;
    border-color: #848282;
}

.services-details::after, .services::after, .hero::after, 
.hero-projects::after, .hero-project-details::after, .about-us::after, 
.contact-us::after, .faq::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    z-index: 3 !important;
}

/* navbar end */

/* home hero section start */

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero::before {
    content: "";
    background-image: url('/images/banners/hero-banner2.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes zoomPan {
    0% {
    transform: scale(1) translateX(0);
    }
    50% {
    transform: scale(1.15) translateX(-3%);
    }
    100% {
    transform: scale(1) translateX(0);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-content .buttons a {
    padding: 0.75rem 1.5rem;
    background-color: #E3B34A;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.hero-content .buttons a:hover {
    background-color: #848282;
}

@media (max-width: 600px) {
    .hero-content h1 {
    font-size: 2rem;
    }
    .hero-content p {
    font-size: 1rem;
    }
}

/* home hero section end */


/* home servces section start */

#services .card img {
  height: 200px;
  object-fit: cover;
}

#services .card-title {
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.btn.btn-outline-custom {
    border: 1px solid #E3B34A;
    color: #E3B34A;
}

.btn.btn-outline-custom:hover {
    border: 1px solid #848282;
    background-color: #848282;
    color: #fff;
}

/* home servces section end */

/* home how we work sction start */
.how-we-work-line {
  display: flex;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
}

.step {
  flex: 1 1 100%; /* full width on small screens */
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.circle {
  width: 50px;
  height: 50px;
  border: 3px solid #444;
  border-radius: 50%;
  font-weight: bold;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connector {
  display: none;
}

.step-title {
  margin-top: .7rem;
  font-size: 1.2rem;
  color: #444;
  font-weight: 700;
}

@media (min-width: 768px) {
  .how-we-work-line {
    flex-wrap: nowrap;
  }

  .step {
    flex: 0 0 auto;
    max-width: none;
    margin-bottom: 0;
  }

  .connector {
    display: block;
    flex: 0 0 50px;
    height: 2px;
    background-color: #444;
    margin: 0 0.5rem;
    margin-top: 5px;
  }
}
/* home how we work sction end */

/* home projects section start */
.project-card {
  position: relative;
  overflow: hidden;
}

.project-card img {
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

.custom-readmore {
    color: #E3B34A;
    border: 1px solid #E3B34A;
    background-color: transparent;
    transition: all 0.3s ease;
}

.custom-readmore:hover {
    background-color: #E3B34A;
    color: #fff;
}
/* General style */
.custom-swiper-button {
  width: 40px;
  height: 40px;
  background-color: #E3B34A; /* Dark background */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
  z-index: 10;
}

.custom-swiper-button:hover {
  background-color: #848282; /* Accent color similar to GET A QUOTE */
  transform: scale(1.05);
}
/* Use icons instead of text arrows (optional) */
.custom-swiper-button::after {
  font-size: 18px;
  color: #fff;
}

.submit-btn {
    position: relative;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
  }
  .btn--loading .btn__label { visibility: hidden; }
  .btn--loading::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid currentColor;
    border-right-color: transparent;
    animation: spin .7s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .btn--success { background: #28a745; color: #fff; border-color: #28a745; }
  .btn--success .btn__label { visibility: hidden; }
  .btn--success::after {
    content: "✓";
    position: absolute;
    font-weight: 700;
    animation: none;
  }

  .visually-hidden { position:absolute!important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; border:0; padding:0; margin:-1px; }
  .alert {
    margin-top: 1rem; padding: .9rem 1rem; border-radius: .5rem;
    border: 1px solid #d1e7dd; background: #f0fff4; color: #0f5132;
  }
  .alert.error { border-color:#f8d7da; background:#fff5f5; color:#842029; }

.swiper-button-prev.custom-swiper-button::after {
  content: '\2039'; /* ‹ */
}

.swiper-button-next.custom-swiper-button::after {
  content: '\203A'; /* › */
}
/* Responsive adjustment */
@media (max-width: 768px) {
  .custom-swiper-button {
    width: 32px;
    height: 32px;
  }
}
.projects .swiper-slide img {
    height: 300px !important;
}
/* home projects section end */

/* home customer feeback section start */
.cutomer-feedback .container .border-feed {
    border: 4px solid #E3B34A;
    border-right: none;
    padding: 40px 0px;
    position: relative;
}
.border-feed::after {
    content: "";
    width: 130px;
    height: 13px;
    background: #fff;
    top: -9px;
    position: absolute;
    right: 0;
}
.swiper-button-next.feedback-next,
.swiper-button-prev.feedback-prev {
color: #333;
top: 50%;
transform: translateY(-50%);
}

.swiper-button-next.feedback-next:hover,
.swiper-button-prev.feedback-prev:hover {
color: #007bff;
}

/* home customer feeback section end */

/* home contact section start */

section.contact-cta p {
    font-size: 21px;
    margin: 30px 0px;
}

/* home contact section end */

/* footer section start */

.footer-section {
  background-color: #fff;
}

.footer-section h5 {
  color: #444;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  border-bottom: 1px solid #aaa;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #E3B34A;
  border-color: #E3B34A;
}

/* footer section end */

/* concrete calculator page start */

.calculator-container {
    background: white;
    max-width: 600px;
    margin: auto;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 7% auto 2%;
}
.calculator-container .form-group {
    margin-bottom: 1rem;
}
.calculator-container label {
    display: block;
    margin-bottom: .5rem;
}
.calculator-container input {
    width: 100%;
    padding: .75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.calculator-container button {
    width: 100%;
    background: #E3B34A;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}
.calculator-container button:hover {
    background: #848282;
}
.calculator-container .result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e0f7fa;
    border-left: 5px solid #E3B34A;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* concrete calculator page end */

/* services page start */

.services {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.services::before {
    content: "";
    background-image: url('/images/services/service-banner.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}

#services .card-body p {
    text-align: justify;
}

.custom-comparison-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.custom-comparison-table th,
.custom-comparison-table td {
    border: 1px solid #333;
    padding: 15px;
}

.custom-comparison-table .comparison-title {
    font-weight: bold;
    background-color: #f9f9f9;
    width: 20%;
    vertical-align: middle;
}

.custom-comparison-table .sub-heading {
    font-weight: bold;
    background-color: #efefef;
}

.custom-comparison-table .row-heading {
    font-weight: bold;
    text-align: left;
    background-color: #f1f1f1;
}

.no-top-border {
    border-top: none !important;
    padding-bottom: 30px !important;
}

.no-bottom-border {
    border-bottom: none !important;
}

/* services page end */

/* services details page start */

.services-details {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-details::before {
    content: "";
    background-image: url('/images/services/details.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}

@media (max-width: 600px) {
    .service-detail-section .row.gx-5 {
        padding: 0px 15px;
    }
}

/* services details page end */

/* projects page start */

.hero-projects {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-projects::before {
    content: "";
    background-image: url('/images/projects/project-1.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
}

.filter-buttons .filter-btn {
  border: 1px solid #999;
  background: none;
  padding: 8px 16px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #E3B34A;
  color: #fff;
}

.project-img {
  background-size: cover;
  background-position: center;
  height: 250px;
  position: relative;
  transition: transform 0.4s ease;
  overflow: hidden;
}

.project-img:hover {
  transform: scale(1.03);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 20px;
  width: 100%;
  transition: 0.4s ease;
  opacity: 0;
}

.project-img:hover .project-overlay {
  opacity: 1;
}

.project-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.project-desc {
  font-size: 0.9rem;
  margin-top: 5px;
}

div#projectGrid {
    min-height: 70vh;
}

.project-card {
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.project-card.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.margin-top-zero {
    margin-top: 0px !important;
}

.margin-bottom-zero {
    margin-bottom: 0px !important;
}

/* projects page end */

/* project details page start */

.hero-project-details {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-project-details::before {
    content: "";
    background-image: url('/images/banners/banner1.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}

.project-detail {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.project-image {
  text-align: center;
  margin-bottom: 40px;
}

.project-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.project-subline {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
  font-style: italic;
}

.project-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.project-col {
  flex: 1 1 30%;
  min-width: 250px;
}

.project-col h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 8px;
}

.project-col p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.summary-row .label {
  font-weight: bold;
  color: #333;
}

.summary-row .value {
  color: #222;
  font-weight: 500;
  text-align: right;
}

/* project details page end */

/* about us page start */

.about-us {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.about-us::before {
    content: "";
    background-image: url('/images/about/about-us-banner2.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: auto;
}

.about-left {
  flex: 1 1 60%;
}

.about-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-right {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-box .text h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.about-box .text p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.about-box .icon {
  font-size: 50px;
  color: #ff9900; /* Or your brand color */
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-left, .about-right {
    flex: 1 1 100%;
  }
}

img.team {
    width: 250px;
    border-radius: 50%;
}

/* about us page end */

/* contact us page start */

/* Quote Section Layout */

.contact-us {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.contact-us::before {
    content: "";
    background-image: url('/images/contact/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}

.form-left, .form-right {
  flex: 1;
  min-width: 300px;
}
.form-subtext {
  color: #555;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
input, textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
textarea {
  resize: vertical;
}
.quote-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
}

.form-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.form-left {
  flex: 1.5;
  min-width: 300px;
}
.form-right {
  flex: 1;
  min-width: 300px;
}

.full-width {
  margin-top: 20px;
}
.submit-btn {
  width: 100%;
  padding: 12px 20px;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

/* Contact Details Section */
.contact-details {
  background-color: #f7f7f7;
  padding: 40px 0;
}
.contact-info h4 {
  margin: 0 0 5px;
}
.contact-info p {
  margin: 5px 0;
}
@media (max-width: 600px) {
    .form-right img {
        display: none;
    }
}
/* contact us page end */

/* FAQ page start */
.faq {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.faq::before {
    content: "";
    background-image: url('/images/faq/faq-banner.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: zoomPan 15s ease-in-out infinite;
    z-index: 1;
}
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-body {
  font-size: 1rem;
  line-height: 1.6;
}

button.accordion-button {
    color: #E3B34A;
}
.accordion-item {
    margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
    background-color: #E3B34A0f;
    color: #848282;
}
.accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

/* FAQ page end */