/* Base Styles */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Flamenco", sans-serif;
    background-color: #fff; /* Bright overall background */
    color: #333333; /* Default body text (for readability) */
}

body, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea {
    font-family: 'Montserrat', sans-serif !important;
}

/* Generic spacing helper */
.section-spacing {
    margin-top: 60px;
    margin-bottom: 60px;
}

/*==================== Magnific Popup Gallery ====================*/
img.mfp-img {
    max-width: 60%;
    height: auto;
    max-height: 20vh;
}

.mfp-figure {
    max-width: 70%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    img.mfp-img {
        max-width: 90%;
        max-height: 60vh;
    }
    .mfp-figure {
        max-width: 90%;
    }
}

.popup-gallery a:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.popup-gallery h4 {
    margin-bottom: 30px;
    color: #725c0a; /* Warm heading tone */
    font-weight: 600;
}

/*==================== Typography ====================*/
h3 {
    color: #725c0a; /* Headings in warm brown–gold */
    text-transform: uppercase;
    margin: 20px 0;
}

p {
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

/*==================== Home Section ====================*/
#home {
    height: 100%;
}

#home-cover {
    height: 100%;
    background: url("../img/bg-home.jpg") no-repeat center center;
    background-size: cover;
}

#home-content-box {
    width: 100%;
    height: 100%;
    display: table;
    /* Light overlay to brighten background image */
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
}

.bg-parallax {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

#home-content-box-inner {
    display: table-cell;
    vertical-align: middle;
}

#home-heading h3 {
    color: #725c0a;
    font-size: 55px;
    text-transform: uppercase;
}

/*==================== Buttons ====================*/
.btn-general {
    border: 2px solid #c88934;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    background: transparent;
    color: #725c0a;
}

.btn-white {
    border-color: #c88934;
    color: #725c0a;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #f9f9f9;
    color: #725c0a;
}

.btn-c88934 {
    border: 2px solid #c88934;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    background-color: #c88934;
    color: #fff;
}

.btn-c88934:hover,
.btn-c88934:focus {
    background-color: #725c0a;
    border-color: #725c0a;
    color: #fff;
}

.btn-back-to-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    font-size: 18px;
    padding: 2px 12px;
    border-radius: 0;
    display: none;
}

/*==================== Animation Timing ====================*/
#home-heading,
#home-cover,
#home-btn-general {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

#home-cover {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#home-heading {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#home-btn-general {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

/*==================== Content Sections ====================*/
.content-box {
    padding: 100px 20px; /* Generous padding for breathing room */
}

.content-title h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #725c0a;
}

.content-title-underline {
    width: 50px;
    height: 3px;
    background-color: #c88934;
    margin: 0 auto 30px auto;
}

/*==================== Services Section ====================*/
.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
.service-card {
    background-color: #fff;
    border: 1px solid #c88934;
    padding: 30px 20px;
    border-radius: 20px;
    margin: 25px 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    color: #333333;
}
  
.service-card:hover {
    background-color: #f9f9f9;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
  
.service-card .service-icon {
    font-size: 50px;
    color: #c88934;
    margin-bottom: 20px;
    transition: color 0.3s;
}
  
.service-card:hover .service-icon {
    color: #725c0a;
}
  
.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #725c0a;
}
  
.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}
  
@media (max-width: 767px) {
    .service-card {
        margin: 15px auto;
    }
}

#about-bg-diagonal {
	width: 60%;
	height: 700px;
	float: right;
	background-image: url("../img/bg-about.jpg");
	border-left: 200px solid #725c0a;
	border-top: 700px solid transparent;

}

#about-content-box {
	float: left;
	height: 700px;
	padding-left: 100px;
}

#about-content-box-outer {
	width: 100%;
	height: 100%;
	display: table;
}

#about-content-box-inner {

	display: table-cell;
	vertical-align: middle;

}

#about .content-title h3 {
	text-align: left;
}

#about .content-title-underline {
	margin: 0px 0px 30px 0px;

}

#about-desc p {
	margin-bottom: 30px;
}

/*==================== Work Section ====================*/
.img-wrapper.full-fit {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f9f9f9;
    position: relative;
  }
  
  .img-wrapper.full-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
  }
  
  .img-wrapper.full-fit img:hover {
    transform: scale(1.2);
    cursor: zoom-in;
  }
  
  
  
  
/*==================== Team Section ====================*/
#team {
    text-align: center;
  }
  
  #team .testimonial-box {
    border: 2px solid #eee;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  #team .testimonial-box img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ddd;
    margin-bottom: 20px;
  }
  
  #team .testimonial-box p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
  }
  
  #team .testimonial-box h5 {
    margin-top: 25px;
    font-weight: 600;
    font-size: 16px;
    color: #725c0a;
  }
  
/*==================== Social Section ====================*/
.social-list {
    padding-left: 0;
}

.social-list li {
    list-style: none;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    margin-top: 10px;
}

.social-icon i {
    font-size: 17px;
    color: #725c0a;
}

.social-icon i:hover {
    color: #c88934;
}

/*==================== Testimonials Section ====================*/
#testimonial-cover {
    background: url("../img/bg-testimonials.jpg") no-repeat center center;
    background-size: cover;
}

#testimonials .content-box {
    background-color: rgba(255,255,255,0.9);
    padding: 60px 20px;
}

.content-title-white h3 {
    color: #725c0a;
}

.testimonials img {
    max-width: 120px;
    margin: 0 auto;
}

.testimonials blockquote {
    border: 0;
    font-style: italic;
    padding: 6px 150px;
    color: #333333;
    position: relative;
}

.testimonials blockquote::before,
.testimonials blockquote::after {
    font-size: 80px;
    line-height: 1;
    width: 30px;
    height: 30px;
    color: #c88934;
    position: absolute;
}

.testimonials blockquote::before {
    content: "\201C";
    top: 0;
    left: 100px;
}


/* The class we add on click to trigger the animation */
.dismantle-animation {
	animation: dismantleButton 0.8s forwards ease;
	transform-origin: center; /* or left/right, depending on the effect you want */
	overflow: hidden; /* so text will get clipped as it shrinks */
  }
  
  /* Keyframes for the 'dismantle' effect */
  @keyframes dismantleButton {
	0% {
	  transform: scaleX(1);
	  opacity: 1;
	  border-color: #fff; /* or your original border color */
	}
	50% {
	  border-color: transparent; /* halfway, remove border */
	  opacity: 0.6;
	}
	100% {
	  transform: scaleX(0);
	  opacity: 0;
	}
  }

  
.testimonials blockquote::after {
    content: "\201D";
    bottom: 0;
    right: 100px;
}

.testimonial-author p {
    color: #725c0a;
    font-size: 17px;
}

.testimonial-author p strong {
    display: block;
}

/* ========== Left Text Section ========== */
#lefttext-section-home {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  z-index: 1;
}

#background-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #fff, #c88934);
}

#lefttext-section-home img {
  max-height: 350px;
  width: auto;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #725c0a;
}

.section-desc {
  font-size: 2.3rem;
  line-height: 1.7;
  color: #333333;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1.7rem;
  }

  #lefttext-section-home {
    padding: 40px 0;
    text-align: center;
  }

  #lefttext-section-home img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

/*==================== Impact Section ====================*/

.impact-box .impact-title i {
  color: #c88934; /* or your preferred accent color */
  margin-right: 8px;
}
#impact {
    padding: 100px 0;
}
  
.impact-box {
    background-color: #fff;
    border: 1px solid #c88934;
    border-radius: 25px;
    padding: 40px 20px;
    margin: 25px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #333333;
}
  
.impact-box:hover {
    background-color: #f9f9f9;
}
  
.impact-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #725c0a;
}
  
.impact-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

/*==================== Pricing Section ====================*/
h4.pricing-title {
    background-color: #c88934;
    color: #fff;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

h3.pricing-value {
    font-size: 45px;
    font-weight: 700;
    color: #725c0a;
}

h3.pricing-value sup {
    font-size: 22px;
    font-weight: normal;
    vertical-align: super;
    color: #725c0a;
}

ul.pricing-spec {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 60px 0;
}

ul.pricing-spec li p {
    font-weight: 400;
    text-transform: uppercase;
    color: #333333;
}

.pricing-box-lg {
    padding: 90px;
    margin: 0;
    background-color: #fff;
    border: 1px solid #c88934;
}

.pricing-box-lg h4.pricing-title {
    background-color: #c88934;
    color: #fff;
    padding: 7px 15px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pricing-box-lg ul.pricing-spec li p {
    color: #725c0a;
}

/*==================== Stats Section ====================*/
#stats-cover {
    background: url("../img/bg-stats.jpg") no-repeat center center;
    background-size: cover;
}
#stats .content-box {
    background-color: rgba(255,255,255,0.9);
    padding: 60px 20px;
}
.stats-item {
    padding: 100px 0;
}
.stats-item i {
    color: #c88934;
}
.stats-item h2 {
    color: #725c0a;
    font-size: 35px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 1px;
}
.stats-item p {
    color: #333333;
    text-transform: uppercase;
    margin-top: 5px;
}



/* ==================== Clients Image Styling ==================== */
#clients img {
    width: 100%;
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  /* Optional hover effect (remove if not needed) */
  #clients img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }
  
  
  #clients img:hover {
    transform: scale(1.05);
  }
  

  

/*==================== Contact Section & Footer ====================*/
footer {
    background-color: #fff;
    padding-top: 18px;
    padding-bottom: 0;
    color: #333333;
    border-top: 1px solid #c88934;
}
#contact-left h3,
#contact-right h3 {
    color: #725c0a;
    font-size: 27px;
    font-weight: 700;
}
#contact-left p {
    color: #333333;
    margin-bottom: 30px;
}
#contact-info {
    background: url("../img/world-map.png") no-repeat center center;
    background-size: contain;
}
address {
    color: #333333;
}
address strong {
    font-size: 16px;
}
address strong,
#phone-fax-email strong {
    letter-spacing: 1px;
}
form .form-control {
    background: transparent;
    border-radius: 0;
    border: 1px solid #c88934;
    font-size: 17px;
    font-weight: 300;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: #333333;
}
#send-btn {
    border: 2px solid #c88934;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    background-color: #c88934;
    color: #fff;
    cursor: pointer;
}
#send-btn:hover {
    background-color: #725c0a;
    color: #fff;
}

/*==================== Footer Bottom ====================*/
#footer-bottom {
    background-color: #fff;
    margin-top: 50px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 1px;
    border-top: 1px solid #c88934;
}
#footer-copyright p {
    margin: 0;
    color: #333333;
}
#footer-menu {
    float: left;
    color: #333333;
    font-size: 16px;
    font-weight: 300;
}
#footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
#footer-menu ul li {
    display: inline-block;
}
#footer-menu a {
    color: #333333;
    font-size: 16px;
    font-weight: 300;
    margin: 0 10px;
    text-decoration: none;
}
#footer-menu a:hover {
    color: #725c0a;
}

/*==================== Navigation ====================*/
.navbar {
    padding: 5px 0;
    transition: all 0.5s ease-in-out;
    background-color: #000000;
    border-bottom: 1px solid #c88934;
}
.dotclass-top-nav {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 7px 0;
}
.dotclass-nav-wrapper {
    padding: 0 85px;
}
.navbar-nav {
    float: right;
}
.navbar-nav > li > a  {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0;
    color: #725c0a; /* default color */
    padding: 10px 15px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: #c88934 !important; /* gold on hover */
    background: none; /* remove any background color change */
}

.navbar-toggle {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #c88934;
    border-radius: 0;
}
.navbar-toggle .icon-bar {
    background-color: #725c0a;
}
.navbar-collapse {
    max-height: none !important;
}
.dotclass-top-nav ul.navbar-nav > li.active > a {
    color: #c88934 !important;
}
.navbar-brand > h3 {
    margin: 0;
    color: #725c0a;
    font-weight: 900;
}
#dothead {
    color: #c88934;
}
