/*!
 * Project_Name: Themezy Modern Architecture
 * Author: Themezy
 * Email: info@themezy.com
 * URL: http://themezy.com
 */
/*=========================================== 
 * Importing CSS Libraries
 *===========================================*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }
/* Overlay - Blurred Background */
#overlay-popup {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 999;
}


/* Popup Box - Centered Modal */
#popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 400px; /* Default width for larger screens */
  max-width: 90%; /* Ensures it doesn't exceed screen width */
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.4s ease-in-out, opacity 0.4s;
  opacity: 0;
}

/* Close Button */
.btn-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Smaller popup on mobile screens */
@media screen and (max-width: 600px) {
  #popup-box {
      width: 90%;  /* Make it more compact */
      max-width: 320px; /* Smaller size on mobile */
      padding: 15px; /* Reduce padding */
  }

  #popup-box h2 {
      font-size: 1.2rem; /* Reduce heading size */
  }

  #popup-box p {
      font-size: 0.9rem; /* Adjust text size */
  }

  input, textarea {
      font-size: 14px; /* Adjust input field size */
  }

  button {
      font-size: 14px;
      padding: 8px 12px;
  }
}

#popup-box p {
  font-size: 18px; /* Adjust the size as needed */
  line-height: 1.5; /* Improves readability */
  color: #212121;
}

#popup-box form {
  display: flex;
  flex-direction: column; /* Stacks inputs vertically */
  gap: 10px; /* Adds space between input fields */
}

#popup-box form input, form textarea {
  width: 100%; /* Ensures all inputs take full width */
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}





/* Show Animation */
#popup-box.popup-show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}


.info-text {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Creative Circular Button */
.circle-button {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #e0e0e0, #c8c8c8);
  box-shadow: 5px 5px 10px #aaaaaa, -5px -5px 10px #ffffff;
  color: #444;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.circle-button:hover {
  background: linear-gradient(145deg, #d1d1d1, #b8b8b8);
  transform: scale(1.15);
  box-shadow: 8px 8px 15px #aaaaaa, -8px -8px 15px #ffffff;
}

/* Form Styling */
#form-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#form-contact input,
#form-contact textarea {
  width: 90%;
  max-width: 500px;
  margin: 8px 0;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #f5f5f5;
  box-shadow: inset 3px 3px 5px #d1d1d1, inset -3px -3px 5px #ffffff;
  font-size: 16px;
  color: #333;
}

#form-contact input:focus,
#form-contact textarea:focus {
  outline: none;
  box-shadow: inset 5px 5px 10px #d1d1d1, inset -5px -5px 10px #ffffff;
}
/* Download Brochure Section */
.info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40vh; /* Makes sure it's centered in the viewport */
  text-align: center;
  margin-top: 2px;
  
}

.info-text {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-left: 0;
}

/* Creative Circular Button */
.circle-button {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #e0e0e0, #c8c8c8);
  box-shadow: 5px 5px 10px #aaaaaa, -5px -5px 10px #ffffff;
  color: #444;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.circle-button:hover {
  background: linear-gradient(145deg, #d1d1d1, #b8b8b8);
  transform: scale(1.1);
  box-shadow: 8px 8px 15px #aaaaaa, -8px -8px 15px #ffffff;
}


 /* Error Message */
 .error {
  color: red;
  font-size: 14px;
  display: none;
  margin-bottom: 10px;
}


/* Form Styling */
#form-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#form-contact input,
#form-contact textarea {
  width: 90%;
  max-width: 500px;
  margin: 8px 0;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #f5f5f5;
  box-shadow: inset 3px 3px 5px #d1d1d1, inset -3px -3px 5px #ffffff;
  font-size: 16px;
  color: #333;
}

#form-contact input:focus,
#form-contact textarea:focus {
  outline: none;
  box-shadow: inset 5px 5px 10px #d1d1d1, inset -5px -5px 10px #ffffff;
}

/* Ensure Responsiveness */
@media (max-width: 768px) {
  .circle-button {
    width: 120px;
    height: 120px;
    font-size: 12px;
  }
}


audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

  .site-header {
    background-color: white;
  width: 100%;  
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; 
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%; /* Ensure full width */}

html,
button,
input,
select,
textarea {
  font-family:"Roboto Condensed", "Open Sans", sans-serif; }

  body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
img, iframe {
    max-width: 100%;
    height: auto;
}
a {
  background: transparent; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.75em;
  margin: 2.33em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #f4c545;
  color: #000; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

q:before,
q:after {
  content: '';
  content: none; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid #9c9c9c;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0;
  white-space: normal; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline; }

button,
input {
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
       box-sizing: border-box; }

/*
 * Global Styles
 */
body {
  background-color: #212121;
  color: #868484;
  font-family: "Roboto Condensed", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: 0 0 20px; }

hr {
  border: none;
  border-bottom: 1px solid #777; }

ul, ol {
  margin: 0;
  padding-left: 0; }

a {
  text-decoration: none;
  color: #f4c545; }

address {
  font-style: normal; }

p {
  margin-top: 0; }

form input, form textarea, form select {
  outline: none;
  border: 2px solid #383838;
  padding: 10px;
  background: none;
  margin-bottom: 10px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  color: rgb(0, 0, 0);
  outline: none; }
  form input:hover, form input:focus, form textarea:hover, form textarea:focus, form select:hover, form select:focus {
    border-color: #f4c545; }
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
form textarea {
  resize: vertical; }
  form input[type="submit"], form button, form input[type="reset"] {
    border: 2px solid #f4c545;
    background: none;
    padding: 10px 20px;
    position: relative;
    margin: 20px 0;
    display: block;  /* Ensure it's properly displayed */
    width: 60%;  /* Full width for better visibility on mobile */
    text-align: center; 
    color: #f4c545 !important; /* Make sure text is visible */
    font-size: 16px; 
    font-weight: bold;
    transition: .3s ease;
  }
/*
 * Reusable Components Style
 */
.button, form input[type="submit"], form button, form input[type="reset"] {
  border: 2px solid #f4c545;
  background: none;
  padding: 10px 20px;
  position: relative;
  margin: 20px 0;
  display: inline-block;
  -webkit-transition: .3s ease;
          transition: .3s ease; }
  .button:before, form input[type="submit"]:before, form button:before, form input[type="reset"]:before, .button:after, form input[type="submit"]:after, form button:after, form input[type="reset"]:after {
    content: " ";
    width: 20px;
    height: 20px;
    position: absolute;
    background: #ffffff;
    -webkit-transition: .3s ease;
            transition: .3s ease; }
  .button:hover, form input[type="submit"]:hover, form button:hover, form input[type="reset"]:hover {
    border-color: rgb(190, 139, 0);
    color: rgb(190, 139, 0); }
    .button:hover:before, form input[type="submit"]:hover:before, form button:hover:before, form input[type="reset"]:hover:before, .button:hover:after, form input[type="submit"]:hover:after, form button:hover:after, form input[type="reset"]:hover:after {
      border-color: white; }
  .button:before, form input[type="submit"]:before, form button:before, form input[type="reset"]:before {
    border-bottom: 2px solid #f4c545;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: -10px;
    left: -10px; }
  .button:after, form input[type="submit"]:after, form button:after, form input[type="reset"]:after {
    border-top: 2px solid #f4c545;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: -10px;
    right: -10px; }

.button-back {
  display: inline-block;
  padding: 10px 30px;
  margin-bottom: 50px;
  position: relative;
  border: 2px solid #383838;
  color: #9c9c9c;
  text-transform: uppercase; }
  .button-back img {
    margin-right: 10px; }
  .button-back:before, .button-back:after {
    content: " ";
    width: 20px;
    height: 20px;
    position: absolute;
    background: #212121; }
  .button-back:before {
    border-bottom: 2px solid #383838;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: -10px;
    left: -10px; }
  .button-back:after {
    border-top: 2px solid #383838;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: -10px;
    right: -10px; }



.contact-detail {
  padding: 30px 0;
 }
  .contact-detail address, .contact-detail .phone, .contact-detail .email {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    color: #9c9c9c; }
    .contact-detail address p, .contact-detail .phone p, .contact-detail .email p {
      margin: 0;
      font-size: 14px;
      font-size: 1em;
      line-height: 1.5;
      display: inline-block;
      vertical-align: middle; }
  .contact-detail .contact-icon {
    display: inline-block;
    vertical-align: middle;
    width:40px;
    height: 40px;
    border: 2px solid #383838;
    text-align: center;
    position: relative;
    margin-right: 2px; }
    .contact-detail .contact-icon:before, .contact-detail .contact-icon:after {
      content: " ";
      width: 10px;
      height: 10px;
      position: absolute;
      background: #ffffff; }
    .contact-detail .contact-icon:before {
      border-bottom: 2px solid #383838;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      top: -5px;
      left: -5px; }
    .contact-detail .contact-icon:after {
      border-top: 2px solid #383838;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      bottom: -5px;
      right: -5px; }
    .contact-detail .contact-icon img {
      display: inline-block;
      width: 20px;
      height: 22px;
      margin-top: 6px; }

.contact-form input:not([type="submit"]), .contact-form textarea {
  width: 100%; }
.contact-form .text-right {
  text-align: right; }
.contact-form button {
  position: relative;
  color: #f4c545; }
  .contact-form button:before, .contact-form button:after {
    content: " ";
    width: 20px;
    height: 20px;
    position: absolute;
    background: #ffffff; }
  .contact-form button:before {
    border-bottom: 2px solid #f4c545;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: -10px;
    left: -10px; }
  .contact-form button:after {
    border-top: 2px solid #f4c545;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: -10px;
    right: -10px; }

.container {
 
  width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  zoom: 1; }

  .container:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  zoom: 1; }
  .container-fluid:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }

.row {
  margin-left: -15px;
  margin-right: -15px;
  zoom: 1; }
  .row:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.3333333333%; }

.col-xs-2 {
  width: 16.6666666667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.3333333333%; }

.col-xs-5 {
  width: 41.6666666667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.3333333333%; }

.col-xs-8 {
  width: 66.6666666667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.3333333333%; }

.col-xs-11 {
  width: 91.6666666667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.3333333333%; }

.col-xs-pull-2 {
  right: 16.6666666667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.3333333333%; }

.col-xs-pull-5 {
  right: 41.6666666667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.3333333333%; }

.col-xs-pull-8 {
  right: 66.6666666667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.3333333333%; }

.col-xs-pull-11 {
  right: 91.6666666667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.3333333333%; }

.col-xs-push-2 {
  left: 16.6666666667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.3333333333%; }

.col-xs-push-5 {
  left: 41.6666666667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.3333333333%; }

.col-xs-push-8 {
  left: 66.6666666667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.3333333333%; }

.col-xs-push-11 {
  left: 91.6666666667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.3333333333%; }

.col-xs-offset-2 {
  margin-left: 16.6666666667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.3333333333%; }

.col-xs-offset-5 {
  margin-left: 41.6666666667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.3333333333%; }

.col-xs-offset-8 {
  margin-left: 66.6666666667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.3333333333%; }

.col-xs-offset-11 {
  margin-left: 91.6666666667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }

  .col-sm-1 {
    width: 8.3333333333%; }

  .col-sm-2 {
    width: 16.6666666667%; }

  .col-sm-3 {
    width: 25%; }

  .col-sm-4 {
    width: 33.3333333333%; }

  .col-sm-5 {
    width: 41.6666666667%; }

  .col-sm-6 {
    width: 50%; }

  .col-sm-7 {
    width: 58.3333333333%; }

  .col-sm-8 {
    width: 66.6666666667%; }

  .col-sm-9 {
    width: 75%; }

  .col-sm-10 {
    width: 83.3333333333%; }

  .col-sm-11 {
    width: 91.6666666667%; }

  .col-sm-12 {
    width: 100%; }

  .col-sm-pull-0 {
    right: auto; }

  .col-sm-pull-1 {
    right: 8.3333333333%; }

  .col-sm-pull-2 {
    right: 16.6666666667%; }

  .col-sm-pull-3 {
    right: 25%; }

  .col-sm-pull-4 {
    right: 33.3333333333%; }

  .col-sm-pull-5 {
    right: 41.6666666667%; }

  .col-sm-pull-6 {
    right: 50%; }

  .col-sm-pull-7 {
    right: 58.3333333333%; }

  .col-sm-pull-8 {
    right: 66.6666666667%; }

  .col-sm-pull-9 {
    right: 75%; }

  .col-sm-pull-10 {
    right: 83.3333333333%; }

  .col-sm-pull-11 {
    right: 91.6666666667%; }

  .col-sm-pull-12 {
    right: 100%; }

  .col-sm-push-0 {
    left: auto; }

  .col-sm-push-1 {
    left: 8.3333333333%; }

  .col-sm-push-2 {
    left: 16.6666666667%; }

  .col-sm-push-3 {
    left: 25%; }

  .col-sm-push-4 {
    left: 33.3333333333%; }

  .col-sm-push-5 {
    left: 41.6666666667%; }

  .col-sm-push-6 {
    left: 50%; }

  .col-sm-push-7 {
    left: 58.3333333333%; }

  .col-sm-push-8 {
    left: 66.6666666667%; }

  .col-sm-push-9 {
    left: 75%; }

  .col-sm-push-10 {
    left: 83.3333333333%; }

  .col-sm-push-11 {
    left: 91.6666666667%; }

  .col-sm-push-12 {
    left: 100%; }

  .col-sm-offset-0 {
    margin-left: 0%; }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }

  .col-sm-offset-3 {
    margin-left: 25%; }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }

  .col-sm-offset-6 {
    margin-left: 50%; }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }

  .col-sm-offset-9 {
    margin-left: 75%; }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }

  .col-sm-offset-12 {
    margin-left: 100%; } }
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }

  .col-md-1 {
    width: 8.3333333333%; }

  .col-md-2 {
    width: 16.6666666667%; }

  .col-md-3 {
    width: 25%; }

  .col-md-4 {
    width: 33.3333333333%; }

  .col-md-5 {
    width: 41.6666666667%; }

  .col-md-6 {
    width: 50%; }

  .col-md-7 {
    width: 58.3333333333%; }

  .col-md-8 {
    width: 66.6666666667%; }

  .col-md-9 {
    width: 75%; }

  .col-md-10 {
    width: 83.3333333333%; }

  .col-md-11 {
    width: 91.6666666667%; }

  .col-md-12 {
    width: 100%; }

  .col-md-pull-0 {
    right: auto; }

  .col-md-pull-1 {
    right: 8.3333333333%; }

  .col-md-pull-2 {
    right: 16.6666666667%; }

  .col-md-pull-3 {
    right: 25%; }

  .col-md-pull-4 {
    right: 33.3333333333%; }

  .col-md-pull-5 {
    right: 41.6666666667%; }

  .col-md-pull-6 {
    right: 50%; }

  .col-md-pull-7 {
    right: 58.3333333333%; }

  .col-md-pull-8 {
    right: 66.6666666667%; }

  .col-md-pull-9 {
    right: 75%; }

  .col-md-pull-10 {
    right: 83.3333333333%; }

  .col-md-pull-11 {
    right: 91.6666666667%; }

  .col-md-pull-12 {
    right: 100%; }

  .col-md-push-0 {
    left: auto; }

  .col-md-push-1 {
    left: 8.3333333333%; }

  .col-md-push-2 {
    left: 16.6666666667%; }

  .col-md-push-3 {
    left: 25%; }

  .col-md-push-4 {
    left: 33.3333333333%; }

  .col-md-push-5 {
    left: 41.6666666667%; }

  .col-md-push-6 {
    left: 50%; }

  .col-md-push-7 {
    left: 58.3333333333%; }

  .col-md-push-8 {
    left: 66.6666666667%; }

  .col-md-push-9 {
    left: 75%; }

  .col-md-push-10 {
    left: 83.3333333333%; }

  .col-md-push-11 {
    left: 91.6666666667%; }

  .col-md-push-12 {
    left: 100%; }

  .col-md-offset-0 {
    margin-left: 0%; }

  .col-md-offset-1 {
    margin-left: 8.3333333333%; }

  .col-md-offset-2 {
    margin-left: 16.6666666667%; }

  .col-md-offset-3 {
    margin-left: 25%; }

  .col-md-offset-4 {
    margin-left: 33.3333333333%; }

  .col-md-offset-5 {
    margin-left: 41.6666666667%; }

  .col-md-offset-6 {
    margin-left: 50%; }

  .col-md-offset-7 {
    margin-left: 58.3333333333%; }

  .col-md-offset-8 {
    margin-left: 66.6666666667%; }

  .col-md-offset-9 {
    margin-left: 75%; }

  .col-md-offset-10 {
    margin-left: 83.3333333333%; }

  .col-md-offset-11 {
    margin-left: 91.6666666667%; }

  .col-md-offset-12 {
    margin-left: 100%; } }
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }

  .col-lg-1 {
    width: 8.3333333333%; }

  .col-lg-2 {
    width: 16.6666666667%; }

  .col-lg-3 {
    width: 25%; }

  .col-lg-4 {
    width: 33.3333333333%; }

  .col-lg-5 {
    width: 41.6666666667%; }

  .col-lg-6 {
    width: 50%; }

  .col-lg-7 {
    width: 58.3333333333%; }

  .col-lg-8 {
    width: 66.6666666667%; }

  .col-lg-9 {
    width: 75%; }

  .col-lg-10 {
    width: 83.3333333333%; }

  .col-lg-11 {
    width: 91.6666666667%; }

  .col-lg-12 {
    width: 100%; }

  .col-lg-pull-0 {
    right: auto; }

  .col-lg-pull-1 {
    right: 8.3333333333%; }

  .col-lg-pull-2 {
    right: 16.6666666667%; }

  .col-lg-pull-3 {
    right: 25%; }

  .col-lg-pull-4 {
    right: 33.3333333333%; }

  .col-lg-pull-5 {
    right: 41.6666666667%; }

  .col-lg-pull-6 {
    right: 50%; }

  .col-lg-pull-7 {
    right: 58.3333333333%; }

  .col-lg-pull-8 {
    right: 66.6666666667%; }

  .col-lg-pull-9 {
    right: 75%; }

  .col-lg-pull-10 {
    right: 83.3333333333%; }

  .col-lg-pull-11 {
    right: 91.6666666667%; }

  .col-lg-pull-12 {
    right: 100%; }

  .col-lg-push-0 {
    left: auto; }

  .col-lg-push-1 {
    left: 8.3333333333%; }

  .col-lg-push-2 {
    left: 16.6666666667%; }

  .col-lg-push-3 {
    left: 25%; }

  .col-lg-push-4 {
    left: 33.3333333333%; }

  .col-lg-push-5 {
    left: 41.6666666667%; }

  .col-lg-push-6 {
    left: 50%; }

  .col-lg-push-7 {
    left: 58.3333333333%; }

  .col-lg-push-8 {
    left: 66.6666666667%; }

  .col-lg-push-9 {
    left: 75%; }

  .col-lg-push-10 {
    left: 83.3333333333%; }

  .col-lg-push-11 {
    left: 91.6666666667%; }

  .col-lg-push-12 {
    left: 100%; }

  .col-lg-offset-0 {
    margin-left: 0%; }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }

  .col-lg-offset-3 {
    margin-left: 25%; }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }

  .col-lg-offset-6 {
    margin-left: 50%; }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }

  .col-lg-offset-9 {
    margin-left: 75%; }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }

  .col-lg-offset-12 {
    margin-left: 100%; } }
@-ms-viewport {
  width: device-width; }
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }

  table.visible-xs {
    display: table; }

  tr.visible-xs {
    display: table-row !important; }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }

  table.visible-sm {
    display: table; }

  tr.visible-sm {
    display: table-row !important; }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }

  table.visible-md {
    display: table; }

  tr.visible-md {
    display: table-row !important; }

  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }

  table.visible-lg {
    display: table; }

  tr.visible-lg {
    display: table-row !important; }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }
.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }

  table.visible-print {
    display: table; }

  tr.visible-print {
    display: table-row !important; }

  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }
.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }
/*
 * Header Styles
 */
 .site-header .container {
  max-width: 100%; /* Override any fixed width */
    width: 100%;
   display: flex;
    justify-content: space-between;
    align-items: center;
     /* Add padding for spacing */
    margin-right: 40px;
}
.site-header {
  zoom: 1;
  padding:  0; /* Reduced padding for a smaller header */
 }
  .site-header:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }

#branding {
  margin-top: 10px;
  display: flex;
  align-items: center; 
  gap: 10px;}

  #branding .logo, #branding .logo-text {
    display: inline-block;
    vertical-align: middle; }

    /* Default styles for the logo */
.logo {
  max-width: 200px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  display: block;
  margin-left: 30px;
}

  #branding .logo {
    
    height: 70px; /* Adjust logo size */
    width: 70px;
   }
  #branding .site-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0; }

    #branding .site-title a {
      color: white; }

  #branding .site-description {
    font-size: 9px;
    color: #585858; }



      .main-navigation {
        order: 2; /* Moves navigation to the right */
        margin-left: 20px; /* Pushes nav to the far right */
        
        float: right;
        margin-top: 30px; 
        gap: 15px;
        
       }
      .main-navigation a {
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        transition: color 0.3s ease-in-out;
      margin: 0px 15px;
      
      
    }

      .main-navigation a.phone::before,
      .main-navigation a.email::before {
        font-family: "Font Awesome 5 Free"; /* FontAwesome icons */
     font-weight: 900;
    margin-right: 10px;
}

.main-navigation a:hover {
    color: #ffcc00; /* Hover color */
}


  .mobile-navigation {
    display: none; /* Hidden by default */
    background: white;
    padding: 10px;
    position: absolute;
    width: 100%;
    top: 50px; /* Adjust based on your design */
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  .mobile-navigation.open {
    display: block;
}

.mobile-navigation {
  display: none; /* Hide mobile menu by default */
}


  @media screen and (min-width: 991px) {
    .mobile-navigation {
      display: none !important; } }
  .mobile-navigation .menu {
    list-style: none;
    padding: 20px;
    border-top: 2px solid #f4c545;
    border-bottom: 2px solid #f4c545;
    text-transform: uppercase; }
    .mobile-navigation .menu a {
      padding: 10px 0;
      display: block;
      color: #d3d3d3; }
    .mobile-navigation .menu .current-menu-item a {
      color: #f4c545; }

      

      .hero-slider {
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f4f4f4; /* Fallback background */
        width: 100vw;
        height: 100vh;
        max-width: 100vw; /* Ensures full width */
        margin: 0;
        padding: 0;
      }
      
      .hero-slider .slides {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
      }
      
    
      .hero-slider .slides li {
        min-height: 100vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    flex: 1;


      }
      
      /* Slide Titles */
      .hero-slider .slide-title {
        font-size: 36px;
        font-size: 2.571em;
        margin-top: 200px;
        letter-spacing: 3px;
      }
      
      .hero-slider .slide-title span {
        display: inline-block;
        padding: 10px 15px;
        text-transform: uppercase;
        background: #212121;
        color: white;
        margin-bottom: 10px;
      }
      
      /* Ensuring images fit properly */
      .hero-slider .slides img {
        width: auto; /* Keeps the original width */
        height: auto; /* Keeps the original height */
        max-width: 100%; /* Ensures the image doesn't overflow the container */
        max-height: 100%; /* Ensures the image doesn't overflow the container */
        display: block; /* Prevents extra space below the image */
      }
      
      /* Navigation Styles */
      .hero-slider .flex-direction-nav {
        position: absolute;
        bottom: 200px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 99;
        height: 40px;
        list-style: none;
        padding: 0 15px;
      }
      
      /* Responsive Navigation Widths */
      @media screen and (min-width: 768px) {
        .hero-slider .flex-direction-nav {
          width: 750px;
        }
      }
      
      @media screen and (min-width: 992px) {
        .hero-slider .flex-direction-nav {
          width: 970px;
        }
      }
      
      @media screen and (min-width: 1200px) {
        .hero-slider .flex-direction-nav {
          width: 1170px;
        }
      }
      
      .hero-slider .flex-direction-nav li {
        display: inline-block;
        margin-right: 10px;
      }
      
      .hero-slider .flex-direction-nav li a {
        width: 64px;
        height: 64px;
        display: block;
        color: white;
        text-align: center;
        line-height: 2;
        font-size: 30px;
        font-size: 2.142em;
      }
      
      .hero-slider .flex-direction-nav li a.flex-prev {
        background: url("images/prev.png") no-repeat center;
      }
      
      .hero-slider .flex-direction-nav li a.flex-next {
        background: url("images/next.png") no-repeat center;
      }
      
      /* ============================= */
      /* 🔹 Desktop vs Mobile Handling */
      /* ============================= */
      
      /* By default, show desktop slider and hide mobile slider */
      .mobile-slider {
        display: none;
      }
      
      /* On smaller screens, show mobile slider and hide desktop slider */
      @media (max-width: 768px) {
        .desktop-slider {
          display: none;
        }
      
        .mobile-slider {
          display: block;
        }
      }
      
.fullwidth-block {
  padding: 50px 0; 
  background-color: white;
  display: flex;
  /* width: 100%; Ensures full width */
  justify-content: center;}

  .fullwidth-block.image-block {
    min-height: 300px; }

    /* .container-fluid.container-inset-0.isotope-wrap {
      width: 2000px;  /* Set your desired width 
       height: 500px;  /* Set your desired height 
      margin: 0 auto; /* Center it horizontally 
      overflow: hidden; /* Prevent content overflow 
  } */
    

 
.separator {
  border: none;
  border-top: 1px solid #383838;
  /* margin: 50px 0; */
  clear: both; }

  .thumbnail-mary {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    transition: transform 0.3s ease-in-out;
}

.lazy-image {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.lazy-image.show {
  opacity: 1;
  transform: translateY(0);
}

.thumbnail-mary img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    display: grid;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.05);
    
}

.thumbnail-mary-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 15px;
    transition: bottom 0.2s ease-in-out;
}

.thumbnail-mary-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.thumbnail-mary-location {
    font-size: 14px;
    margin-top: 5px;
}

.thumbnail-mary:hover img {
    transform: scale(1.05);
}

.thumbnail-mary:hover .thumbnail-mary-caption {
    bottom: 0;
}
 
/* .container{
  width: 100%;
  max-width: 800PX;
  height: 500PX;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  transition: all 400ms;

} */

/* .card{
  flex: 1;
  height: 100%;
  transition: all 400ms;
  cursor: pointer;
}

.card:nth-child(odd){
  translate: 0 -20px;
}

.card:nth-child(even){
  translate: 0 -20px;
}


.card:not(:hover){
  filter: grayscale(100%);
}

.card:hover{
  flex: 3;
} */

/* Ensure grid alignment */
.isotope {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 2px;
  margin: 2px;
  gap: 0; /* Ensure no extra space */
}

.isotope-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  padding-bottom: 2px;
  margin: 0;
  aspect-ratio: 16/9; /* Maintain aspect ratio */

}


/* Positioning the third image */
/* .isotope-item:nth-child(3) {
  position: absolute;
  top: 100% fixed; /* Move it down to align with the second image 
  left:  50% fixed; /* Align it with the right edge of the second image 
  
} */
/* Responsive Design */
@media (max-width: 768px) {
  .thumbnail-mary img {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .section-title {
      font-size: 22px;
  }
}


@media (max-width: 768px) { /* Target mobile screens */
  .thumbnail-mary:hover img {
      transform: none; /* Disable zoom effect */
  }

  .thumbnail-mary-caption {
      bottom: 0 !important; /* Always visible */
      opacity: 1;
  }

  .thumbnail-mary:hover .thumbnail-mary-caption {
      bottom: 0;
  }
}









/* .project {
  margin-bottom: 30px; }
  .project .project-thumbnail {
    margin-bottom: 20px; }
    .project .project-thumbnail img {
      max-width: 100%;
      display: block; }
  .project .project-title {
    font-size: 18px;
    font-size: 1.2857142857em;
    font-weight: 300;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #f4c545;
    letter-spacing: 2px; }
  .project .project-subtitle {
    font-size: 12px;
    font-size: 0.8571428571em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block; } */

    
.latest-projects-section .container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* .fullwidth-block {
  width: auto;
  padding: 0;
  overflow: hidden;
  display: flex;
} */

    .fullwidth-block.latest-projects-section .row {
      display: flex;
      flex-wrap: wrap; /* Flex-wrap for mobile responsiveness */
      justify-content: space-between;
      gap: 20px; /* Add space between items */
    }
    .project {
      /* width: calc(33.333% - 100px);
      display: flex;
      flex-direction: column;   Stack content vertically inside each project 
      align-items: center;   Center the content horizontally 
      box-sizing: border-box; */
      width: 100%;
      display: flex;
      flex-direction: column; /* Stack content vertically inside each project */
      align-items: center; /* Center the content horizontally */
      box-sizing: border-box;
    }
    
    .project-thumbnail {
      width: 100%;  /* Ensure full width of the image */
      height: auto;  /* Maintain aspect ratio */
      object-fit: cover; /* Ensures the image covers the area */
    }
    
    .project-title, .project-subtitle, .project p {
      text-align: center;  /* Center text content */
      margin-top: 10px;
    }
    
    .more-link {
      display: block;
      margin-top: 10px;
    }

    
    /* Project Images Fade-in Effect */
/* Container for project items */
.project-container {
  display: flex;
  flex-direction: column;  /* Stacks items vertically */
  align-items: center;     /* Centers items horizontally */
  justify-content: flex-start; /* Aligns items to the top */
  margin: 0 auto;
  padding: 20px;
  gap: 20px;  /* Adds spacing between items */
}

.project {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When visible, fade in and move up */
.project.visible {
  opacity: 1;
  transform: translateY(0);
  
}

/* Slide-in effect */
.project.slide-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect: each project appears with a slight delay */
.project:nth-child(1) { transition-delay: 0.2s; }
.project:nth-child(2) { transition-delay: 0.6s; }
.project:nth-child(3) { transition-delay: 0.10s; }
.project:nth-child(4) { transition-delay: 0.14s; }

/* Hover effect: Scale up and add shadow */
.project:hover {
  transform: none !important;
}


/* /////////////////i will delete it soon////////////////////////////////*/
/* Media Queries for Responsiveness */
@media screen and (min-width: 768px) {
  /* Hero Slider for tablets and small screens */
  .hero-slider .flex-direction-nav {
    bottom: 20px;
  }

  .project {
    width: calc(50% - 20px); /* Two columns on tablets */
  }
}

@media screen and (min-width: 992px) {
  /* Hero Slider for medium screens */
  .hero-slider .flex-direction-nav {
    bottom: 40px;
  }

  .project {
    width: calc(33.333% - 20px); /* Three columns on larger screens */
  }
}

@media screen and (min-width: 1200px) {
  /* Hero Slider for large screens */
  .hero-slider .flex-direction-nav {
    bottom: 50px;
  }

  .project {
    width: calc(33.333% - 20px); /* Maintain three columns on large screens */
  }
}


.section-title {
  font-size: 2em;
  font-weight: bold;
  color: #dea815;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: center;
}

.testimonial-slider {
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  width: 100%;
  min-height: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .testimonial-slider {
    max-width: 100%;
    padding: 0px; /* Reduce padding for better fit */
    box-shadow: none;
    background: transparent;
  }
}

.testimonial-slider ul {
  list-style: none;
  padding: 0;
}

blockquote {
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  padding: 20px;
  background: #fff;
  border-left: 5px solid #d5a214;
  border-radius: 5px;
}

blockquote h1, blockquote h2 {
  font-size: 28px;
  color: #99acf4;
  font-weight: bold;
  margin-top: 20px;
}

blockquote p {
  font-size: 18px;
  color: #444;
  font-weight: bold;
}

blockquote ul {
  font-size: 18px;
  padding-left: 20px;
}

blockquote ul li {
  margin-bottom: 5px;
}

cite {
  font-size: 20px;
  font-weight: bold;
  color: #e6dcdf;
  display: block;
  text-align: right;
  margin-top: 20px;
}

hr {
  border: 1px solid #f3f2ef;
}

.testimonial-slider .slides {
  list-style: none;
  margin-bottom: 30px;
  zoom: 1;
}

.testimonial-slider .slides:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.testimonial-slider blockquote {
  margin: 0;
}

.testimonial-slider blockquote cite {
  display: block;
  margin-top: 20px;
  color: #8e6800;
  font-style: normal;
}

.testimonial-slider .flex-control-nav {
  list-style: none;
}

.testimonial-slider .flex-control-nav li {
  display: inline-block;
  margin-right: 5px;
}

.testimonial-slider .flex-control-nav li a {
  overflow: hidden;
  text-indent: -9999px;
  width: 14px;
  height: 14px;
  display: block;
  background: url(images/paging-inactive.png) no-repeat;
  cursor: pointer;
}

.testimonial-slider .flex-control-nav li a.flex-active {
  background: url(images/paging-active.png) no-repeat;
}

.fade-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.slide-in-left {
  opacity: 1;
  transform: translateX(0);
}
.description-text {
  text-align: center; /* Centers the text */
  font-size: 12px; /* Adjust font size */
  color: #333; /* Dark gray color for readability */
  margin: 10px auto; /* Adds spacing above and below */
  max-width: 80%; /* Limits width for better readability */
  line-height: 1.3; /* Improves readability */
}

          
.news {
  list-style: none; }
  .news .date {
    font-size: 13px;
    font-size: 0.9285714286em;
    color: #f4c545; }
  .news .entry-title {
    font-size: 14px;
    font-size: 1em;
    font-weight: 300; }
    .news .entry-title a {
      color: #d3d3d3; }
      .news .entry-title a:hover {
        color: #f4c545; }

.news-list {
  list-style: none;
  margin: 0 -15px;
  zoom: 1; }
  .news-list:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }
  .news-list li {
    width: 25%;
    padding: 0 15px;
    float: left;
    margin-bottom: 30px; }
    @media screen and (max-width: 990px) {
      .news-list li {
        width: 50%; } }
    @media screen and (max-width: 640px) {
      .news-list li {
        width: 100%; } }
    .news-list li img {
      max-width: 100%; }
  .news-list figure {
    margin-bottom: 20px; }
  .news-list .entry-title {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 18px;
    font-size: 1.2857142857em; }
  .news-list .date {
    font-size: 12px;
    font-size: 0.8571428571em;
    display: block;
    margin-bottom: 20px; }

.page {
  padding: 50px 0; 
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
  .page .align-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px; }
  .page .align-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px; }
  .page .entry-title {
    font-size: 36px;
    font-size: 2.5714285714em;
    list-style: 3px;
    font-weight: 300;
    text-transform: uppercase; }
  .page p {
    font-size: 16px;
    font-size: 1.1428571429em;
    line-height: 2; }

.feature-numbered {
  text-align: center; }
  .feature-numbered .num {
    width: 70px;
    height: 70px;
    display: inline-block;
    border: 3px solid #f4c545;
    margin-bottom: 20px;
    font-size: 30px;
    font-size: 2.1428571429em;
    color: #f4c545;
    font-weight: 700;
    line-height: 2;
    position: relative; }
    .feature-numbered .num:before, .feature-numbered .num:after {
      content: " ";
      width: 25px;
      height: 20px;
      position: absolute;
      background: #212121; }
    .feature-numbered .num:before {
      border-bottom: 3px solid #f4c545;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      top: -9px;
      left: -12px; }
    .feature-numbered .num:after {
      border-top: 3px solid #f4c545;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      bottom: -9px;
      right: -12px; }
  .feature-numbered .feature-title {
    font-size: 18px;
    font-size: 1.2857142857em;
    text-transform: uppercase;
    font-weight: 300;
    color: #f4c545;
    letter-spacing: 3px; }

.testimonial {
  margin: 0 0 30px; }
  .testimonial cite {
    font-style: normal;
    color: #f4c545; }

.filterable-nav {
  margin: 50px 0; }
  .filterable-nav .mobile-filter {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #f4c545;
    padding: 10px 20px;
    color: #f4c545;
    border-radius: 0;
    background: none;
    text-transform: uppercase;
    outline: none; }
    @media screen and (max-width: 768px) {
      .filterable-nav .mobile-filter {
        display: block; } }
  .filterable-nav a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    border: 2px solid #383838;
    position: relative;
    color: #d3d3d3;
    text-transform: uppercase;
    -webkit-transition: .3s ease;
            transition: .3s ease; }
    @media screen and (max-width: 768px) {
      .filterable-nav a {
        display: none; } }
    .filterable-nav a:before, .filterable-nav a:after {
      content: " ";
      width: 20px;
      height: 20px;
      position: absolute;
      background: #212121;
      -webkit-transition: .3s ease;
              transition: .3s ease; }
    .filterable-nav a:before {
      border-bottom: 2px solid #383838;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      top: -10px;
      left: -10px; }
    .filterable-nav a:after {
      border-top: 2px solid #383838;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      bottom: -10px;
      right: -10px; }
    .filterable-nav a.current, .filterable-nav a:hover {
      border-color: #f4c545;
      color: #f4c545; }
      .filterable-nav a.current:before, .filterable-nav a.current:after, .filterable-nav a:hover:before, .filterable-nav a:hover:after {
        border-color: #f4c545; }

.filterable-items {
  zoom: 1; }
  .filterable-items:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }

.project-item {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
  float: left; }
  @media screen and (max-width: 768px) {
    .project-item {
      width: 50%; } }
  @media screen and (max-width: 480px) {
    .project-item {
      width: 100%; } }
  .project-item img {
    max-width: 100%;
    margin-bottom: 20px;
    display: block; }
  .project-item .project-title {
    font-size: 18px;
    font-size: 1.2857142857em;
    margin-bottom: 0;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    color: #f4c545; }
  .project-item .project-subtitle {
    font-size: 12px;
    font-size: 0.8571428571em;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: white; }

.project-images img {
  max-width: 100%; }
.project-images .thumbs {
  margin: 0 -10px;
  zoom: 1;
  margin-top: 30px; }
  .project-images .thumbs:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }
  .project-images .thumbs a {
    width: 33.3333%;
    display: block;
    float: left;
    text-align: center; }
    .project-images .thumbs a img {
      max-width: 100%; }


      #site-content {
        background-color: white; /* Make the background white */
        padding: 0px; /* Optional, to add some space around the content */
    }
    
    .main-content {
        background-color: white; /* Make sure the main content area has a white background */
    }
/*
 * Footer Styles (Updated for Alignment)
 */
 .site-footer {
  margin-top: 0px;
  background: #ffffff; /* Optional: Dark footer background */
  color: #000000; /* Optional: Light text */
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #383838;
  width: 100%; /* Adjust width if needed */
  padding-left: 10px;
  padding-bottom: 40px;
}

/* Left Section */
.site-footer .pull-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

/* Contact Details */
.site-footer .contact-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer .contact-detail a {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  text-decoration: none;
  color: inherit;
}

.site-footer .contact-icon img {
  width: 30px; /* Increase size */
  height: 26px;
}

/* Right Section (Social Links) */
.site-footer .pull-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Social Media Icons */
.site-footer .social-links {
  display: flex;
  gap: 10px;
}

.site-footer .social-links a {
  width: 40px;
  height: 40px;
  border: 2px solid #383838;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #4a494d;
  transition: 0.3s ease;
  margin-top: 3px;
}

.site-footer .social-links a:hover {
  border-color: #f4c545;
  color: #f4c545;
}

.site-footer .social-links a i {
  font-size: 24px;
}

/* Responsive Fix for Small Screens */
@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .site-footer .pull-left, .site-footer .pull-right {
    align-items: center;
  }

  .site-footer .social-links {
    justify-content: center;
  }
}



    .image-slider {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
  }
  
  .slider-track {
      display: flex;
      width: 200%; /* Twice the width for infinite effect */
      animation: scroll 15s linear infinite; /* Adjust speed */
  }
  
  .slide {
      width: 970px; /* Set the width of each image */
      height: 300px; /* Set the height */
      background-size: cover;
      background-position: center;
      flex-shrink: 0; /* Prevent shrinking */
  }
  
  /* Keyframes for infinite scrolling */
  @keyframes scroll {
      from {
          transform: translateX(0);
      }
      to {
          transform: translateX(-50%);
      }
  }
  

  @media screen and (max-width: 768px) {
    .fade-text {
        font-size: 10px; /* Adjust as needed */
        line-height: 1.2;
    }
    
    h1.fade-text {
        font-size: 10px; /* Smaller heading */
    }
    
    h2.fade-text {
        font-size: 10px;
    }
    
    ul.fade-text, p.fade-text {
        font-size: 10px;
    }
}
