body {
font-family: "Segoe UI", Arial, sans-serif;
}


/* Header Styling */
#main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 9999; /* ya koi bada number */
}

.logo img {
    width: 20%;
}




/* ================= BREADCRUMB ================= */

.t7-breadcrumb {
    font-size: 15px;
    margin-bottom: 20px;
    color: #dddddd;
    text-align: start;
    margin-top: 20px;
}

.t7-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.t7-breadcrumb a:hover {
    text-decoration: underline;
}

.t7-breadcrumb span {
    margin: 0 5px;
}


/* ================= HERO SECTION ================= */

.t7-hero {
    position: relative;
    min-height: 70vh;
    background: url('../images/hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
        padding-bottom: 33px;
        padding-top: 50px;
}

/* Dark Overlay */

.t7-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

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


/* ================= TITLE ================= */

.t7-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.t7-hero-title span {
    color: #ffb400;
}


/* ================= SUBTITLE ================= */

.t7-hero-sub {
    font-size: 1.1rem;
    margin: 0 auto 30px;
    line-height: 1.4;
    color: #f1f1f1;
    font-weight: 400;
}


/* ================= BUTTON ================= */

.t7-btn-orange {
    background: #ffb400;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.t7-btn-orange:hover {
    background: #ffb400;
    color: #ffffff;
    transform: translateY(-2px);
}
a.btn.herobtn.btn-lg
 {
    background-color: #ffb400;
    border-radius: 22px;
    color: #fff;
}
a.btn.herobtn.btn-lg:hover
 {
    background-color: transparent;
    border-radius: 22px;
    color: #ffb400;
    /* border-color:  #ffb400; */
}


.dp-signage-section {
    padding: 30px 0;
    background: #ffffff;
}

/* Section Title */

.dp-section-title {
    margin-bottom: 10px;
}

.dp-section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.dp-section-title span {
    color: #ffb400;
}

.dp-title-line {
    width: 60px;
    height: 3px;
    background: #ffb400;
    margin-top: 8px;
}


/* Grid Gap */

.dp-signage-grid {
    row-gap: 35px;
}


/* ================= CARD ================= */

.dp-signage-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.dp-signage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}


/* Image */

.dp-signage-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    aspect-ratio: 900 / 700;
}

.dp-signage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.dp-signage-card:hover img {
    transform: scale(1.08);
}


/* Title */

.dp-signage-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px;
    color: #222;
}


/* Button */

.dp-view-btn {
    display: inline-block;
    padding: 7px 22px;
    border: 2px solid #ffb400;
    border-radius: 30px;
    color: #ffb400;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.dp-view-btn:hover {
    background: #ffb400;
    color: #fff;
}

/* Reset */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f9f9f9;
} */


/* Section */
.t7-projects-section {
  padding: 20px 20px;
  background: #ffffff;
}

.t7-container {
  max-width: 1300px;
  margin: auto;
}


/* Section Header */

.t7-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.t7-section-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
}

.t7-line {
  flex: 1;
  height: 3px;
  background: #ffb400;
}


/* Grid */

.t7-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}


/* Card */

.t7-project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.t7-project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}


/* Hover Effects */

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

.t7-project-card:hover img {
  transform: scale(1.08);
}

.t7-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244,129,32,0.15);
  opacity: 0;
  transition: 0.3s;
}

.t7-project-card:hover::after {
  opacity: 1;
}

/* Overlay Info */

.t7-project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2),
    transparent
  );

  color: #fff;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.t7-project-info h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffb400;
}

.t7-project-info p {
  font-size: 14px;
  color: #eee;
}


/* Show On Hover */

.t7-project-card:hover .t7-project-info {
  opacity: 1;
  transform: translateY(0);
}

/* ===== EXPLORE CTA SECTION ===== */

.t7-explore-section {
    padding: 90px 15px;
    background: #ffffff;
    text-align: center;
}

.t7-explore-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.t7-explore-section p {
    font-size: 18px;
    color: #666;
    max-width: 100%;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* Button */

.t7-explore-btn {
    display: inline-block;
    background: #2f3640;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.t7-explore-btn:hover {
    background: #ffb400;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(244,129,32,0.4);
}

/* ===== FOOTER ===== */

.t7-footer {
    background: #2f3640;
    color: #ccc;
    padding: 70px 0 0;
    font-size: 15px;
}

.t7-footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

/* Orange underline */

.t7-footer h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ffb400;
    position: absolute;
    left: 0;
    bottom: -8px;
}


/* Paragraph */

.t7-footer p {
    line-height: 1.7;
    color: #bbb;
}


/* Lists */

.t7-footer-list,
.t7-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t7-footer-list li {
    margin-bottom: 10px;
}


/* Links */

.t7-footer-links li {
    margin-bottom: 10px;
}

.t7-footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.t7-footer-links a:hover {
    color: #ffb400;
    padding-left: 5px;
}


/* Social */

.t7-footer-social {
    margin-top: 20px;
}

.t7-footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: #ffb400;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
    font-size: 17px;
}

.t7-footer-social a:hover {
    background: #ffb400;
    transform: translateY(-3px);
}


/* Bottom Bar */

.t7-footer-bottom {
        background: #0202023d;
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.t7-footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 13px;
    padding-bottom: 58px;
    line-height: 18px;
}



.t7-footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #fff;
}

.t7-footer-list svg {
  color: #ffb400;
  flex-shrink: 0;
}
/* Main Bar */
.fixbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  font-size: 14px;
  height: 65px;
}

/* Left */
.fixbar-left span {
  margin-right: 15px;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Button */
.fixbar-btn {
  background: #ffb400;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
}

.fixbar-btn:hover {
  background: none;
  color: #ffb400;
  border: 2px solid #ffb400;
}

/* Right */
.fixbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fixbar-right span {
  margin-right: 5px;
}

.fixbar-right a {
  color: #000;
  font-size: 16px;
  transition: 0.3s;
}

.fixbar-right a:hover {
  color: #ffb400;
}

.headbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 16px;

  border: 2px solid #ffb400;   /* warning color */
  border-radius: 30px;

  color: #ffb400;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  background: transparent;

  transition: all 0.3s ease;
}

/* Hover Effect */
.headbtn:hover {
  background: #ffb400;
  color: #ffffff;
}


/* ===== Lead Form Section ===== */

.t7-lead-form {
  background: #f5f8fb;
  padding: 60px 0;
}

/* Main Box */
.t7-lead-box {
  background: #fff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Heading */
.leadhead {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 40px;
}

/* Input Fields */
.t7-input {
  height: 52px;
  border-radius: 6px;
  border: 1px solid #d9e1ec;
  padding: 10px 15px;
  font-size: 15px;
  color: #003366;
}

.t7-input::placeholder {
  color: #003366;
  font-weight: 500;
}

/* Focus Effect */
.t7-input:focus {
  border-color: #ffb400;
  box-shadow: none;
}

/* Button Area */
.leadbtn {
  margin-top: 20px;
}

/* Submit Button */
.t7-submit-btn {
  background: #ffb400;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 6px;
  border: none;
  transition: 0.3s;
}

.t7-submit-btn:hover {
  background: #e36f10;
  color: #fff;
}

/* Right Trust Box */
.trustbox {
  padding-left: 40px;
}

.t7-trust-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    padding-left: 40px;
}
/* Each Trust Item */
.t7-trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #003366;
}

/* Icon Circle */
.t7-trust-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t7-trust-icon svg{
    width:20px !important;
}

button.btn.t7-btn-orange.t7-submit-btn {
    border: 2px solid #ffb400;
    background-color: #ffb400;
    border-radius: 30px;
    color: white;
    font-weight: 700;
}
button.btn.t7-btn-orange.t7-submit-btn:hover {
    background: none;
    color: #ffb400;
    border: 2px solid #ffb400;
}
.trustbox {
    padding-bottom: 50px;
}
input.form-control.t7-input {
    color: #003366;
    font-weight: 500;
}
.t7-input {
    color: #003366;
    font-weight: 500;
}
.t7-input::placeholder {
    color: #003366 !important;
    font-weight: 500;
}
.form-select::placeholder{
    color: #003366 !important;
    font-weight: 500;
}
select.form-select.t7-input {
    color: #003366;
    font-weight: 500;
}
.floating-btns {
    position: fixed;
    right: 20px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    z-index: 999;
    gap: 15px;
}
/* Scroll Top Button */
.top-btn {
  background: #ffb400;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

/* WhatsApp Button */
.wa-btn {
  background: #00ff5e;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  font-size: 24px;
  text-decoration: none;
}
.loremtext {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    line-height: 1.3;
    font-size: 13px;
}
.call-btn{
    background: #0079ff;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}
.call-btn svg{
    padding-right: 4px;
    padding-bottom: 2px;
}
.call-btn:hover{
    background: #fff;
    color: #0079ff;
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #0079ff;
}
.headcall{
    background: #0079ff !important;
    color: #fff !important;
    border: 2px solid #0079ff !important;
}
.headcall:hover{
    background: #fff !important;
    color: #0079ff !important;
    border: 2px solid #0079ff !important;
}
.wpbtn {
     background: #00ff5e !important;
    color: #fff !important;
    border: 2px solid #00ff5e !important;
}
.wpbtn:hover{
    background: #fff !important;
    color: #00ff5e !important;
    border: 2px solid #00ff5e !important;
}



.signage-section{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}


/* Card */
.signage-card{
background:#fff;
border-radius:12px;
text-align:center;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s ease;
padding-bottom:25px;
}


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


.signage-card img{
width:100%;
height:220px;
object-fit:cover;
}


.signage-card h3{
margin:18px 0 10px;
font-size:20px;
color:#222;
}


.signage-card p{
font-size:14px;
color:#555;
padding:0 15px;
line-height:1.5;
}


/* Button */
.btn{
display:inline-block;
margin-top:15px;
padding:10px 25px;
border:2px solid #FF6600;
color:#FF6600;
text-decoration:none;
border-radius:30px;
font-size:14px;
transition:0.3s;
}


.btn:hover{
background:#FF6600;
color:#fff;
}


.faq-section {
  background: #f4f4f4;
  padding: 60px 15px;
}

.faq-box {
  max-width: 100%;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
}

.faq-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 35px;
  position: relative;
  font-size: 26px;
}

.faq-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ffb400;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
}

.accordion-button {
  background: #fff;
  font-weight: 500;
  padding: 18px 0;
  font-size: 16px;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
}

.accordion-button::after {
  display: none;
}

.arrow-icon {
  margin-left: auto;
  transition: 0.3s ease;
}

.accordion-button:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
}

.accordion-body {
  font-style: italic;
  color: #666;
  padding: 0 0 20px 0;
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
}
p.details_text {
    line-height: 1.3;
    font-style: italic;
}


.info-bar {
  background: #f1f1f1;
  padding: 40px 20px;
  margin-bottom: 50px;
}

.info-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 220px;
}

.info-icon {
  width: 40px;
}

.info-title {
  font-size: 18px;
  font-weight: 500;
  color: #1c1c1c;
}

.info-sub {
  font-size: 15px;
  color: #333;
}

.info-small {
  font-size: 14px;
  color: #555;
}

.bold {
  font-weight: 600;
}

.info-cta {
  justify-content: space-between;
  border-left: 1px solid #ddd;
  padding-left: 40px;
}

.info-btn {
  background: #ffb400;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
}

.info-btn:hover {
    background: transparent;
     border: 2px solid #ffb400;
  color: #ffb400;
}


@media (max-width: 992px) {
  .info-container {
    gap: 30px;
  }

  .info-cta {
    border-left: none;
    padding-left: 0;
  }
}


@media (max-width: 576px) {
  .info-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-item {
    width: 100%;
  }

  .info-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}












/* ================= RESPONSIVE ================= */




@media (max-width: 576px) {

    .t7-hero {
        min-height: 40vh;
        padding: 40px 0;
    }

    .t7-hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .t7-hero-sub {
        font-size: 1rem;
    }

      .dp-signage-section {
        padding: 10px 0;
    }

    .dp-signage-img {
        height: 180px;
    }

    .dp-signage-card h4 {
       font-size: 14px;
        margin: 7px;
    }
    .dp-view-btn {
    padding: 4px 18px;
}

  .t7-projects-section {
    padding: 15px 15px;
  }

  .t7-section-header h2 {
    font-size: 22px;
  }

  .t7-projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .t7-project-card img {
    height: 220px;
  }
  .dp-signage-card {
    padding-bottom: 16px;
  }

}


/* =========================
   Mobile Layout Only
========================= */

@media (max-width: 768px) {

  .fixbar {
    flex-wrap: wrap;
    padding: 6px 12px;
            height: auto;
  }

  /* Top Row */
  .fixbar-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
  }

  .fixbar-center {
    width: 50%;
    text-align: right;
  }

  .fixbar-btn {
    padding: 7px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

  /* Bottom Row */
  .fixbar-right {
    width: 100%;
    margin-top: 6px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    line-height: 1;
  }

  .fixbar-right span {
    margin-right: 5px;
  }
  .fixbar-left span {
    line-height: 1;
}
.fixbar-right a {
    color: #000;
    font-size: 16px;
    transition: 0.3s;
}
/* Header Row */
  #main-header .header-row {
    flex-wrap: nowrap;
  }

  /* Logo Left */
  #main-header .logo {
    width: 50%;
    text-align: left;
  }

  #main-header .logo img {
    max-width: 140px;
  }

  /* Right Side Buttons */
  #main-header .col-md-6:last-child {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }

  /* Button Wrapper */
  #main-header .d-md-flex {
    display: flex !important;
    gap: 6px !important;
  }

  /* Buttons Size */
  .headbtn {
    padding: 2px 5px;
        font-size: 12px;
    white-space: nowrap;
    gap: 3px;
  }

  .headbtn svg {
    width: 14px;
    height: 14px;
  }
   .t7-lead-box {
    padding: 30px 20px;
  }

  .leadhead {
    font-size: 24px;
  }

  .trustbox {
    padding-left: 0;
    margin-top: 40px;
  }

  .t7-trust-box {
    align-items: start;
        margin-top: 20px;
  }

  .t7-trust-item {
    justify-content: center;
  }

  button.btn.t7-btn-orange.t7-submit-btn {
    width: 79%;
}
.t7-explore-section {
    padding: 24px 15px;
     margin-bottom: 67px;
}
.t7-explore-section p {
    font-size: 13px;;
    margin: 0 auto 19px;
    line-height: 1.3;
}
.t7-explore-section h2 {
    font-size: 21px;
    margin-bottom: 15px;
}
.t7-explore-btn {
    padding: 12px 36px;
    font-size: 14px;
}
.t7-footer {
    background: #2f3640;
    color: #ccc;
    padding: 14px 0 0;
    font-size: 14px;
}
.t7-footer-bottom {
    background: #0202023d;
    margin-top: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


    .t7-hero {
        min-height: 20vh;
    }

    .t7-hero-title {
        font-size: 2.3rem;
    }
      .dp-signage-img {
        height: 200px;
    }

    .dp-section-title h2 {
        font-size: 18px;
    }
     .t7-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .arrow-icon {
   width: 30px;
}
}


