/*
style by ASP Consultants.
author - saru
*/
//font-family: 'TitilliumWeb-Regular';
@font-face {
    font-family: 'LatoLatin-Regular 3';
    src: url('../fonts/LatoLatin-Regular 3.ttf');

}

@font-face {
    font-family: 'Lato-Light';
    src: url('../fonts/Lato-Light.ttf');

}

@font-face {
    font-family: 'TitilliumWeb-Bold';
    src: url('../fonts/TitilliumWeb-Bold.ttf');

}

@font-face {
    font-family: 'TitilliumWeb-Regular';
    src: url('../fonts/TitilliumWeb-Regular.ttf');

}

@font-face {
    font-family: 'Amalfi Coast';
    src: url('../fonts/Amalfi Coast.ttf');

}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBold.ttf');

}

@font-face {
    font-family: 'Gotham Medium';
    src: url('../fonts/Gotham Medium Regular.ttf');

}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.ttf');

}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamLight.ttf');

}
@font-face {
    font-family: 'Inter Thin';
    src: url('../fonts/Inter.ttf');

}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/gravesend-sans-medium.ttf');

}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.ttf');
    letter-spacing:1.5px;

}
@font-face {
    font-family: 'Domine';
    src: url('../fonts/Domine-Regular.ttf');

}

body {
    font-family: 'TitilliumWeb-Regular';
    font-size: 14px;
    color: #0f1113;
   
    

}

html {
    scroll-behavior: smooth;
    font-family: 'TitilliumWeb-Regular';
    font-size: 14px;
    color: #0f1113;
    overflow: auto;
    scroll-padding-top: 70px;
}

h2 {
    font-size: 25px;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 30px;
    font-family:Domine;
    letter-spacing:0.5px;
    

}
/* =================== */
/* BASE STYLES         */
/* =================== */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.logo {
    position: fixed;
    display: inline;
    top: 5px;
    padding-right:10px; margin-top:0px;
    padding-left:20px;
}

.table td,
.table th {
    padding: 10px;
}

ul,
li {
    line-height: 32px;
}

.features-list ul {
    list-style: none; /* This is critical to remove the default bullets */
    margin: 0; /* Remove default margin */
    padding-left: 0; /* Remove default padding from the UL */
}

.features-list li {
    
    list-style: none;
    position: relative;
    padding-left: 1.5em; /* Space for the custom bullet */
    margin-bottom: 0.8em; /* Space between list items */
     /* Your desired dark neutral for the text */
    font-family: 'Domine', serif; /* (If you have a specific font) */
    line-height: 1.6;
}

.features-list li::before {
    content: "•"; /* The custom bullet symbol */
    position: absolute;
    left: 0;
    top: 0; /* Adjust if needed for vertical alignment */
    color: #8C4D6B; /* Your accent plum/mauve color for the bullet */
    font-size: 1.2em; /* Adjust size if needed */
    line-height: inherit;
}

.navbar{
    background-color:#ffff;
    height:90px;
    padding-left: 10px;
    box-shadow: 0 10px 15px -3px rgba(241, 192, 49, 0.3);
}
.navbar-toggler{
    border:none !important; 
    color:#fff !important; 
    padding-top:20px;
}
.navbar-toggler-icon{
    color:#000;
}
/* Video container */
.video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Video element */
.video-wrapper video {
    width: 100%;
    max-width: 760px;      /* desktop width */
    height: auto;
    aspect-ratio: 16 / 9;  /* keeps correct ratio */
    object-fit: contain;
    background-color: #000;
}

/* Tablet & Mobile adjustments */
@media (max-width: 768px) {
    .video-wrapper video {
        max-width: 100%;   /* full width on mobile */
    }
}


.buttoncolor {
    color: #fff;
    background-color: #61903e;
    border:none;
    font-family:Oswald;
    letter-spacing:1.5px;
    font-weight:300;
}

.home-btn {
    color: #fff;
    background-color: #6161f1;
    font-size: 0.9em;
    padding: 8px 15px;
    border-radius: 3px;
    text-decoration: none;
}

.main-container {
    height: 100svh;
    width: 100svw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.iframe-container {
    flex-grow: 1;
}

.iframe-fullscreen {
    width: 100%;
    height: 100%;
    border: none;
}

#iframe-wrapper {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 300px;
    height: 400px;
    z-index: 9999;
}

.footer {
    background-color: #fff;
    background-size: cover;
    padding-bottom: 0rem;
    padding-left: 3rem;
    padding-right: 3rem;
    color: #000;
}

/* =================== */
/* ACCORDION STYLES    */
/* =================== */
.accordion-custom {
    width: 90%;
    margin: 0 auto;
    font-family: 'Domine', Arial, sans-serif;
    font-weight: bold;
    color: #949494;
}

.accordion-section {
    border-bottom: 2px solid #61903e;
    cursor: pointer;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 3;
}

.accordion-title {
    font-size: 1.38em;
    color: #61903e;
    margin: 0;
}

.toggle-icon {
    font-size: 1.5em;
    color: #61903e;
    transition: transform 0.2s;
    user-select: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 24px;
}

.accordion-content.open {
    max-height: 500px; /* adjust for content height */
    padding-bottom: 16px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    font-size: 1.07em;
}

.info-mins {
    color: #949494;
    min-width: 60px;
    text-align: right;
    margin-left: 15px;
    font-weight: 500;
}

/* =================== */
/* PROJECT STYLES      */
/* =================== */
.project-row {
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.project-row:hover {
    background: #f6f8fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transform: translateY(-2px);
    cursor: default;
}

.project-facts,
.project-facts .fact-item span,
.project-facts .fact-separator {
    color: #949494;
    font-weight:;
    font-family: 'Domine', serif;
    font-size: 1.20rem;
    padding: 20px;
    padding-top:0px ;
}

.project-facts .fact-icon {
    color: #b3597a;
    font-size: 1.2em;
    margin-right: 8px;
    padding-bottom:25px;
}

    .area-card {
      background: #fcfcfc;
      border-radius: 0px;
      
      text-align: center;
      margin: 22px 0;
      padding: 38px 26px 34px 26px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.1rem;
      min-height: 250px;
      transition: box-shadow 0.22s;
    }
    .area-card:hover {
      box-shadow: 0 12px 48px 0 #c7a27e26;
    }
    .area-icon {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 56px;
      width: 56px;
      background: #fcfcfc;
      
      
      color: #a8876c;
      font-size: 28px;
    }
    .area-value {
        font-family: "Oswald", serif;        
      font-size: 1.5rem;
      font-weight: 500;
      color: #2d2d2d;
      
      margin: 0 0 5px 0;
      letter-spacing: 0.5px;
      line-height: 1.07;
    }
    .area-label {
      font-family:"Domine";
      font-size: 1rem;
      font-weight: 400;
      color: #bc9673;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0.88;
      margin-top: 0;
    }

/* =================== */
/* CALL-NOW BUTTON     */
/* =================== */

.call-item{
    margin-left:30px;
}
.call-now {
    color: #fff !important;
    font-weight: bold;
    padding: 8px 22px;
    border: 2px solid #fff;
    border-radius: 4px;
    margin-left: -20px;
    letter-spacing: 1px;
    display: inline-block;
    background: transparent;
    background-color: #61903e;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.call-now:hover {
    background: #fff;
    color: #61903e !important;
    text-decoration: none;
}
.call-now.span{
    font-size:1.4rem !important; text-align:center;
}




/* =================== */
/* ZOOM ANIMATION      */
/* =================== */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.03, 1.03);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.03, 1.03);
    }
}

.animate__slideInDown {
  animation-duration: 5s;  /* Change 2s to your preferred speed */
}
@keyframes fadeInLeftSimple {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeftSimple;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes fadeInRightSimple {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRightSimple;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes fadeInUpSimple {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUpSimple;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}


@keyframes fadeInDownSimple {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__fadeInDown {
  animation-name: fadeInDownSimple;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes fadeIn{
  from {
    opacity: 0;
    
  }
  to {
    opacity: 1;
    
  }
}

.animate__fadeIn {
  animation-name: fadeIn;
  animation-duration: 2.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}




.carousel-inner .carousel-item div > img {
    -webkit-animation: zoom 10s;
    animation: zoom 10s;
}

/* ================================== */
/* MEDIA QUERIES (GROUPED AT BOTTOM)  */
/* ================================== */

/* Large screens (desktop) */
@media only screen and (min-width: 992px) {
    .navbar .navbar-nav .nav-item .nav-link {
        padding-right: 15px;
        padding-top: 0px;
        padding-bottom: 0px;
        text-align: center;
        font-size: 1.2rem;
        
    }
    .navbar .navbar-nav .nav-item:not(:last-child) .nav-link {
        /*border-right: 1px solid #61903e;*/
    }
    .special-no-border .nav-link {
        border-right: none !important;
    }
}

/* Medium screens (tablet/mobile) */
@media (max-width: 768px) {
    .accordion-section {
        width: 100% !important;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }
    .info-row {
        white-space: nowrap;
        font-size: 0.96em;
        gap: 6px;
    }
    .info-row span {
        text-overflow: ellipsis;
        flex: 1;
        margin-left: -13px;
    }
    .info-mins {
        flex: 0 0 auto;
        margin-left: 6px;
        min-width: 44px;
        text-align: right;
    }
    .responsive-map iframe {
        width: 100% !important;
        min-width: 0;
        height: 320px;
    }
    .navbar-nav .nav-link {
        padding-right: 10px !important;
        padding-left: 11px !important;
    }
    .project-facts {
        justify-content: flex-start !important;
        padding: 10px 40px !important;
        gap: 0px;
    }
    .project-facts .fact-item {
        flex: 1 1 100%;
        justify-content: flex-start !important;
        padding: 8px 0;
    }
    .project-facts .fact-separator {
        display: none;
    }
    .project-facts .fact-item span {
        text-align: left;
    }


}
@media (max-width: 600px) {
  .table-light {
    font-size: 0.88rem;
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(to right, #61903e, #6B2E4E);
    color: #fff;
    box-shadow: 0 2px 6px rgba(132,94,28,.08);
  }
  .table-light th, .table-light td {
    padding: 6px 2px !important;
    font-size: 1rem;
    text-align: center;
    word-break: break-word;
    white-space: normal;
    vertical-align: middle;
    border: none;
    max-width: 100px;
  }
  .table-light th h4 {
    font-size: 0.99rem;
    margin: 0;
    color: #fff; 
    font-weight: bold;
    letter-spacing: .5px;
  }
  .buttoncolor.askpricebtn {
    background: #61903e;
    color: #fff !important;
    border-radius: 5px;
    border: none;
    font-size: 0.93rem;
    width: 100%;
    max-width: 130px;
    min-width: 60px;
    padding: 7px 0;
    box-shadow: 0 1px 4px rgba(132, 94, 28, 0.1);
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    font-family: Oswald;
    font-weight: 600;
  }
}

    





/* Extra small screens */
@media (max-width: 500px) {
    #navbarNav {
        padding-top: 25px;
        padding-left: 5px;
    }
}

/* Hide btn on desktop */
@media (min-width: 769px) {
    .call-now {
        display: none !important;
    }
    
#overviewsection{
    margin-left:60px;
}
}

.hidden {
  opacity: 0;
  transition: all 1s ease;
}
.show {
  opacity: 1;
}
.thankyousection{
    background: url('../images/overview5.jpg') center; 
    background-size: cover;
    background-attachment: fixed;
    height:620px; 
    padding-top:100px;
}

.sectionstyle{
    background-color:#fcfcfc;
	padding-top: 20px;
    padding-bottom: 40px;
}

.carousel-inner{
    position:relative !important; 
    margin-top:60px;
}

.carousel-item.active{
    padding-top:30px;
}
.heading-underline {
  width: 80%;           /* Adjust width as needed */
  margin: 0 auto 4px auto; /* Center and add space below */
  border-bottom: 2px solid #aad5ca; /* Blue underline, adjust thickness/color */
  border-radius: 2px;
}

.aboutimg{
	width:90%; 
	padding-top:20px;
}

.keyfeatures{
	font-size:1.2rem; 
	
}

#configuration {
	
	background-size: cover; 
	background-attachment: fixed; 
	width:100%;
	height:65vh;
}

.configheading{
	font-size:30px !important; display:inline-block;
}
.table-light{
	line-height:1px!important; 
	text-align: center; 
	margin: auto; 
	width: 100%; 
	color:#000; 
	background: linear-gradient(to right, #61903e, #000);
    box-shadow: 0 4px 10px rgba(132, 94, 28, 0.3);
	font-size:1.2rem; 
	font-family:Oswald; 
	border:2px solid #e0e0e0;
	border-collapse: collapse;      
}

.table-light th,

.table-light thead th
 {
    padding:20px;
    border: 2px solid #e0e0e0;
	border-left: none;  
    border-right: none;
    border-top: none;
	font-size:1.2rem !important; 
	background-color:#;
	font-family:Domine;
	color:#4A4A4A;
    background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.04) 5px,
    transparent 5px,
    transparent 10px
                    );	
    }
.table-light td{
     border: 2px solid #e0e0e0;
	border-left: none;  
    border-right: none;
    border-top: none;
	font-size:1.2rem !important; 
	background-color:#fcfcfc;
	font-family:Domine;
	color:#4A4A4A;	   
}
.table-light tr:hover > td
 {
  background-color:#e4e3e4 !important;
  
  transition: transform 0.3s ease;
}

 

.table-light button{
	padding: 20px !important; 
	white-space: nowrap;
	font-family:Oswald; 
	
    letter-spacing:0.5px;
}

.table-light button:hover{
    background:#F1C031;
    transform: translateY(-3px);
    transition: transform 0.3s ease;
    
}
.table-light thead {
	color:#fff;
    line-height:1px;
    
}
.table-light thead th {
	
    color:#fff;
    
}

.compact th{
	padding-left:20px;
	font-family:Oswald !important; 
    letter-spacing:0.5px;
}

.plansbutton{
	font-size:1.2rem;  
	border: 2px solid #fff7ee; 
	padding:10px;
	font-family:Oswald;
	font-weight:500;
	
}

#towera,#towerb,#towerc{
    font-family:Domine; font-weight:bold;
}

#gallery .carousel-inner{
    margin-top:0px;
}

.modal-content{
    font-family:Oswald;
}
.modal-body{
    font-family:Roboto;
}

.marquee{
    font-weight:bold; 
    font-family: Domine, sans-serif; 
    font-size: 1.3rem; 
    padding: 10px 0;
    color:#949494; 
    white-space: nowrap;
}
.marquee img{
    width: 18px; 
    height:18px; 
    vertical-align: middle; 
    margin-right: 6px;
}

.linebreak {
    background-image: url("../images/div0.png");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    text-align: center;
    height: 45px;
    margin-bottom: 30px;
}

.container-fluid {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

.table td {
    padding: 1rem;
    vertical-align: middle;

}

.navfont {
    font-size: 1.3rem;
    font-weight: 300;
    color: #2d2d2d !important;
    font-family:Oswald;
    letter-spacing:1px;
    text-decoration: none;
    position: relative;
    padding-bottom: 8px; /* Space for underline */
    white-space: nowrap;
    transition: color 0.3s ease-out, font-size 0.3s ease-out, transform 0.3s ease-out, font-weight 0.3s ease-out;    
}

.navfont::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #e5b200; /* Accent color */
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    transition: width 0.3s ease-out;
        }
        
.navfont:hover {
            color: #F1C031; /* Hover color */
            font-size: 1.37rem;
            transform: translateY(-2px);
        }
        
    .nav-item:not(.active) .nav-link:hover {
        text-decoration: none;
        color: #F1C031; /* Apply your hover color to non-active items too if desired, without underline */
        font-size: 1.2rem; /* Apply your hover font size to non-active items too if desired */
        transition: 0.3s ease;
        
    }


    
.nav-item.active .nav-link {
     /* Always underlined when active */
    color: #F1C031; /* You might want a distinct color for the active state */
    /* Keep other active styles here if you have any */
}
    

.nav-item {
    padding-right: 10px;
    
}

.nav-item a:hover {
    color: #F1C031 !important;
}

.reverse {
    background-color: #f2df80;
    color: #181818;
}
.carousel-item {
    .lg-item > img {
        height: 600px;
    }
}
.themebackground {
    background-color: #61903e !important; //D86D12 
    color: #ffff;
}
.logo-separator {
  display: inline-block;
  width: 1.5px;
  height: 32px;  /* matches the smaller logo height */
  background: #e0e0e0;  /* light neutral color, adjust for design */
  margin: 0 10px;
  border-radius: 1px;
}
.Headerfonts {
    font-family: 'Oswald', serif;
    font-size: 27px;
    font-weight: 700;
    //text-shadow: 4px 4px 4px #aaa;
    line-height: 30px;
    /* Dark translucent box */
    /*padding: 10px 20px;*/
    border-radius: 5px;
	color:#2d2d2d;
}

#mobile-buttons{
    width:100%;
    position:fixed; 
    bottom:0; 
    display:flex; 
    justify-content:space-between;
    background-color:#fff; 
    padding:10px;
    
}
.vertical-fixed-btn-left {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  font-family: 'Oswald', serif;
  
}
.vertical-fixed-btn-left .btn-vertical .fa-download {
  margin-right: 8px; /* Adjust as needed */
}
.download-icon-bounce {
  animation: bounce-slow 2s infinite alternate ease-in-out; /* 4s duration, infinite, alternates direction, smooth timing */
  display: inline-block; /* Essential for transform to work correctly on inline elements like <i> */
}

@keyframes bounce-slow {
  0% {
    transform: translateY(0); /* Start at original position */
  }
  50% {
    transform: translateY(-5px); /* Move up slightly */
  }
  100% {
    transform: translateY(0); /* Return to original position */
  }
}

.vertical-fixed-btn-right {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  font-family: 'Oswald', serif;
}

.btn-vertical {
  font-weight:bold;
  border-radius: 4px;
  padding: 16px 8px;
  letter-spacing: 2px;
  writing-mode: vertical-lr;         /* bottom to top for left button */
  text-orientation: mixed;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}

.vertical-fixed-btn-right .btn-vertical {
  writing-mode: vertical-rl;         /* top to bottom for right button */
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;

}
.vertical-fixed-btn-left .btn-vertical {
  writing-mode: vertical-rl;         /* top to bottom for right button */
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;

}

/* Hover & Focus states for both buttons */
.btn-vertical:hover,
.btn-vertical:focus {
  background-color: #F1C031;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  text-decoration: none;
  transform: scale(1.08);  /* expand/enlarge on hover */
}



.fonttangerine-big-white {
    font-family: 'Oswald', serif;
    font-size: 27px;
    font-weight: 500;
    //text-shadow: 4px 4px 4px #aaa;
    line-height: 30px;
    background: #ffff;/* Dark translucent box */
    display: inline-block;
    padding: 10px 20px;
    /*box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3); /* Soft black shadow */
    border-radius: 5px;
    color:#949494;
}

.fonttangerine-medium {
    font-family: 'TitilliumWeb-Regular', serif;
    font-size: 40px;
    text-shadow: 3px 3px 3px #aaa;
}

.timeline {
    list-style-type: none;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 0px;
}

.li {
    transition: all 200ms ease-in;
}

.timestamp {
    margin-bottom: 0px;
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 100;
}

.li.complete .status {
    border-top: 2px solid #ddd;
}

.status {
    padding: 0px 10px;
    /* display: flex; */
    justify-content: center;
    border-top: 2px solid #D6DCE0;
    position: relative;
    transition: all 200ms ease-in;
}

.li.complete .status h4 {
    color: #222;
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status h4 {
    font-weight: 600;
}
.text-info{
    /*font-weight:bold;*/
    color:#4A4A4A  !important; 
    font-size:1.0rem;
}

.thankyoutext{
    color:#fff; 
    font-family:Domine;
}
.li.complete .status:before {
    /* background-color: #ddd;*/
    border: none;
    transition: all 200ms ease-in;
    /* background-image:url('../images/favicon.ico');*/
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: top;
    top: -24px;
    transform: rotate(0deg);
}

.status:before {
    content: '';
    width: 45px;
    height: 25px;
    background-color: white;
    border-radius: 25px;
    border: 1px solid #ddd;
    position: absolute;
    top: -15px;
    left: 41%;
    transition: all 200ms ease-in;
}

.locationBox1 {
    /* margin: 18px 0px; */
    /* margin-top: 65px; */
}

.locationBox1 .location-icon {
    color: #fff;
    font-size: 50px;
    width: 50px;
    height: 65px;
    line-height: 120px;
    margin: 0 auto 40px;
    display: block;
    position: relative;
}

.locationBox1 .location-icon:before {
    content: "";
    /* background: linear-gradient(to right,#d3ad37 49%,#d5b659 50%); */
    width: 100%;
    height: 100%;
    border-radius: 150px 150px 0px 50px;
    /* box-shadow: 0 0 0 5px #fff inset; */
    /* border: 5px solid #222222; */
    border-right: none;
    border-top: none;
    transform: rotate(45deg);
    background: #fff;
    position: absolute;
    box-shadow: 3px 3px 10px #222222;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease 0s;
}

.location-icon span {
    color: #b79766;
    font-size: 36px;
    width: 36px;
    height: 36px;
    line-height: 52px;
    /* margin: 0 auto 40px; */
    /* display: block; */
    position: relative;
    z-index: 1;
    top: -33px;
}

#map {
    height: ;
    width: 100%;
}

.form-control1 {
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem 1.00rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.icon-wrapper {
    width: 75px;
    height: 75px;
    
    justify-content: center;
    align-items: center;
    margin: auto;
    /*border:1px solid #f1c031;
    box-shadow: 0 4px 10px rgba(132, 94, 28, 0.3);*/

    margin-bottom:10px;
}
.iconcss {
    font-size: 75px;
    color: #ddd;
    padding-top: 8px;
    width:80%;
    opacity:0.7;
    //background-color:#eee;
}

.rounded-circle1 {
    border-radius: 10% !important;
}

.modal-body input {
    margin: 15px;
    height: 40px;
    width: 85% !important;
    margin-left: 0px;
}

.modal-body,
.modal-footer {
    background: #ccc;
    padding-left: 30px;
}

.modal-body i {
    height: 40px;
    width: 40px;
}

@media only screen and (max-width: 767px) {
    body {
    font-family: 'TitilliumWeb-Regular';
    font-size: 14px;
    color: #0f1113;
    padding-bottom: 60px;

}
    .timeline {
        list-style-type: none;
        display: grid;
        /* align-items: center; */
        justify-content: center;
        padding: 0px;
        /*overflow:hidden;*/
    }

    .tbl-holder {
        /*overflow: hidden;*/
    }

    h2 {
        font-size: 1.1rem;
    }

    .modal-body input {
        margin: 5px;
        height: 30px;
        width: 80% !important;
        margin-left: 0px;
    }

    .modal-body i {
        height: 30px;
        width: 30px;
    }

    .navbar-collapse {
        background: #fff;
        margin: -.5rem -1rem;
        padding: .5rem 1rem;
    }
}
.navbar-toggler {
  border-color: #fff;
}


@media (max-width: 767px) {
  #Walkthrough iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    max-width: 100%;
  }
}

.artistic-impression {
    position: absolute;
    bottom:5px;
    left: 0px;
    background-color: rgba(128, 128, 128, 0.8);
    text-align:center;
    /* Grey background with transparency */
    padding: 1px 7px;
    /* Adjust padding as needed */
    color: white;
    /* Text color */
    font-size: 9px;
    /* Adjust font size as needed */
    line-height: 1;
    /* Ensure the text fits tightly within the padding */
    z-index: 1;
    /* Ensure the text is above the image */


}
.artistic-impression-about {
    position: absolute;
    bottom:5px;
    left: 60px;
    background-color: rgba(128, 128, 128, 0.8);
    text-align:center;
    /* Grey background with transparency */
    padding: 1px 7px;
    /* Adjust padding as needed */
    color: white;
    /* Text color */
    font-size: 9px;
    /* Adjust font size as needed */
    line-height: 1;
    /* Ensure the text fits tightly within the padding */
    z-index: 1;
    /* Ensure the text is above the image */


}


.artistic-impression-master {
    position: absolute;
    top: 40px;
    left: 15px;
    background-color: rgba(128, 128, 128, 0.5);
    /* Grey background with transparency */
    padding: 2px 20px;
    /* Adjust padding as needed */
    color: white;
    /* Text color */
    font-size: 12px;
    /* Adjust font size as needed */
    line-height: 1;
    /* Ensure the text fits tightly within the padding */
    z-index: 1;
    /* Ensure the text is above the image */

}

.artistic-impression-banner1 {
    position: absolute;
    bottom: 20px;
    left: 0px;
    background-color: rgba(128, 128, 128, 0.5);
    /* Grey background with transparency */
    padding: 2px 20px;
    /* Adjust padding as needed */
    color: white;
    /* Text color */
    font-size: 15px;
    /* Adjust font size as needed */
    line-height: 1;
    /* Ensure the text fits tightly within the padding */
    z-index: 1;
    /* Ensure the text is above the image */

}

.artistic-impression-banner1-m {
    position: absolute;
    top: 400px;
    left: 0px;
    background-color: rgba(128, 128, 128, 0.5);
    /* Grey background with transparency */
    padding: 2px 20px;
    /* Adjust padding as needed */
    color: white;
    /* Text color */
    font-size: 12px;
    /* Adjust font size as needed */
    line-height: 1;
    /* Ensure the text fits tightly within the padding */
    z-index: 1;
    /* Ensure the text is above the image */

}

/* new css start */
.floorplan-block {
    position: relative;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-bottom: 20px;
}


.floorplan-block:hover {
box-shadow: 0 4px 10px rgba(132, 94, 28, 0.3);

transform: scale(1.03);
}

.floorplan-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease; /* slower fade with 0.8 seconds */

}

.floorplan-btn .buttoncolor {
color: #fff;
background-color: #61903e;
border:none;
font-family:Oswald;

}

.floorplan-btn .buttoncolor:hover {
color: #fff;
background-color: #F1C031;
border:none;
font-family:Oswald;
}

.floorplan-block:hover .floorplan-btn {
  opacity: 1;
  transform: translateY(10px;);
  pointer-events: auto;
  
}
.floorplan-block .card {
  font-weight: 400;
  font-size: 1.2rem;
  color: #4A4A4A ;
  font-family:Oswald;
  padding: 12px;
background:#F9F7F2;
letter-spacing:1px;

    
}
        .card-footer {
            padding: 10px 10px;
            background: #FDFCFB;
            border-top: 1px solid rgba(107, 46, 78, 0.08);
            text-align: center;
            align-items: center;
            justify-content: center;
            bottom:0px;
            display:flex;
            width:100%;
            position:absolute;
            min-height:60px;
            box-shadow: 0 8px 24px -10px rgba(0,0,0,0.05);

        }
        .unit-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(255, 255, 255, 0.96);
            color: #6B2E4E;
            padding: 12px 18px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.5;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            z-index: 10;
            backdrop-filter: blur(8px);
            font-family:Domine;
        }

        .unit-badge .size {
            display: block;
            font-size: 1.05rem;
            letter-spacing: 0.02em;
            margin-bottom: 2px;
        }

        .unit-badge .details {
            display: block;
            font-size: 0.78rem;
            font-weight: 400;
            color: #998A7D;
            margin-top: 4px;
        }
.floorplan-block img {
    filter: blur(10px);
    width:100%;
    height:100%;
    height:300px;
    
}

.floorplan-img {
    border: 1px solid #f1c031;
    border-radius: .25rem;
    
}


.tab-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-links li {
    margin: 0;
}

.tab-links li a {
    padding: 4px 40px;
    text-decoration: none;
    color: #949494;
    border: 1px solid #61903e;
    background-color: #fff;
    cursor: pointer;
    display: block;
    font-family:Oswald;
}

.tab-links li.active a {
    background-color: #61903e;
    color: #fff;
    font-family:Oswald;
    border:none;
}

@media (max-width: 768px) {
  .a-links {
    flex-direction: column;
    align-items: stretch;   /* makes each tab take full width */
    gap: 0;                 /* optional: remove gap between rows */
  }
}
@media (max-width: 768px) {
  .tab-links {
    flex-direction: column;
    align-items: stretch;   /* makes each tab take full width */
    gap: 0;                 /* optional: remove gap between rows */
  }
}
.a-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.a-links li {
    margin: 0;
}

.a-links li a {
    padding: 4px 40px;
    text-decoration: none;
    color: #949494;
    border: 1px solid #f1c031;
    background-color: #fff;
    cursor: pointer;
    display: block;
    font-family:Oswald;
    background-image:repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.04) 5px,
    transparent 5px,
    transparent 10px
                    );
    
}

.a-links li.active a {
    background-color: #61903e;
    color: #fff;
    font-family:Oswald;
    border:none;
}
@media (max-width: 768px) {
  .f-links {
    flex-direction: column;
    align-items: stretch;   /* makes each tab take full width */
    gap: 0;                 /* optional: remove gap between rows */
  }
}

.f-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.f-links li {
    margin: 0;
}

.f-links li a {
    padding: 4px 40px;
    text-decoration: none;
    color: #949494;
    border: 1px solid #61903e;
    background-color: #fff;
    cursor: pointer;
    display: block;
    font-family:Oswald;
    
}

.f-links li.active a {
    background-color: #61903e;
    color: #fff;
    font-family:Oswald;
    border:none;
}
@media (max-width: 768px) {
  .t-links {
    flex-direction: column;
    align-items: stretch;   /* makes each tab take full width */
    gap: 0;                 /* optional: remove gap between rows */
  }
}

.t-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.t-links li {
    margin: 0;
}

.t-links li a {
    padding: 4px 40px;
    text-decoration: none;
    color: #949494;
    border: 1px solid #f1c031;
    background-color: #fff;
    cursor: pointer;
    display: block;
    font-family:Oswald;
    
}

.t-links li.active a {
    background: #61903e;
    background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.04) 5px,
    transparent 5px,
    transparent 10px
                    );
    color: #fff;
    font-family:Oswald;
    border:none;
}
.tab {
    display: none;
}

.tab.active {
    display: block;
}

.splide__arrow {
    background: #d5d5d5 !important;
    color: #000;
    width: 40px !important;
    height: 40px !important;
    border: 0 !important;
    padding: 7px !important;
    outline: 0 !important;
}

.splide__arrow svg {
    stroke-width: 2 !important;
    width: 100% !important;
    height: 100% !important;
    fill: unset !important;
}

.splide__arrow svg path {
    fill: transparent;
}

.tab-content .splide__arrows {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 5px;
}

.tab-content .splide__arrow {
    position: static;
    transform: unset;
}

.splide__arrow:disabled {
    /* pointer-events: none !important; */
    opacity: 1 !important;
}

.lb-data .lb-number {
    opacity: 0 !important;
}
.carousel-inner .carousel-item div>img{
    animation:  unset !important;
}
.fixed_button {
    
    bottom: auto !important;
    margin-top: auto !important; /* Adjusts position dynamically */
} 	
        .slide-in {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 0.8s ease-out;
            width: 60vw;
            height: auto;
            margin: 2rem 0;
        }

        .slide-in.active {
        opacity: 1;
        }
        .locations-list {
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
             
        }

        .locations-list li {
            padding: 12px 25px;
            
            font-size: 16px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family:Inter Thin;
             justify-content: left; 
        }
        
.lb-data .lb-close {

    background-size: contain !important; 
    width:20px !important;
}
		        .footer {
            background-color:#fff;
            background-size: cover;
            padding-bottom: 1rem;
            padding-left: 3rem;
            padding-right: 3rem;
			color:#000;
        }

        .luxury-footer {
            background-color: #ffff;
            padding: 0px 5%; /* Generous padding */
            padding-bottom:15px;
            text-align: center;
            margin-top: auto;
            width: 100%;
            box-sizing: border-box;
            box-shadow: 0 -10px 15px -3px rgba(241, 192, 49, 0.2);
        }

        .luxury-footer a {
            text-decoration: none;
            color: #ffff;
            transition: color 0.3s ease;
        }

        .luxury-footer a:hover {
            color: #B08D57;
        }

        .footer-top {
            margin-bottom: 40px;
            
        }

        .footer-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.8em;
            color: #ffff;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .footer-logos {
            display: none; /* Hide the central logos */
        }

        .divider-element {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 40px auto;
            width: 90%;
            max-width: 900px;
        }

        .divider-element .line {
            height: 1px;
            background-color: #B08D57;
            flex-grow: 1;
            opacity: 0.6;
        }

        .divider-element svg {
            margin: 0 10px;
            min-width: 24px;
            min-height: 24px;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between; /* Distribute items to the left and right */
            max-width: 1200px; /* Max width for content to prevent stretching too much */
            margin: 25px auto -30px auto; /* Center the contact info block and provide top margin */
            padding: 0 20px; /* Padding for mobile safety */
        }

        .info-block {
            flex: 1; /* Allow blocks to grow */
            min-width: 280px; /* Minimum width before wrapping */
            text-align: left; /* Align text to the left within the block */
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Align logo and text to the start (left) */
            padding: 0 20px; /* Add internal padding for spacing from edges */
        }
        

        .info-block.right {
            align-items: flex-end; /* Align logo and text to the end (right) for the RERA block */
            text-align: right;
        }

        .info-block .label {
            font-family: 'Oswald', serif;
            font-weight: 300;
            color: #2d2d2d;
            display: block;
            margin-bottom: 8px;
            font-size: 1.1em;
            width: 100%; /* Ensure label takes full width for text-align */
        }

        .info-block p {
            font-family: 'Domine', sans-serif;
            font-size: 0.95em;
            color: #2d2d2d  ;
            line-height: 1.8;
            width: 100%; /* Ensure paragraph takes full width for text-align */
        }

        .info-block .block-logo {
            max-width: 100px;
            height: auto;
            margin-bottom: 20px;
            
            opacity: 0.9;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid #f1c031;
            margin-top: 40px;
        }

        .subtle-divider {
            border: none;
            border-top: 1px solid rgba(176, 141, 87, 0.4);
            width: 80%;
            max-width: 900px;
            margin: 0px auto 30px auto;
        }

        .copyright, .designer {
            font-size: 0.85em;
            color: #2d2d2d;
            margin-bottom: 0px;
        }

        .designer a {
            font-weight: 500;
            color: #4A4A4A;
        }

        .legal-links {
            margin-top: 10px;
            font-size: 1.0em;
            color: #6A6A6A;
        }

        .legal-links a {
            margin: 0 12px;
            position: relative;
            padding-bottom: 2px;
            color: #2d2d2d;
        }

        .legal-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 1px;
            background-color: #B08D57;
            transition: width 0.3s ease-out;
        }

        .legal-links a:hover::after {
            width: 100%;
        }

        .legal-links .separator {
            color: #999;
            font-size: 0.8em;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            .mobview{
                margin-left:33px;
            }
            .footer-heading {
                font-size: 1.5em;
            }

            .contact-info {
                flex-direction: column; /* Stack contact info blocks vertically */
                gap: 30px;
                align-items: center; /* Center items when stacked */
            }

            .info-block {
                align-items: center; /* Center logo and text for mobile */
                text-align: center;
                max-width: 100%; /* Allow blocks to take full width */
                padding: 0; /* Remove horizontal padding for mobile */
                padding-bottom:30px;
            }

            .info-block.right {
                align-items: center; /* Center for mobile */
                text-align: center;
            }

            .legal-links a {
                margin: 0 8px;
            }

            .legal-links .separator {
                display: none;
            }

            .legal-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .luxury-footer {
                padding: 40px 5%;
            }

            .footer-heading {
                font-size: 1.3em;
            }

            .subtle-divider {
                width: 90%;
            }
        }

/* Horizontal Line */
hr {
    width: 100%;
    margin: 15px auto;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
}

/* Bottom Section: Disclaimer, Copyright, and Links */
.footer-bottom {
    text-align: center;
    padding-top: 0px;
}

.disclaimer {
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.closebtn{
font-size:2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-logo-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-address,
    .footer-rera {
        text-align: center;
        padding: 10px 0;
    }

    .footer-logo {
        margin-bottom: 10px;
    }
}

        #rcorners1 {
        border-radius: 25px;
        background: #7a492e;
        padding: 20px; 
        width:80%;
	}
        #rcorners {
            border-radius: 25px;
  
            padding: 20px; 
            padding-right:20px; 
            width:60%;
            margin-left:auto;
            margin-right:auto;
        }

#rcorners ul {
  padding-left: 20px; /* Add space between the bullet points and border */
  margin: 0;
  line-height: 1.8; /* Increase spacing between list items */
}

#rcorners li {
  margin-bottom: 8px; /* Add spacing below each list item for better readability */
}
.responsive-text {
    text-align: justify;
    color:#4A4A4A;
    font-family:Domine;
}
        @media (max-width: 768px) {
    .locations-list {
        margin-left: -25px; /* Adjust this value as needed */
    }
        .responsive-text {
        text-align: left;
        padding:0 33px 0 37px;
        text-align: justify;
    }
        .desktop-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .table td{
        white-space: nowrap;
        font-size:0.9rem !important;
    }
     #rcorners1 {
    width: 130%; /* Adjust to full width for smaller screens */
    padding: 10px; /* Reduce padding for better fit */
	margin-left:-95px;
	height:auto !important;
  }
  #connectivitymob{
      padding-top:0px !important;
  }
  .artistic-impression {
    position: absolute;
    bottom:5px;
    left: 0px;
    background-color: rgba(128, 128, 128, 0.8);
    text-align:center;
    /* Grey background with transparency */
    padding: 1px 7px;
    /* Adjust padding as needed */
    color: white;
    /* Text color */
    font-size: 8px;
    /* Adjust font size as needed */
    line-height: 1;
    /* Ensure the text fits tightly within the padding */
    z-index: 1;
    /* Ensure the text is above the image */


}
.artistic-impression-about {
    position: absolute;
    bottom:5px;
    left: 36px;
    background-color: rgba(128, 128, 128, 0.8);
    text-align:center;
    /* Grey background with transparency */
    padding: 1px 7px;
    /* Adjust padding as needed */
    color: white;
    /* Text color */
    font-size: 9px;
    /* Adjust font size as needed */
    line-height: 1;
    /* Ensure the text fits tightly within the padding */
    z-index: 1;
    /* Ensure the text is above the image */


}

.footer {
        padding-bottom: 4rem;
        padding-left: 0;
        padding-right: 0;
    }
    
}
 
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-top
    {
        margin-bottom:-50px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer-address,
    .footer-rera,
    .footer-bottom {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-rera {
        margin-top: 0px;
    }

.footer-links {
    text-align: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px; /* Adds spacing between links */
    font-size:0.8rem !important;
    text-align: center;
        width: 100%;
}




    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-address p,
    .footer-rera p,
    .footer-bottom p,
    .footer-links a {
        text-align: center;
        width: 100%;
        font-size:0.9rem !important;
    }

}
    @media (max-width: 768px) { /* Target mobile screens */
        .location-map {
            width: 100% !important;
        }
        .contact-form-custom
        {
            padding-top:10px;
            width:100% !important;
        }
    }

@media (min-width: 992px) { /* Applies only for desktops and larger screens */
    .desktop-padding {
        padding-left: 120px;
        padding-right: 120px;
    }
    .responsive-text{
        padding-right:100px;
        
    }
}
.contact-form-custom {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    background: #61903e;
    padding: 2rem;
    width: 120%;
    box-shadow: 0 8px 24px 0 rgba(34,44,56,0.14), 0 1.5px 6px 0 rgba(0,0,0,0.12);
}

.contact-form-custom h2 {
    font-size: 2rem;
    letter-spacing: 1px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-align: center !important;
    text-shadow: 1px 1px 8px rgba(18,56,93,0.18);
}

.contact-form-custom .form-control {
    font-size: 0.95rem;
    max-width: 350px;
    margin-left: 0;
    display: block;
    box-shadow: 0 1px 4px rgba(18,56,93,0.09);
}

.contact-form-custom label {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom:2rem !important;
    
}
.mb-3, .my-3 {
    margin-bottom: 3rem !important;
}

.contact-form-custom button {
    font-size: 1.15rem;
    margin-top: 1.3rem;
    font-family: 'Oswald', sans-serif;
    max-width: 85px;
    margin-left: 0;
    font-weight: bold;
    color: #61903e;
    text-align: center !important;
    box-shadow: 0 2px 8px 0 rgba(34,44,56,0.12);
    transition: box-shadow 0.2s;
}

.contact-form-custom button:hover {
    box-shadow: 0 6px 16px 0 rgba(34,44,56,0.16);
}
.input-icon-wrap {
  position: relative;
  max-width: 350px;
}
.input-icon-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #61903e;
  font-size: 1.1rem;
  z-index: 2;
}
.input-icon-wrap .form-control {
  padding-left: 2.2rem; /* space for the icon */
}
/* Placeholder font family */


/* Button with smooth animation */
.btn-submit-center {
  margin: 1.3rem auto 0 auto;
  font-size: 1.15rem;
  font-family: 'Oswald', sans-serif;
  max-width: 85px;
  font-weight: bold;
  color: #61903e;
  text-align: center !important;
  box-shadow: 0 2px 8px 0 rgba(34,44,56,0.12);
  transition: 
    box-shadow 0.3s ease, 
    transform 0.3s ease, 
    background-color 0.3s ease, 
    color 0.3s ease;
}

.btn-submit-center:hover,
.btn-submit-center:focus {
  transform: scale(1.08);
  box-shadow: 0 6px 16px 0 rgba(34,44,56,0.23);
  color: #61903e;
  background: #fff;
  text-align:center;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  font-family: 'Domine', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  color: #949494;
  padding: 10px 0;
  display: block;

  animation: marqueeScroll 30s linear infinite;
}

.marquee-container:hover {
  animation-play-state: paused;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 40px;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

        .timeline-container {
             /* White card background */
            border-radius: 10px; /* Adjusted from 110px to 10px */
            padding: 40px 20px;
             /* Lighter shadow */
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        h1 {
            font-size: 2.2em;
            color: #8e44ad; /* Plum accent */
            margin-bottom: 40px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            padding-top: 60px; /* Space for pins and line */
            overflow-x: auto; /* Allow horizontal scrolling */
            padding-bottom: 20px;
            scroll-behavior: smooth; /* Smooth scrolling */
        }

        /* The horizontal connecting line */
        .timeline::before {
            content: '';
            position: absolute;
            top: 75px; /* Aligned with the bottom of the pin circle */
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 0;
        }

        .timeline-item {
            flex: 1; /* Distribute space evenly */
            min-width: 160px; /* Minimum width for each item */
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1; /* Pins above the line */
            padding: 0 10px;
            transition: transform 0.2s ease-out; /* Simple hover effect */
        }

        .timeline-item:hover {
            transform: translateY(-5px); /* Lift on hover */
        }

        .pin-wrapper {
            width: 70px;
            height: 70px;
            background-color: #fff; /* Plum background for the circle */
            border-radius: 50%; /* Perfect circle */
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            margin-bottom: 25px; /* Space below the pin */
            position: relative;
            z-index: 2; /* Ensures it's above the line */
            border: 2px solid #fff; /* White border */
            overflow: hidden; /* Ensure content doesn't overflow the circle */
        }

        .pin-wrapper img {
            width: 60%; /* Adjusted to fit within the circle with some padding */
            height: 80%; /* Adjusted to fit within the circle with some padding */
            object-fit: contain; /* 'contain' will scale the image down to fit without cropping */
            border-radius: 0; /* REMOVED rounded corners for the image itself */
            opacity:0.7;
        }

        .location-name {
            font-size: 1.1em;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .distance {
            font-size: 1em;
            color: #666;
            font-weight: 400;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 991px) {
            .timeline {
                justify-content: flex-start; /* Allow items to align left and scroll */
            }
            .timeline-item {
                min-width: 140px;
                padding: 0 8px;
            }
        }

        @media (max-width: 767px) {
            h1 {
                font-size: 1.8em;
                margin-bottom: 30px;
            }

            .timeline-container {
                padding: 30px 15px; /* Adjust padding for mobile */
            }

            .timeline {
                flex-direction: column; /* Stack items vertically */
                justify-content: flex-start;
                align-items: flex-start; /* Align items to the left in vertical view */
                padding-top: 0; /* No top padding for vertical line */
                padding-left: 20px; /* Space for the vertical line */
                overflow-x: hidden; /* No horizontal scrolling needed */
                position: relative;
            }

            /* Vertical connecting line for mobile */
            .timeline::before {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 55px; /* Aligned with the center of the pin circles */
                width: 2px;
                background-color: #e0e0e0;
                z-index: 0;
            }

            .timeline-item {
                width: 100%; /* Take full width */
                min-width: unset; /* Remove min-width constraint */
                flex-direction: row; /* Pin and text side-by-side */
                align-items: center; /* Align pin and text vertically in the row */
                padding: 20px 0; /* Vertical spacing between items */
                text-align: left; /* Align text to the left */
                justify-content: flex-start; /* Align contents to the start */
            }

            .pin-wrapper {
                width: 50px; /* Smaller pins for mobile */
                height: 50px;
                margin-bottom: 0; /* No bottom margin needed */
                margin-right: 20px; /* Space between pin and text */
                flex-shrink: 0; /* Prevent shrinking */
                border: 1px solid #e0e0e0; /* Lighter border */
            }

            .pin-wrapper img {
                width: 60%; /* Adjust image size for smaller pins */
                height: 60%;
            }

            .location-name {
                font-size: 1em;
                margin-bottom: 0; /* Reset margin for location name */
                line-height: 1.2;
                white-space: normal; /* Allow text to wrap if necessary */
                text-align: left; /* Align text to the left for mobile */
            }

            .distance {
                font-size: 0.9em;
                margin-left: 0; /* Remove left margin from distance */
                margin-top: 4px; /* Add a small top margin to separate from name */
                white-space: normal; /* Allow distance text to wrap if necessary */
            }

            /* Flex container for text content next to pin */
            .timeline-item > div:not(.pin-wrapper) {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 575px) {
            .timeline-container {
                padding: 30px 10px;
            }
            h1 {
                font-size: 1.5em;
                letter-spacing: 1px;
            }
            .timeline::before {
                left: 40px; /* Adjust vertical line position */
            }
            .pin-wrapper {
                width: 45px;
                height: 45px;
                margin-right: 15px;
                margin-bottom:25px;
            }
            .timeline-item {
                padding: 15px 0;
            }
        }