@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');


/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ======Bootstrap Icons===== */
@font-face {
  font-family: "bootstrap-icons";
  src: url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
    url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: "figtree", sans-serif;
  font-size: 16px;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: #1A191D;
  text-decoration: underline;
}

/* Topbar - with borders to match design */
.topbar {
  background: #0a223a;
  /* deep blue like your screenshot */
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
  position: relative;
  z-index: 9;
}

/* container layout */
.topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0px;
  flex-wrap: nowrap;
}

/* Left group (email / phone) */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
  /* we use padding on the links for spacing */
}

/* individual link on left */
.topbar-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 6px 18px;
  font-size: 14px;
  line-height: 1;
  border-right: 1px solid #F68A1E;
  /* orange vertical separator */
}

/* remove separator from last left link */
.topbar-left .topbar-link:last-child {
  border-right: none;
  padding-right: 6px;
}

/* icons and text */
.topbar-link i {
  color: #F68A1E;
  /* orange icon color */
  font-size: 14px;
  margin-right: 8px;
}

/* Right group (follow + social) */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* follow text */
.topbar-right .follow-text {
  margin-right: 6px;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
}

/* social anchors: add thin white separators between them */
.topbar-social {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  /* subtle white divider */
  transition: color .18s ease, background .18s ease;
}

/* remove left border from first social item so it sits nicely after "Follow on" */
.topbar-right .topbar-social:first-of-type {
  border-left: none;
  padding-left: 4px;
}

/* hover color for social icons */
.topbar-social:hover {
  color: #F68A1E;
}

/* social icon size */
.topbar-right i,
.topbar-left i {
  font-size: 14px;
}

/* small tweak: make contact text a bit bolder */
.topbar-text {
  font-weight: 500;
  color: #fff;
}

/* ===== Responsive: stack on small screens and remove vertical borders ===== */
@media (max-width: 768px) {
  .topbar .topbar-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .topbar-left {
    justify-content: center;
    width: 100%;
  }

  .topbar-right {
    justify-content: center;
    width: 100%;
  }

  /* remove left/right separators on mobile for cleaner stacked look */
  .topbar-link {
    border-right: none;
    padding: 6px 10px;
  }

  .topbar-social {
    border-left: none;
    padding: 6px 8px;
  }

  /* small font adjustments */
  .topbar {
    padding: 8px 0;
    font-size: 13px;
  }

  .topbar-link i,
  .topbar-right i {
    font-size: 13px;
  }
}

/* optional: hide scrollbar on mobile when social group overflows horizontally */
.topbar-right {
  overflow: visible;
}

/* Navbar */
.navbar {
  padding: 0px 0;
  transition: background-color 0.3s ease;
  z-index: 9;
}

.navbar.sticky-top {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 70px;
}

/* Center navbar items in web view */
@media (min-width: 992px) {
  .navbar-nav {
    flex-grow: 0 !important;
  }
}

/* Nav link and underline */
.navbar-nav .nav-link {
  color: #0a223a;
  margin-right: 30px;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.navbar-nav .link-text {
  position: relative;
  display: inline-block;
}

.navbar-nav .link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: #F68A1E;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover .link-text::after,
.navbar-nav .nav-link:focus .link-text::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #F68A1E;
}

/* Hide default dropdown arrow */
.navbar-nav .dropdown-toggle::after {
  display: none;
}

/* Style for custom dropdown icon */
.dropdown-icon {
  height: 6px;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  margin-top: 4px;
}

/* Rotate icon when dropdown is open (optional) */
.navbar-nav .dropdown.show .dropdown-icon {
  transform: rotate(180deg);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background-color: #1f1f23;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  transition: all 0.3s ease;
  margin-top: 0;
  z-index: 1000;
}

/* Underline effect for dropdown items */
.dropdown-item {
  position: relative;
  font-size: 15px;
  padding: 10px 20px 8px 20px;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.dropdown-item::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 6px;
  height: 2px;
  width: 0;
  background-color: #F68A1E;
  transition: width 0.3s ease;
}

.dropdown-item:hover::after,
.dropdown-item:focus::after {
  width: calc(100% - 50%);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #fff;
  color: #F68A1E;
  width: fit-content;
}

/* Dropdown on hover - Desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    background: #fff;
  }

  .navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
  }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .topbar {
    display: none;
  }

  .navbar {
    background: #ffffff;
    padding: 10px 0;
    transition: background-color 0.3s ease;
  }

  .dropdown-menu {
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
  }

  .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item::after {
    left: 15px;
    width: 0;
  }

  .dropdown-item:hover::after {
    width: calc(100% - 30px);
  }

  .dropdown-icon {
    height: 6px;
  }

  .navbar-nav .nav-link {
    color: #000;
    margin-right: 30px;
    margin-left: 15px;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    justify-content: space-between;
  }

  .navbar-nav {
    margin: 0 !important;
  }
}

/* Contact Button */
.contact-btn {
  background: #F68A1E;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 35px;
  font-weight: 500;
}

.contact-btn:hover {
  background: #0a223a;
  color: #fff;
}





/* ===========================
HOME PAGE SERVICES 
==================================*/
.services-section {
  background: #F6F3EC;
  border-radius: 46px 46px 0 0;
  padding: 60px 0 32px 0;
  margin: 0;
  top: -40px;
  position: relative;
}

.service-page {
  background: #F6F3EC;
  /* border-radius: 46px 46px 0 0; */
  padding: 60px 0 32px 0;
  margin: 0;
  /* top: -150px; */
  position: relative;
}


.services-badge {
  font-size: 14px;
  font-weight: 500;
  color: #F68A1E;
  border-radius: 9999px;
  padding: 6px 18px;
  border: 1px solid #F68A1E;
  text-align: center;
  width: fit-content;
  margin: 0 auto 22px;
  letter-spacing: 0.06em;
}

.services-title {
  font-size: 42px;
  font-weight: 600;
  color: #222222;
  line-height: 1.13;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 45px;
}

.service-card {
  background: #fff;
  border-radius: 24px 24px 0 0;
  border: none;
  box-shadow: 0 4px 24px rgba(36, 20, 66, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 100%;
  height: 308px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #F68A1E;
  color: #fff;
  box-shadow: 0 8px 32px rgba(36, 20, 66, 0.16);
}

.service-card .card-title {
  font-size: 20px;
  font-weight: 500;
  padding: 24px 28px 12px 28px;
  color: #222;
}

.service-card:hover .card-title {
  color: #fff;
}

.card-body {
  padding: 0 !important;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Arrow Button */
.service-arrow {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(36, 20, 66, 0.03);
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-arrow img.arrow-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: relative;
  bottom: 8px;
  transition: filter 0.3s ease;
}

/* Hover effect → icon turns white */
.service-card:hover .service-arrow {
  background: #F68A1E;
  border-color: #ffffff;
}

.service-card:hover .service-arrow img.arrow-icon {
  filter: brightness(0) invert(1);
}

/* Card images */
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border-radius: 0;
  align-self: flex-end;
  margin: 0;
}

@media (max-width: 992px) {
  .services-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .service-arrow {
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
  }

  .service-card img {
height: 229px;
        object-fit: contain;
        width: 330px;  }

}

@media (max-width: 768px) {
  .services-section {
    padding: 36px 0 20px 0;
    border-radius: 22px 22px 0 0;
    top: 0px;
  }

  .services-title {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .services-badge {
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  .service-card img {
height: 229px;
        object-fit: contain;
        width: 330px;  }

  .service-arrow {
    top: 12px;
    right: 16px;
    width: 28px;
    height: 28px;
  }

  .service-arrow img.arrow-icon {
    width: 16px;
    height: 16px;
    border-bottom: 5px;
  }
}



/*================================
  Our Projects
  ==================================*/
/* ================== Recent Projects CSS ================== */
.recent-projects-section {
  background: #fff;
  position: relative;
  z-index: 4;
  /* top: -45px; */
  /* padding-bottom: 40px; */
}

/* Header badge / button */
.recent-badge {
  font-size: 14px;
  color: #f07f2f;
  background: #fff;
  border: 1px solid #f07f2f;
  border-radius: 18px;
  padding: 8px 28px;
  font-weight: 500;
  letter-spacing: 0.07em;
  display: inline-block;
  box-shadow: 0px 1px 8px rgba(36, 20, 66, 0.03);
}

.view-all-btn {
  background: #0B2545;
  color: #fff;
  font-size: 15px;
  border-radius: 1px;
  padding: 13px 22px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  margin-right: 4px;
  transition: background 0.2s ease;
}

.view-all-btn:hover {
  background: #f28a3c;

}

/* Tablet screens */
@media (max-width: 991px) {
  .view-all-btn {
    font-size: 14px;
    padding: 11px 18px;
  }
}

/* Mobile screens */
@media (max-width: 767px) {
  .view-all-btn {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .view-all-btn {
    justify-content: center;
    font-size: 13px;
    padding: 10px;
    margin-right: 0;
  }
}


/* Title */
.recent-title {
  font-size: 42px;
  font-weight: 600;
  color: #222222;
  margin-top: 14px;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* ---------- TABS: responsive improvements ---------- */
/* wrapper enables horizontal scroll on small screens */
.recent-tabs-wrap {
  width: 100%;
  margin-bottom: 12px;
  overflow: visible;
}

/* make the tabs a horizontally-scrollable row on small screens,
   and a regular flex row on larger screens */
.recent-tabs {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-bottom: 6px;
  margin-bottom: 20px;
  /* keeps spacing consistent */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  /* prevents wrapping of individual tab buttons */
  border-bottom: 0;
  /* remove default underline */
}

/* hide scrollbar (nice-to-have) */
.recent-tabs::-webkit-scrollbar {
  display: none;
}

.recent-tabs {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ensure nav-items don't stretch */
.recent-tabs .nav-item {
  flex: 0 0 auto;
}

/* tab button base styles */
.tab-btn {
  font-size: 20px;
  padding: 16px 28px;
  border-radius: 12px !important;
  font-weight: 400;
  cursor: pointer;
  min-width: 180px;
  /* reasonable default on desktop */
  text-align: center;
  display: inline-block;
  line-height: 1.1;
}

/* nav-link border / background */
.nav-tabs .nav-link {
  color: #222222;
  border: 1.8px solid #f2f2f2;
  margin-bottom: 3px;
  transition: all 0.15s ease;
  background: #fff;
  white-space: normal;
  /* allow wrapped text inside a tab on larger screens if needed */
}

/* active tab styling */
.nav-tabs .nav-link.active {
  background: #f07f2f;
  color: #fff;
  border-color: #f07f2f #f07f2f #fff;
}

/* ---------- Project cards ---------- */
.project-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(36, 20, 66, 0.07);
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
  height: auto;
  transition: box-shadow 0.2s;
}

.project-card:hover {
  box-shadow: 0 8px 38px rgba(36, 20, 66, 0.18);
}

.project-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

/* Overlay with hidden by default text */
.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(22, 24, 30, 0.16) 32%, rgba(22, 24, 30, 0.64) 88%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}

/* Show overlay on hover or focus */
.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
  opacity: 1;
  pointer-events: auto;
}

.project-info {
  padding: 30px 30px 18px 30px;
  z-index: 3;
  width: 100%;
}

.project-title {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  letter-spacing: -0.01em;
}

.project-desc {
  font-size: 16px;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 0;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
}

/* ================= Responsive tweaks ================= */
@media (max-width: 1200px) {
  .project-card {
    height: 260px;
  }

  .tab-btn {
    font-size: 18px;
    padding: 12px 20px;
    min-width: 150px;
  }

  .recent-title {
    font-size: 2rem;
  }

  .project-info {
    padding: 20px 14px 13px 14px;
  }
}

@media (max-width: 992px) {
  .recent-title {
    font-size: 1.36rem;
    margin-bottom: 24px;
  }

  .project-card {
    height: auto;
    margin-bottom: 10px;
  }

  .tab-btn {
    font-size: 16px;
    padding: 10px 16px;
    min-width: 130px;
  }

  .project-info {
    padding: 14px 8px 9px 9px;
  }
}

@media (max-width: 768px) {
  .recent-projects-section {
    padding: 32px 0 18px 0;
    top: 0px;
  }

  .recent-title {
    font-size: 1.06rem;
    margin-bottom: 16px;
  }

  .tab-btn {
    font-size: 13px;
    padding: 8px 12px;
    min-width: 100px;
  }

  .project-card {
    height: auto;
    margin-bottom: 10px;
  }

  .project-info {
    padding: 8px 4px 8px 8px;
  }

  /* prevent wrapping and enable horizontal scroll for tabs on mobile */
  .recent-tabs {
    gap: 10px;
    white-space: nowrap;
  }

  .nav-tabs .nav-link {
    white-space: nowrap;
  }
}


/*===================================
  HOME PAGE  ABOUT  US
=======================================  */
.about-construction-section {
  background: #fff;
  padding: 40px 0 60px 0;
  position: relative;
  z-index: 2;
}

.about-badge {
  font-size: 14px;
  color: #f07f2f;
  border: 1px solid #fcd8d1;
  border-radius: 16px;
  padding: 8px 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  background: #fff;
  display: inline-block;
}

.about-title {
  font-size: 2.7rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.about-lead {
  font-size: 18px;
  color: #767676;
  margin-bottom: 0;
}

.about-sub {
  font-size: 16px;
  color: #767676;
  margin-bottom: 0;
}

.about-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 2px;
}

.about-item-desc {
  font-size: 15px;
  color: #767676;
  line-height: 1.43;
  margin-left: 48px;
  margin-bottom: 0;
}

.about-btn {
  background: #05294D;
  color: #fff;
  font-size: 17px;
  border-radius: 2px;
  padding: 16px 30px;
  font-weight: 500;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: none;
  border: none;
  transition: background 0.18s;
  white-space: nowrap;
  /* prevent text from breaking */
}

.about-btn:hover {
  background: #f28a3c;
  color: #fff;
}

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
  .about-btn {
    font-size: 16px;
    padding: 14px 26px;
    gap: 5px;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  .about-btn {
    font-size: 15px;
    padding: 12px 22px;
    gap: 4px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .about-btn {
    font-size: 14px;
    padding: 10px 18px;
    margin-top: 10px;
    /* width: 100%;           full width for small screens */
    justify-content: center;
  }
}

.about-full-img {
  max-width: 100%;
  height: auto;
  /* border-radius: 14px;
    box-shadow: 0 4px 30px rgba(36,20,66,0.12); */
}

@media (max-width: 1200px) {
  .about-title {
    font-size: 2.4rem;
  }

  .about-full-img {
    max-width: 430px;
    max-height: 400px;
  }
}

@media (max-width: 992px) {
  .about-title {
    font-size: 1.48rem;
  }

  .about-full-img {
    max-width: 320px;
    max-height: 260px;
  }
}

@media (max-width: 768px) {
  .about-construction-section {
    padding: 36px 4vw 16px 4vw;
    top: 0px;
  }

  .about-full-img {
    max-width: 100%;
    max-height: 220px;

  }

  .about-item-title {
    font-size: 17px;
  }
}

/*===============================
  CTA SECTION
==================================*/
.cta-message {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  line-height: 1.18;
}

.cta-btn {
  background: #05294D;
  color: #fff;
  font-size: 16px;
  border-radius: 1px;
  padding: 16px 38px 16px 28px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  transition: background 0.16s;
  box-shadow: none;
}

.cta-btn:hover {
  background: #1b426e;
}

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .cta-message {
    font-size: 26px;
    /* slightly smaller */
  }

  .cta-btn {
    font-size: 17px;
    padding: 14px 28px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .cta-message {
    font-size: 22px;
    text-align: center;
    margin-bottom: 12px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 12px 0;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .cta-message {
    font-size: 20px;
    line-height: 1.3;
  }

  .cta-btn {
    font-size: 15px;
    padding: 10px 0;
  }
}

/*==========================
  Why Wall Bee 
  =============================*/
.why-wallbee-section {
  background: url('../img/why-bg.png');
  margin: 50px 0px;
  background-size: cover;
}

.custom-badge {
  display: inline-block;
  /* background-color: rgba(238, 44, 60, 0.08); */
  color: #F68A1E;
  border: 1px solid #F68A1E;
  font-weight: 500;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 14px;
}

.section-title {
  color: #222222;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 48px;
  font-size: 42px;
}

.icon-no-bg {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.feature-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.feature-title {
  font-weight: 600;
  color: #222222;
  font-size: 21px;
  margin-bottom: 4px;
}

.feature-desc {
  font-weight: 400;
  color: #595959;
  font-size: 14px;
  margin: 0;
}

.center-image {
  /* max-height: 330px; */
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}




/* ==============================
Blog Section
==================================*/
.blogs-section {
  padding: 40px 0;
}

.blogs-section .section-label {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid #f97316;
  color: #f97316;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.blogs-section h2 {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
  color: #111827;
}

.blogs-section .view-more-btn {
  background: #0d2240;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  padding: 8px 16px;
  text-decoration: none;
  /* display: inline-flex;
  align-items: center; */
  height: fit-content;
}

.blogs-section .view-more-btn:hover {
  background: #0b1c36;
}

/* Main Blog */
.blog-main img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 10px;
}

.blog-main .category {
  font-size: 15px;
  color: #555;
  margin-bottom: 6px;
}

.blog-main h4 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-main p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Side Blogs */
.side-blog {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  gap: 16px;
}

.side-blog .img-wrapper {
  position: relative;
  flex-shrink: 0;
}

.side-blog img {
  width: 260px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.side-blog .date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0d2240;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border-radius: 6px;
  padding: 15px;
  line-height: 1.2;
  text-align: center;
}

.side-blog .date-badge span {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.side-blog .text {
  flex: 1;
}

.side-blog .category {
  font-size: 15px;
  color: #222222;
  margin-bottom: 5px;
  border-bottom: 1px solid #555;
}

.side-blog h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  margin-top: 10px;
  color: #111827;
}

/* Responsive */
@media (max-width: 768px) {
  .side-blog {
    flex-direction: row;
    align-items: flex-start;
  }

  .side-blog img {
    width: 100px;
    height: 80px;
  }

  /* Tablet screens */
  @media (max-width: 991px) {
    .blogs-section h2 {
      font-size: 28px;
    }

    .side-blog h6 {
      font-weight: 600;
      font-size: 16px;
      line-height: 1.4;
      margin-top: 10px;
      color: #111827;
    }

    .side-blog .date-badge {
      font-size: 10px;
      padding: 5px;
    }

    .blog-main h4 {
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 10px;
      line-height: 1.4;
    }
  }
}


/* ==============================
Contact Us Section
================================*/

.contact-section {
  padding: 60px 0;
  background-color: #f9f7f2;
}

.contact-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-box p {
  color: #666;
  margin-bottom: 30px;
}

.form-control {
  border-radius: 8px;
  padding: 12px;
  background: #F7F9FA;
}

.form-control:focus {
  border-color: #004080;
  box-shadow: none;
}

.send-btn {
  background-color: #0d2240;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  padding: 10px 20px;
}

.send-btn:hover {
  background-color: #f28a3c;
  color: #fff;
}





.contact-info h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-item img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.info-text h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.info-text p {
  margin: 0;
  color: #444;
}


/*================================
    Company Stats Section
    ==================================*/
.company-stats-section {
  background: #fff;
}

.company-stats-section-page {
  /* top: -85px; */
  background: #fff;
  position: relative;
}

.stats-count {
  font-size: 62px;
  font-weight: 700;
  color: #B4AFAF;
  letter-spacing: 2px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.stats-count .plus {
  font-size: 62px;
  font-weight: 700;
  margin-left: 2px;
}

.stats-label {
  color: #919191;
  font-size: 1rem;
}

.stat-border {
  border-right: 1px solid #ededed;
}

.stat-border:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat-border {
    border-right: none;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .stat-border:last-child {
    border-bottom: none;
  }

  .company-stats-section .col-6 {
    margin-bottom: 15px;
  }
}


/* Slider Btn */
.sld-btn {
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
}

.inner-layer span {
  color: #F68A1E;
}

.text-danger p {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}





/* =================================
BreadCrumb
====================================*/
.page-header {
  position: relative;
  width: 100%;
  height: 390px;
  /* Default desktop height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  /* top: -150px; */
}

.page-header .content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 30px;
}

.breadcrumb {
  justify-content: center;
  margin-bottom: 0;
  flex-wrap: wrap;
  /* Allows items to wrap on smaller screens */
}

.breadcrumb a {
  color: orange;
  text-decoration: none;
}

.breadcrumb .active {
  color: #fff;
}

/* =============================
   Responsive
============================= */

/* Tablets */
@media (max-width: 992px) {
  .page-header {
    height: 300px;
    top: -100px;
  }

  .page-header h1 {
    font-size: 2rem;
    margin-top: 20px;
  }

  .breadcrumb {
    font-size: 0.95rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .page-header {
    height: 250px;
    top: 0px;
    padding: 0 15px;
    /* Add some padding */
  }

  .page-header h1 {
    font-size: 1.6rem;
    margin-top: 15px;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .page-header {
    height: 200px;
    top: 0px;
    padding: 0 10px;
  }

  .page-header h1 {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }
}

/* ===========================
   Team Section Styling
   =========================== */
.team-section {
  background: #fff;
  padding: 20px 0;
  position: relative;
}

.team-section .section-label {
  border: 1px solid #ff9800;
  color: #ff9800;
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.team-section h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 25px;
  color: #222;
  letter-spacing: 0.5px;
}

/* Team Card */
.team-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e1e1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin: 0 8px 24px 8px;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.11);
}

.team-img {
  background: #fff;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-img img {
  max-width: 100%;
  max-height: 250px;
  border-radius: 10px;
  object-fit: cover;
}

/* Info Block */
.team-info {
  text-align: center;
  padding: 15px 10px;
  color: #fff;
}

.team-info .team-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.4px;
}

.team-info .team-role {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.team-info .team-qual,
.team-info .team-exp {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 4px;
}

/* Alternating Color Schemes */
.bg-orange {
  background: linear-gradient(135deg, #ff9800, #ffb84d);
}

.bg-navy {
  background: linear-gradient(135deg, #082c54, #104a88);
}

/* Custom Navigation Buttons */
.custom-nav {
  position: absolute;
  top: 60px;
  right: 80px;
  display: flex;
  gap: 10px;
}

.custom-nav button {
  background: #082c54;
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  outline: none;
  box-shadow: 0 3px 7px 0 rgba(126, 142, 177, .11);
}

.custom-nav button:hover,
.custom-nav button:focus {
  background: #ff9800;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .team-card {
    min-width: 270px;
  }

  .team-img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 40px 0;
  }

  .team-card {
    margin: 0 0 24px 0;
  }

  .custom-nav {
    top: 10px;
    right: 15px;
  }

  .team-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 25px 0;
  }

  .custom-nav {
    top: 5px;
    right: 5px;
  }

  .section-label,
  .team-section h2 {
    margin-bottom: 4px;
  }
}

/* ============================
Construction Page
==============================*/
.construction-section {
  /* font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif; */
}

.construction-section .section-label {
  font-size: 15px;
  font-weight: 600;
  color: #ff9800;
  background: none;
  border-radius: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: inline-block;
}

.construction-title {
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: #222;
  margin: 6px 0 22px 0;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.construction-subtitle {
  font-size: 1.09rem;
  font-weight: 600;
  color: #232323;
  margin-bottom: 16px;
  font-family: inherit;
}

.construction-desc {
  color: #4d4e52;
  font-size: 1.05rem;
  line-height: 1.68;
  margin-bottom: 14px;
  font-weight: 400;
  font-family: inherit;
}

/* Responsive tweaks for better mobile appearance */
@media (max-width: 991.98px) {
  .construction-title {
    font-size: 1.7rem;
  }

  .construction-subtitle {
    font-size: 1rem;
  }

  .construction-desc {
    font-size: 0.97rem;
  }
}

@media (max-width: 576px) {
  .construction-title {
    font-size: 1.25rem;
  }

  .construction-section .section-label {
    font-size: 13px;
  }
}




/* ================================
Contact Us
==================================== */
/* Section Wrapper */
.help-section {
  padding: 40px 0;
  background: #fff;
  top: 0px;
  position: relative;
}

/* Heading */
.help-section h2 {
  font-size: 41px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2A353C;
}

.help-section h2 span {
  display: block;
}

/* Paragraph */
.help-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

/* Map iframe */
.map-iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .help-section {
    text-align: center;
    padding: 40px 15px;
  }

  .help-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .help-section p {
    font-size: 14px;
  }

  .map-iframe {
    height: 300px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .help-section h2 {
    font-size: 24px;
  }

  .map-iframe {
    height: 250px;
  }
}

.company-section {
  padding: 0px 0;
}

.company-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}

.company-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

.company-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.company-text h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.company-text p {
  margin: 0;
  font-size: 20px;
  color: #5E5C55;
}

.company-divider {
  border-left: 1px solid #ddd;
  height: 60px;
  margin: auto 30px;
}

/* Responsive */
@media (max-width: 767px) {
  .company-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-divider {
    display: none;
  }
}

.contact-wrapper {
  padding: 50px 0;
}

.contact-card {
  background: #F6F3EC;
  /* light beige */
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}

.contact-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.contact-subheading {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: none;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
  margin-bottom: 15px;
  width: 100%;
}

.contact-form textarea {
  resize: none;
  height: 135px;
}

.contact-button {
  background: #0a1a36;
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  transition: 0.3s ease;
}

.contact-button:hover {
  background: #0f274d;
}

.contact-image img {
  width: 548px;
  height: 560px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contact-image img {
    max-width: 400px;
    /* Smaller max-width for tablets */
  }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
  .contact-image img {
    max-width: 100%;
    /* Full width for small screens */
  }
}



/* ======================
Footer
==============================*/

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #0B2545;
  color: #e5ecf3;
  padding: 48px 40px 32px 60px;
  font-size: 15px;
  min-height: 240px;
  gap: 0;
}

.footer-col {
  width: 22%;
  min-width: 176px;
  box-sizing: border-box;
}

.footer-col.brand {
  width: 30%;
  min-width: 230px;
}

.footer .logo {
  height: 85px;
  margin-bottom: 16px;
}

.footer .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #e5ecf3;
  margin: 0;
}

.footer-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 17px;
}

.footer-col:not(.brand) ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col:not(.brand) ul li {
  margin-bottom: 9px;
}

.footer-col:not(.brand) a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s;
}

.footer-col:not(.brand) a:hover {
  color: #ff9900;
}

/* Newsletter */
.newsletter-form {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin-bottom: 18px;
}

.newsletter-form input {
  width: 100%;
  height: 45px;
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 0 50px 0 18px;
  font-size: 14px;
  background: #fff;
  color: #333;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #0B2545;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #ff9900;
}

/* Follow us */
.follow-label {
  margin-top: 7px;
  margin-bottom: 6px;
  font-size: 15px;
  color: #d1dbeb;
  letter-spacing: 0.04em;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.socials a {
  color: #d1dbeb;
  font-size: 19px;
  transition: color 0.16s;
}

.socials a:hover {
  color: #ff9900;
}

/* Footer Bottom */
.footer-bottom {
  background: #0B2545;
  border-top: 1px solid #273A5B;
  color: #a3b3cc;
  font-size: 13.3px;
  padding: 13px 30px;
}

.footer-bottom .brand-copy {
  color: #fff;
  font-weight: 600;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ff9900;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer {
    flex-wrap: wrap;
    padding: 32px 14px;
    gap: 19px;
  }

  .footer-col,
  .footer-col.brand {
    width: 45%;
    min-width: 180px;
    margin-bottom: 25px;
  }

  .footer-col.newsletter {
    width: 100%;
  }
}

@media (max-width: 630px) {
  .footer {
    flex-direction: column;
    padding: 20px 7px;
  }

  .footer-col,
  .footer-col.brand {
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .row {
    flex-direction: column;
    gap: 6px;
  }
}




/* ================================
Services List
===================================*/



.construction-section,
.highlights-section {
  position: relative;
  /* top: -130px */
}

.construction-section {
  background: #fff;
  padding: 56px 0 32px 0;
  letter-spacing: 0.01em;
}

.construction-section .section-label {
  display: inline-block;
  color: #ff9800;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  margin-top: 2px;
  background: none;
}

.construction-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #222;
  margin: 6px 0 22px 0;
  letter-spacing: 0.01em;
}

.construction-subtitle {
  font-size: 1.09rem;
  font-weight: 600;
  color: #232323;
  margin-bottom: 16px;
}

.construction-desc {
  color: #4d4e52;
  font-size: 1.05rem;
  line-height: 1.68;
  margin-bottom: 14px;
  font-weight: 400;
  max-width: 92%;
}

.construction-desc:last-child {
  margin-bottom: 0;
}

.construction-section .image-wrapper {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 5px 28px 1px rgba(28, 28, 30, 0.11);
  min-height: 260px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-section .image-wrapper img {
  display: block;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.highlights-section {
  background: #fff;
  padding: 60px 0;
}

.highlights-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
}

.highlight-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  padding: 30px 16px 22px 16px;
  text-align: center;
  min-height: 180px;
  transition: box-shadow 0.2s;
}

.highlight-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
}

.highlight-icon {
  margin-bottom: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-section .icon-bg {
  background: #f4f3f3;
  border-radius: 50%;
  padding: 11px 18px;
  display: inline-block;
}

.icon-bg i {
  font-size: 40px;
  color: #ef7f23;
}

.highlight-heading {
  font-size: 1.09rem;
  font-weight: 600;
  color: #252525;
  margin-bottom: 7px;
}

.highlight-desc {
  font-size: 0.98rem;
  color: #565656;
}

@media (max-width: 991.98px) {

  .construction-section,
  .highlights-section {
    /* font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif; */
    position: relative;
    top: 0px
  }

  .construction-section h2 {
    font-size: 1.7rem;
  }

  .construction-subtitle {
    font-size: 1rem;
  }

  .construction-desc {
    font-size: 0.97rem;
  }

  .highlights-title {
    font-size: 1.32rem;
  }

  .highlight-card {
    padding: 20px 8px;
  }

  .icon-bg i {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .construction-section h2 {
    font-size: 1.25rem;
  }

  .construction-section .section-label {
    font-size: 13px;
  }

  .construction-subtitle {
    font-size: 0.9rem;
  }

  .construction-desc {
    font-size: 0.9rem;
  }

  .construction-section .image-wrapper {
    min-height: 170px;
  }

  .highlights-title {
    font-size: 1.13rem;
  }

  .highlight-card {
    min-height: 140px;
  }

  .icon-bg i {
    font-size: 26px;
  }
}






/* ===============================
Blogs
================================== */

.blog-card {
  background: #fff;
  transition: all 0.3s ease;
  /* top: -150px; */
}

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

.date-badges {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #0d2d62;
  color: #fff;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 6px;
}

.blog-card a {
  color: #F68A1E !important;
}

.blog-card a:hover {
  text-decoration: underline;
  color: #d87312 !important;
  /* slightly darker on hover */
}

/* New styles added for uniform image sizes */
.blog-img-container {
  position: relative;
  width: 100%;
  height: 280px;
  /* Set fixed height */
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cover inside container, cropping if needed */
  display: block;
}

/* ======================================
CONSTRUCTION PACKAGES SECTION
========================================== */
.slant-card {
  position: relative;
  background: #fff;
  border-radius: 0 28px 28px 0;
  box-shadow: 0 8px 28px rgba(82, 98, 222, 0.14), 0 1.5px 4px rgba(246, 138, 30, 0.07);
  padding: 48px 28px 28px 28px;
  min-height: 470px;
  overflow: visible;
  transition: box-shadow 0.3s cubic-bezier(.22, .68, .62, 1.11), transform 0.33s cubic-bezier(.22, .68, .62, 1.11);
  animation: cardFadeIn 0.8s cubic-bezier(.52, 2, .68, .8) backwards;
  z-index: 2;
  transform: rotate(-5deg);
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: scale(.96) translateY(50px);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slant-card:hover,
.slant-card:focus-within {
  box-shadow: 0 18px 36px rgba(82, 98, 222, 0.22), 0 6px 16px rgba(242, 138, 60, .16);
  transform: scale(1.027) translateY(-8px);
}

/* Top-left diagonal cut */
.slant-card::before {
  content: "";
  position: absolute;
  background: #f9f7f2;
  top: 0;
  left: 0;
  width: 62px;
  height: 54px;
  z-index: 10;
  transition: background 0.3s;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Bottom-left diagonal cut */
.slant-card::after {
  content: "";
  position: absolute;
  background: #f9f7f2;
  bottom: 0;
  left: 0;
  width: 210px;
  height: 100px;
  z-index: 0;
  transition: background 0.3s;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.slant-label {
  position: absolute;
  left: 100px;
  top: -15px;
  font-weight: bold;
  color: #fff;
  font-size: 1.07rem;
  border-radius: 7px;
  padding: 11px 36px 9px 18px;
  box-shadow: 0 2px 8px rgba(70, 85, 173, 0.18);
  transform: rotate(-10deg);
  z-index: 20;
  letter-spacing: 1px;
  background: #4a59cf;
  transition: transform 0.26s cubic-bezier(.22, .68, .62, 1.11);
}

.slant-card:hover .slant-label {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 8px 24px rgba(70, 85, 173, 0.16);
}

/* Card body */
.slant-card-body {
  margin-top: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package-title {
  font-size: 1.20rem;
  font-weight: 700;
  color: #f28a3c;
  margin-bottom: 10px;
  transition: color 0.22s;
}

.slant-card:hover .package-title {
  color: #05294d;
}

.package-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #06294d;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.package-price .per-unit {
  font-size: 1.05rem;
  color: #b7b3a7;
  font-weight: 700;
  margin-left: 7px;
}

.package-desc {
  color: #666;
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: center;
  min-height: 54px;
}

.slant-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 11px;
  color: #444;
  font-size: 1rem;
  text-align: left;
  width: 100%;
  z-index: 11;
}

.slant-card ul li {
  margin-bottom: 13px;
  position: relative;
  padding-left: 26px;
  color: #363c41;
  transition: color 0.2s;
}

.slant-card:hover ul li {
  color: #f28a3c;
}

.slant-card ul li:before {
  content: "✔";
  color: #F68A1E;
  font-size: 1.22rem;
  position: absolute;
  left: 0;
  top: -2px;
  transition: color 0.2s;
}

.slant-card:hover ul li:before {
  color: #06294d;
}

/* Responsive */
@media (max-width:1200px) {
  .slant-label {
    left: 60px;
  }
}

@media (max-width:991.99px) {
  .slant-card {
    min-height: 340px;
    padding: 22px 2vw 13px 2vw;
  }

  .slant-label {
    left: 35px;
    padding: 9px 22px 7px 15px;
  }

  .slant-card::before {
    width: 42px;
    height: 39px;
  }

  .slant-card::after {
    width: 120px;
    height: 48px;
  }
}

@media (max-width:767.99px) {
  .slant-card {
    min-height: 180px;
    padding: 10px 4vw 10px 4vw;
  }

  .slant-label {
    left: 18px;
    top: 4px;
    font-size: .91rem;
  }

  .slant-card-body {
    margin-top: 9px;
  }

  .package-title {
    font-size: 1rem;
  }

  .package-price {
    font-size: 1.24rem;
  }

  .slant-card::before {
    width: 24px;
    height: 20px;
  }

  .slant-card::after {
    width: 60px;
    height: 24px;
  }
}

/* ==================================
 FOUNDER
===================================== */
.founder-section {
  background-color: #f9f7f2;
  padding: 70px 20px;
  border-radius: 18px;
  /* box-shadow: 0 10px 40px rgba(82, 98, 222, 0.12); */
  color: #05294d;
}

.founder-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.founder-image {
  /* max-width: 320px; */
  width: 100%;
  border-radius: 5%;
  box-shadow: 0 15px 38px rgba(246, 138, 30, 0.20);
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.founder-image:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 50px rgba(246, 138, 30, 0.30);
}

.founder-content {
  text-align: justify;
  /* max-width: 540px; */
}

.founder-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #f68a1e;
}

.founder-name {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #05294d;
}

.founder-bio {
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.65;
  color: #4a4a4a;
}

.founder-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: baseline !important;
}

.contact-item label {
  font-weight: 700;
  color: #05294d;
  margin-bottom: 7px;
  font-size: 1rem;
}

.contact-link {
  color: #f68a1e;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
}

.contact-link:hover,
.contact-link:focus {
  color: #05294d;
  border-bottom: 2px solid #05294d;
}

.contact-item i.bi {
  font-size: 1.3rem;
  margin-right: 8px;
  color: #05294d;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-content {
    max-width: 100%;
    text-align: center;
  }

  .founder-contact {
    justify-content: center;
    gap: 20px;
  }

  .founder-title {
    font-size: 1.85rem;
  }

  .founder-name {
    font-size: 1.3rem;
  }

  .founder-bio {
    margin-bottom: 20px;
  }

  .contact-item {
    align-items: center;
  }
}



/* ==================================
Hero Section
===================================== */
.hero-section {
  background-image: url('../img/slider1.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  font-family: 'Arial', sans-serif;
}

.hero-content,
.consult-form {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  color: #e0e0e0;
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.consult-form {
  background: #ffffff66;
  padding: 30px;
  /* border-radius: 10px; */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  border-top: 7px solid #f28a3c;
}

.consult-form h3 {
  color: #ffffff;
  font-size: 1.5rem;
  /* Reduced font size */
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  ext-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.form-input,
.form-select {
  /* border: 1px solid #0b2545; */
  border-radius: 6px;
  /* Smaller radius */
  padding: 10px;
  /* Reduced padding */
  font-size: 0.9rem;
  /* Reduced font size */
}

.form-input:focus,
.form-select:focus {
  border-color: #0a223a;
  box-shadow: 0 0 4px rgba(10, 34, 58, 0.3);
}

.btn-submit {
  background-color: #0b2545;
  color: #ffffff;
  font-size: 0.95rem;
  /* Reduced font size */
  font-weight: 500;
  padding: 10px;
  /* Reduced padding */
  border-radius: 6px;
  transition: background-color 0.3s ease;
  width: 100%;
}

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

.hero-content .btn-custom {
  display: inline-block;
  width: auto;
  padding: 12px 30px;
  background-color: #F68A1E;
  color: #ffffff;
  font-size: 0.95rem;
  /* Reduced font size */
  border-radius: 6px;
}

.hero-content .btn-custom:hover {
  background-color: #e07b17;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .consult-form {
    margin-top: 40px;
    padding: 20px;
    /* Further reduced padding for mobile */
  }
}



/* ======================================
FAQ's
========================================== */
.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  font-weight: 700;
  color: #F68A1E;
  text-align: center;
  margin-bottom: 12px;
}

.faq-section p.sub-text {
  text-align: center;
  color: #777;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 15px;
}

.faq-category {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  color: #000;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 18px rgba(74, 72, 226, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.faq-icon {
  background: #fffaf5;
  color: #F68A1E;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item .collapse.show+.faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 10px 18px 14px 18px;
  color: #555;
  font-size: 14px;
  border-top: 1px solid #eee;
}

@media (max-width: 992px) {
  .faq-category {
    text-align: center;
  }

  .faq-col {
    margin-bottom: 40px;
  }
}



.modal-dialog {
  max-width: 450px;
}

.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: #f9f7f2;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-header {
  padding: 15px 30px;
  position: relative;
}

.modal-title {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.modal-body {
  padding:20px 30px;
  background: #fff;
}

/* Custom Form Classes */
.custom-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.custom-label {
  color: #0B2545;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}

.custom-input {
  width: 100%;
  border: none;
  border-radius: 1px;
  padding: 10px 12px;
  color: #0B2545;
  font-size: 1rem;
  background: #eeeded57;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.custom-input::placeholder {
  color: #0B2545;
  opacity: 0.6;
}

.custom-input:focus {
  border-color: #F68A1E;
  box-shadow: 0 0 8px rgba(246, 138, 30, 0.4);
  outline: none;
  transform: scale(1.01);
}

.custom-hidden {
  display: none;
}

.custom-submit-btn {
  width: 100%;
  background: #F68A1E;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.custom-submit-btn:hover {
  background: #e07b1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(246, 138, 30, 0.3);
}

.custom-submit-btn:active {
  transform: translateY(0);
}

/* Custom Learn More Button */
.custom-learn-more-btn {
  background: #F68A1E;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 9999;
}

.custom-learn-more-btn:hover {
  background: #e07b1a;
  border-color: #F68A1E;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(246, 138, 30, 0.3);
}

.custom-learn-more-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-50px);
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }

  .modal-body {
    padding: 20px;
  }

  .custom-input {
    padding: 10px 12px;
  }

  .custom-learn-more-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}