
@font-face {
  font-family: 'robotolight';
  src: url("../fonts/Roboto-Light-webfont.eot");
  src: url("../fonts/Roboto-Light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Light-webfont.woff") format("woff"), url("../fonts/Roboto-Light-webfont.ttf") format("truetype"), url("../fonts/Roboto-Light-webfont.svg#robotolight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'robotoregular';
  src: url("../fonts/Roboto-Regular-webfont.eot");
  src: url("../fonts/Roboto-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular-webfont.woff") format("woff"), url("../fonts/Roboto-Regular-webfont.ttf") format("truetype"), url("../fonts/Roboto-Regular-webfont.svg#robotoregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'robotobold';
  src: url("../fonts/Roboto-Bold-webfont.eot");
  src: url("../fonts/Roboto-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold-webfont.woff") format("woff"), url("../fonts/Roboto-Bold-webfont.ttf") format("truetype"), url("../fonts/Roboto-Bold-webfont.svg#robotobold") format("svg");
  font-weight: normal;
  font-style: normal;
}

.green {
	color: #9F3;
}

.orange {
	color: #FC0;
}

.blue {
	color: #06C;
}

/*---------------------------------------------------------
 1. Reset
-------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;

}

audio:not([controls]) {
  display: none;
}

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;

}

button,
input {
  line-height: normal;

}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]:-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

/*---------------------------------------------------------
 2. Basic Style
-------------------------------------------------------- */
body {
  font-size: 14px;
  line-height: 24px;
  color: white;
  font-family: 'robotolight';
}

a {
  color: #ffffff;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -ms-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: #333333;
}

h1, h2, h3, h4, h5 {
  color: #333333;
}

::-webkit-input-placeholder {
  color: #666;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #666;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

.site-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #2d2622 0%, #3d2f1f 50%, #5a3f1a 100%);
  background-attachment: fixed;
  overflow: hidden;
}

/* Orange accent lights effect */
.site-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.site-bg-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(10, 10, 10, 0.15);
}

#page-content {
  position: relative;
  z-index: 12;
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  #page-content {
    margin-top: 0;
  }
}

.content {
  display: block;
  padding: 48px 15px; /* ensure consistent spacing */
}

.box-content {
  background: white;
  color: #555;
  font-family: 'robotolight';
  padding: 30px;
  margin-top: 30px;
}
.box-content .widget-title {
  font-size: 22px;
  color: #333;
  font-family: 'robotolight';
  margin-bottom: 30px;
}



.price-text {
  position: relative;
  margin-top: 60px;

}
.price-text h3 {
  font-size: 32px;
  font-family: 'robotolight';
  margin-bottom: 30px;
  color: white;
}
.price-text p {
  font-size: 18px;
  font-family: 'robotolight';
}
.price-text .price-title {
  font-size: 32px;
  color: #333;
  font-family: 'robotolight';
  margin-bottom: 30px;
  color: white;
}

.welcome-text {
  position: relative;
  margin-top: 60px;
}
body { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; color: #f5f5f5; }
h2 { font-size: 36px; line-height: 1.1; margin-bottom: 18px; font-weight: 700; }
.content { padding: 48px 15px; }
.top-header { padding: 12px 0; }
.phone-info a { color: inherit; text-decoration: none; font-weight: 600; }
a { color: #e85131; transition: color .15s ease; }
a:hover { color: #c63e21; text-decoration: none; }
.welcome-text h2 {
  font-size: 32px;
  font-family: 'robotolight';
  margin-bottom: 30px;
  color: white;
}
.welcome-text p {
  font-size: 18px;
  font-family: 'robotolight';
}


.subscribe-form {
  margin: 30px auto 0;
  max-width: 900px;
  padding: 0 15px;
}
.subscribe-form .form-stack .form-group {
  margin-bottom: 18px;
}
.subscribe-form input.number {
  -webkit-border-radius: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  width: 100%;
  display: block;
  font-size: 18px;
}
.subscribe-form input.large-input { padding: 16px 18px; font-size: 20px; }
.subscribe-form input.button {
  background: #e85131;
  color: white;

  font-size: 18px;
  padding: 12px 26px;
  outline: 0;
  border: 0;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.subscribe-form .button-holder {
  text-align: left;
}
@media screen and (max-width: 992px) {
  .subscribe-form .button-holder {
    margin-top: 20px;
    text-align: center;
  }
  .subscribe-form input.number { font-size: 18px; padding: 14px 16px; }
}
.subscribe-form p {
  text-align: left;
  margin-top: 20px;
  margin-left: 0;
  font-size: 16px;
}

/* Price form fixes */
.price-form {
  margin: 50px auto 0;
  max-width: 900px;
  padding: 0 15px;
}
.price-form p {
  text-align: left;
  margin-top: 10px;
  margin-left: 0;
  font-size: 16px;
}

/* Results list */
.price-table {
  width: 100%;
  max-width: 720px;
  margin: 18px auto 0;
  border-collapse: collapse;
  font-size: 18px;
  background: rgba(0,0,0,0.30);
  border-radius: 10px;
}
.price-table thead th {
  text-align: center;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
}
.price-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-table td {
  padding: 12px 12px;
  vertical-align: middle;
  text-align: center;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
}
.price-table { border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; table-layout: fixed; }
.price-table td.price-value {
  text-align: center;
  font-weight: 800;
  color: #ffd;
  white-space: nowrap;
}
.price-table thead th { border-right: 1px solid rgba(255,255,255,0.04); }
.price-table tbody tr td { border-right: 1px solid rgba(255,255,255,0.02); }
.price-table tbody tr td:last-child { border-right: none; }
/* Equal columns on desktop, stacked on mobile */
@media screen and (min-width: 768px) {
  .price-table th:first-child, .price-table td:first-child { width: 50%; }
  .price-table th:last-child, .price-table td:last-child { width: 50%; }
}

/* Responsive: stack rows on narrow screens */
@media screen and (max-width: 480px) {
  .price-table, .price-table thead, .price-table tbody, .price-table tr, .price-table td {
    display: block;
    width: 100%;
  }
  .price-table thead { display: none; }
  .price-table tr { margin-bottom: 14px; border: none; }
  .price-table td { padding: 10px 0; border: none; text-align: center; }
  .price-table td:before { content: attr(data-label) ": "; font-weight: 700; display: block; width: 100%; text-align: center; margin-bottom: 6px; }
  .price-table td.price-value { text-align: center; padding-left: 0; }
}

/* Wrapper and visual improvements for price table */
.price-wrapper {
  display: flex;
  justify-content: center;
  padding: 10px 10px 28px;
  margin-top: 12px;
}
.price-table {
  background: rgba(255,255,255,0.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.price-table:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}
.price-table thead th {
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  font-size: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.price-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.price-table td.price-value { color: #ffdf7a; font-weight: 900; font-size: 16px; }

.no-results { text-align: center; margin-top: 20px; font-size: 18px; }

/* Price form fixes */
.price-form {
  margin: 50px auto 0;
  max-width: 900px;
  padding: 0 15px;
}
.price-form p {
  text-align: left;
  margin-top: 10px;
  margin-left: 0;
  font-size: 16px;
}

/* Results list */
.price-results {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  max-width: 900px;
}
.price-results li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 15px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  color: #fff;
}
.price-results .price-name { font-weight: 600; }
.price-results .price-value { color: #ffd; }

.no-results { text-align: center; margin-top: 20px; }
.subscribe-form ::-webkit-input-placeholder {
  color: #fff;
}
.subscribe-form :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.subscribe-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.subscribe-form :-ms-input-placeholder {
  color: #fff;
}

.price-form {
  margin-top: 50px;
  margin-left: -160px;
}
.price-form input.number {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
  border: 1px solid #fff;
  padding: 10px 15px;
  width: 100%;
  display: inline-block;
  font-size: 16px;

}
.price-form input.button {
  background: #e85131;
  color: white;

  font-size: 16px;
  padding: 10px 20px;
  outline: 0;
  border: 0;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.price-form .button-holder {
  text-align: left;
}
@media screen and (max-width: 992px) {
  .price-form .button-holder {
    margin-top: 20px;
    text-align: center;
  }
}
.price-form p {
  margin-left: left;
  text-align: left;
  margin-top: 10px;
  margin-left: 100%;
  font-size: 16px;
}
.price-form ::-webkit-input-placeholder {
  color: #fff;
}
.price-form :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.price-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.price-form :-ms-input-placeholder {
  color: #fff;
}


/*---------------------------------------------------------
 3. Header
-------------------------------------------------------- */
.top-header {
  position: relative;
  z-index: 10;
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.7);
}

.phone-info a {
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .phone-info {
    text-align: center;
  }
}

.social-icons {
  text-align: right;
}
.social-icons a {
  color: white;
}
.social-icons li {
  display: inline-block;
  margin-left: 15px;
}
@media screen and (max-width: 992px) {
  .social-icons {
    text-align: center;
    margin-top: 20px;
  }
  .social-icons li:first-child {
    margin-left: 0;
  }
}

#nav a {
  display: block;
  width: 110px;
  height: 110px;
  text-align: center;
  color: white;
  font-size: 18px;
  margin: 0 auto;
}
#nav li {
  margin-bottom: 40px;
}
#nav i {
  padding-top: 40px;
  display: block;
  font-size: 36px;
  margin-bottom: 12px;
}



.logo-top-margin {
  position: relative;
  margin-top: 90px;
  margin-left: 35%;
}
@media screen and (max-width: 992px) {
  .logo-top-margin {
    margin-top: 0!important;
    margin-left: 0!important;
  }
}

.responsive-menu {
  position: relative;
  text-align: center;
  z-index: 99;
  margin-top: 60px;
  margin-bottom: 60px;
}

.toggle-menu {
  color: white !important;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 30px;
  text-transform: uppercase;
  font-family: 'robotoregular';
  display: inline-block;
}
.toggle-menu i {
  margin-right: 15px;
}

.show-menu {
  background: rgba(92, 180, 142, 0.5);
  display: block;
}
.show-menu li {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.show-menu li:last-child {
  border-bottom: 0;
}
.show-menu a {
  padding: 15px 20px;
  display: inline-block;
  width: 90%;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  background: transparent;
}
.show-menu a i {
  margin-right: 15px;
}

@media screen and (max-width: 992px) {
  .logo-holder {
    text-align: center;
  }
}

/*---------------------------------------------------------
 4. Main Content
-------------------------------------------------------- */
/*------ banner ------ */
.profile {
  overflow: show;
}

.profile-thumb {
  width: 100px;
  height: 150px;
  position: relative;
  overflow: show;
  margin-right: 25px;
  float: left;
}
.profile-thumb img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .profile-thumb {
    float: none;
    margin-bottom: 25px;
    width: 80%;
    height: auto;
  }
}

.profile-thumb:hover .project-hover {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}


.profile-content {
  overflow: show;
}

.profile-name {
  font-family: 'robotoregular';
  font-size: 24px;
}

.profile-role {
  font-size: 12px;
  margin-bottom: 20px;
  display: block;
}

.about-social {
  margin-top: 30px;
}
.about-social li {
  display: inline-block;
  margin-bottom: 3px;
}
.about-social a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #333333;
  background: #dddddd;
}
.about-social a:hover {
  background: #5cb48e;
  color: white;
}

.progess-bars span {
  font-size: 13px;
  color: #5cb48e;
}

.progress {
  height: 10px;
  border-radius: 0;
  box-shadow: none;
  background: #e8f4ef;
  margin-bottom: 10px;
}

.progress-bar {
  box-shadow: none;
  background: #5cb48e;
}

/*------ projects ------ */
.gallery-section .project-item {
  margin-bottom: 30px;
}

.project-item {
  position: relative;
  overflow: show;
}
.project-item img {
  width: 100%;
  display: block;
}
.project-item:hover .project-hover {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.project-hover {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: show;
  padding: 14px 20px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.project-hover h4 {
  color: white;
}

.project-pages li {
  display: inline-block;
}
.project-pages a {
  width: 34px;
  height: 34px;
  color: #333333;
  text-align: center;
  line-height: 34px;
  display: block;
  background: #dddddd;
}
.project-pages a:hover {
  background: #5cb48e;
  color: white;
}

/*------ contact ------ */
.contact-form input, .contact-form textarea {
  width: 100%;
  outline: 0;
  padding: 8px 10px;
  margin-bottom: 20px;
  max-width: 100%;
  border: 1px solid #dddddd;
}
.contact-form input.button {
  width: auto;
  color: white;
  background: #5cb48e;
  text-transform: uppercase;
  border: 0;
  outline: 0;
  margin-bottom: 0;
  padding: 12px 18px;
}

/*---------------------------------------------------------
 5. Footer
-------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 11;
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.7);
  margin-top: 30px;
}
.site-footer a {
  color: #ffffff;
}


/* Custom */
