/*Dependencies*/
@import url("fonts/fonts.css");

/*Basics*/
:root {
    --minaFont: "Poppins", sans-serif;
    --mainColorRed: #f10606;
    --bs-navbar-active-color: 'transparent !important';
    --primary: #f10606;
    --secondary: #000000;
    --accent: #c5cae9;
    --light-bg: #ebe9e9;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: var(--minaFont);
    color: #000000;
    font-size: 13px;
}

* {
  box-sizing: border-box;
}


body {
    font-size: 14px;
}

/* body {
  padding-right: 15px !important;
} */

/* Prevent horizontal scroll on mobile */
/* html, body {
  overflow-x: hidden;
  max-width: 100%;
} */

/* body, html {
  overflow: auto;
  overflow-y: auto;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
}

.container-fluid {
    padding: 0 15px;
    max-width: 1450px;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
}

a {
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.transition-effect {
    transition: all 0.5s ease;
}


/* TOP ROW */
.site-top {
    background: #ebe9e9;
    /* light gray similar to screenshot */
    padding: 12px 0;
}

.site-top .logo img {
    max-height: 80px;
    /* adjust to taste */
    width: auto;
    display: block;
}

/* CTA buttons on top row */
.top-ctas {
    gap: 14px;
    justify-content: flex-end;
}

.cta-btn {
    width: 205px;
    height: 55px;
    background: var(--mainColorRed);
    color: #fff;
    border: none;
    text-align: center;
    border-radius: 10px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-btn:hover {
    background: var(--mainColorRed);
    color: #fff;
}

.cta-btn .line1 {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    color: #fff;
}

.cta-btn .line2 {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    margin-top: 5px;
    color: #fff;
}

/* NAV ROW */
.main-nav {}

.main-nav .navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #111;
    padding: 10px 15px 2px 15px;
    white-space: nowrap;
}

.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link:focus,
.main-nav .navbar-nav .nav-link.active {
    color: var(--mainColorRed);
}

.main-nav .navbar-nav .nav-link:hover .bi-svg {
    stroke: var(--mainColorRed);
}

.main-nav .mn-container{
    justify-content: flex-end;
}

.nav-link.dropdown-toggle::after {
    display: none;
}

/* Chevron icon styling */
.navbar-nav .dropdown-toggle .bi {
    font-size: 0.8rem;
    margin-left: 4px;
    color: rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

/* Rotate icon on dropdown open */
.navbar-nav .dropdown-toggle.show .bi {
    transform: rotate(180deg);
}

.bi-svg {
    stroke: #000;
    stroke-width: 1px;
    fill: none;
}

.main-nav .navbar-nav .nav-link.active .bi-svg,
.navbar-nav .dropdown-toggle.show .bi-svg {
    stroke: var(--mainColorRed);
}

.dropdown-arrow {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}
.nav-item.dropdown:hover > .dropdown-menu{
    width: 100%;
    padding: 0;
}
.dropdown-item:hover, .dropdown-item.active, .dropdown-item:active{
    background-color: #000 !important;
    color: #fff !important;
}
.dropdown-item{
    padding: 8px 10px;
}


/* center nav items (desktop) */
@media(min-width: 992px) {
    .main-nav .navbar-collapse {
        justify-content: center;
    }

    /* keep CTA buttons on single line in top-row */
    .top-ctas {
        display: flex;
    }
    .navbar-nav .dropdown-menu{
        min-width: 200px;
        margin-left: 20px;
    }
    .dd-last .dropdown-menu{
        margin-left: -50px;
    }
}

/* mobile: show CTAs inside collapsed menu (we duplicate them) */
.mobile-only {
    display: none;
}

@media (max-width: 991.98px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        margin-top: 20px !important;
    }
    .navbar-nav .dropdown-menu{
        background: transparent;
        border: 0;
        padding-left: 20px;
        margin-left: 20px;
    }
}

.hex-item {
    position: relative;
    display: inline-block;
}

/* .hex-item:hover {
    opacity: 0.5;
} */

.hex-item img {
    width: 85%;
    height: auto;
    display: block;
}

.hex-title {
    position: absolute;
    bottom: 18%;
    left: 22%;
    width: 70%;
    transform: translateX(-22%);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 10px;
    border-radius: 4px;
}

.btn-details {
    background: var(--mainColorRed);
    color: #fff;
    border: none;
    text-align: center;
    border-radius: 5px;
    line-height: 1;
    display: inline-block;
    padding: 13px 20px;
    font-weight: 600;
}

.btn-details:hover {
    background: var(--mainColorRed);
    color: #fff;
}

/* .hex-wrapper:hover {
    opacity: 0.5;
} */

.s2-head {
    font-weight: 600;
    font-size: 32px;
}

/* Center line */
.progress-line {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 12px;
    background: #c5cae9;
    z-index: 1;
    border-radius: 10px;
}

/* Each step */
.step {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #c5cae9;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
}

/* show both icons stacked but only one visible */
.step-circle .bi-check-lg {
    display: none;
    /* default hidden */
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.step-circle .bi-circle {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

/* default label */
.step-label {
    font-size: 14px;
    /* opacity: 0.7; */
    font-weight: 700;
    color: #333;
    background: #dcd9cd;
    padding: 10px 10px;
    border-radius: 3px;
}

/* active state */
.step.active .bi-check-lg {
    display: inline-block;
}

.step.active .bi-circle {
    display: none;
}

.step.active .step-label {
    opacity: 1;
}

.step.active .step-circle {
    background: #6520ff;
}

/* hover state */
.step:hover .bi-check-lg {
    display: inline-block;
}

.step:hover .bi-circle {
    display: none;
}

.step:hover .step-label {
    opacity: 1;
}

.step:hover .step-circle {
    background: #6520ff;
}


.process-section p{
    font-size: 20px;
    padding: 0px 20px;
    line-height: 1.2;
}

.process-section img{
    min-height: 261px;
}

/* Default faded state */
.process-section .process {
  /* opacity: 0.5; */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Image and text also appear dim */
.process-section .process-img {
  /* opacity: 0.6; */
  transition: opacity 0.3s ease;
}

/* On hover or when active, make it fully visible */
.process-section .process:hover,
.process-section .process.active {
  opacity: 1;
  transform: translateY(-5px); /* Optional: slight lift on hover */
}

.process-section .process:hover .process-img,
.process-section .process.active .process-img {
  opacity: 1;
}


.cta-section h2{
    line-height: 1.4;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px 30px;
    border-radius: 5px;
}

.btn-cta,
.btn-cta:hover{
    background-color: rgba(241, 6, 6, 0.4);
    color: #fff;
    font-size: 18px;
}
.financing-section{overflow: hidden;}
.financing-section p,
.financing-section li{
    font-size: 20px;
}


/* General footer style */
.site-footer {
  background: #222;
  color: #eee;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

/* First row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-top-left p,
.footer-top-right p {
  margin: 0;
  font-size: 14px;
}

.footer-top-center img {
  max-height: 50px;
}

/* Second row */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.map-container iframe {
  border-radius: 5px;
}

/* Social links */
.social-links li a {
  display: inline-block;
  color: #ccc;
  transition: color 0.3s;
}

.social-links li a:hover {
  color: #00aced;
}

.footer-top-left,
.footer-top-right{
    width: 40%;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
.map-container{
    max-width: 75%;
  }
}

@media (max-width: 576px) {
  .footer-top {
    flex-direction: column;
    padding-top: 20px;
    text-align: center;
    gap: 0px;
  }

  .footer-col ul.social-links{
    margin-bottom: 30px;
  }

  .footer-top-center img{
    margin-bottom: 20px;
  }

  .footer-top-left{
    order: 2;
  }
  .footer-top-center{
    order: 1;
  }
  .footer-top-right{
    order: 3;
  }

  .footer-top-left, 
  .footer-top-right,
  .footer-top-center {
    width: 100%;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .map-container{
    max-width: 100%;
  }

  .map-container iframe {
    height: 200px;
  }
}

.breadcrumb a,
.breadcrumb span{
    font-size: 16px;
}
.breadcrumb a{
    color: #000;
    font-weight: bold;
}
.pageheading h1{
    font-weight: 600;
}

.bys_img{
    border: 7px solid #6d8449;
    border-radius: 2px;
    max-width: 80%;
}
.bys_img_new{
    border: 7px solid #6d8449;
    border-radius: 2px;
}
ul.star-list {
  list-style-type: "* ";       
  padding-left: 1.2rem;        
}
ul.star-list li,
.sectionsp {
    margin-bottom: 1rem;  
    font-weight: 500;
    font-size: 18px;      
}




/*Gallery Page*/
p.subtitle {
    padding-left: 5%;
    margin-bottom: 40px;
    font-size: 20px;
}
.sidebar {
    padding: 0;
    border-radius: 5px;
}
.sidebar h5 {
    font-weight: 600;
    margin-bottom: 10px;
    background: #ecc6c6;
    padding: 10px 10px;
}
.sidebar ul li{
    padding-left: 10px;
}
.sidebar ul li a{
    font-size: 18px;
}
.sidebar ul li a:hover {
  text-decoration: underline;
}
.gallery img {
    width: 100%;
    border: 4px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}
.contact-section {
    text-align: center;
    margin: 15px 0;
    padding: 20px;
}
.contact-section img {
    width: 140px;
}
.contact-text{
    font-size: 20px;
    font-weight: 500;
}
.contact-btns{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.sidebar.aside,
.sidebar aside,
.col-md-3 .sidebar aside {
  position: static !important;
  top: auto !important;
}

/* Mobile-only accordion look/behaviour */
@media (max-width: 767.98px) {
  .sidebar h5 {
    cursor: pointer;
    position: relative;
    padding-right: 28px;
    margin-bottom: .5rem;
  }
  .sidebar h5::after {
    content: '\25BC';
    position: absolute;
    right: 11px;
    top: 14px;
    font-size: 0.85rem;
    transition: transform .25s ease;
  }
  .sidebar h5[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  /* hide submenus by default on mobile */
  .sidebar ul {
    display: none;
    margin-left: 0;
    padding-left: 0;
  }
  .sidebar ul.show {
    display: block;
  }
}

/* Desktop: keep visible and normal */
@media (min-width: 768px) {
  .sidebar ul {
    display: block !important;
  }
  .sidebar h5 {
    cursor: default;
  }
}

.having_arrows{
    position: relative;
}
.harrow{
    position: absolute;
    top: -25px;
    width: 135px;
}
.harrow1{
    left: 0;
}
.harrow2{
    right: 0;
}
.spacer{
    height: 30px;
    display: block;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* change if needed */
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.hero-overlay img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-text h1{
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}


.shed-btn {
    background: var(--mainColorRed);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    padding: 6px 12px;
    text-transform: capitalize;
    border: none;
}
.shed-btn:hover {
    background: var(--mainColorRed);
    color: #fff;
}
.down-arrow-img {
    width: 55px;
    margin-top: 10px;
}
.gray_img{
    border: 4px solid #e0e0e0;
}
.shed_para{
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 767px) {
  .subtitle {
    font-size: 17px;
    margin-bottom: 25px;
  }

  h1 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
    .container-fluid {
        padding: 0 10px;
    }
    p.subtitle {
        padding-left: 0;
        font-size: 18px;
        margin-bottom: 30px;
    }
}

/* Hero responsive text */
@media (max-width: 991px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

/* Mobile: hide logo when menu is open */
@media (max-width: 991.98px) {
   .menu-open .logo {
    display: none !important;
  }
  .site-top.menu-open .nav-wrapper{
    width: 100%;
  }
}

.fancybox__toolbar__column .f-button[data-fancybox-close] {
    background: #fff !important;
}

 @media (min-width: 576px) and (max-width: 991px){
    .main{
        padding-right: 15px !important;
    }
 }

 /* Desktop custom scrollbar - 992px and above */
@media (min-width: 768px) {
  
  /* Width and background */
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  
  /* Track (background) */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  /* Handle (the draggable part) */
  ::-webkit-scrollbar-thumb {
    background: #640909; /* Uses your red color: #f10606 */
    border-radius: 10px;
    border: 2px solid #f1f1f1;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #640909; /* Slightly darker red */
    cursor: pointer;
  }
  
  /* Handle on active (click) */
  ::-webkit-scrollbar-thumb:active {
    background: #640909; /* Even darker red */
  }
  
  /* Corner where horizontal and vertical scrollbars meet */
  ::-webkit-scrollbar-corner {
    background: #f1f1f1;
  }
}

@media (max-width: 768px) {
    .nav-item{
        border-bottom: 1px solid #c9c7c7;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .main-nav .navbar-nav .nav-link{
        padding-left: 0;
    }
    .dropdown-menu li{
        border-bottom: 1px solid #c9c6c6;
        padding-bottom: 3px;
        padding-top: 3px;
        width: 75%;
    }
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    .dropdown-menu .dropdown-item{
        padding-left: 0;
        font-size: 16px;
    }
}