/*

Template 2076 Zentro

http://www.tooplate.com/view/2076-zentro

*/

/* CSS Custom Properties for Modern Design */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --accent-color: #F6D76B;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --text-muted: #7f8c8d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --dark-bg: #2c3e50;
  --section-padding: 100px;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--white);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  position: relative;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heading-light {
  color: var(--text-light);
}

.heading-small {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.subheading {
  font-size: 18px;
  padding-bottom: 40px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.subheading-light {
  color: rgba(255,255,255,0.8);
}

p {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-light p {
  color: rgba(255,255,255,0.9);
}

.lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), rgba(246,215,107,0.3));
  width: 80px;
  margin: 30px auto;
  border-radius: 2px;
}

.hr-left {
  margin-left: 0;
  margin-right: auto;
}

.hr-white {
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-light {
  background: var(--light-bg);
}

.section-dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
}

/* Modern Cards */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
  margin-bottom: 30px;
  transition: var(--transition);
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-dark {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.card-service {
  text-align: center;
  padding: 50px 30px;
}

.card-service h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}

/* ABOUT SECTION STYLES */
.about-content-row {
  margin-top: 60px;
  margin-bottom: 60px;
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
}

.about-content-row .col-lg-5,
.about-content-row .col-md-5 {
  display: flex;
  flex-direction: column;
}

.about-content-row .col-lg-7,
.about-content-row .col-md-7 {
  display: flex;
  align-items: center;
}

.about-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: var(--transition);
  height: 100%;
  min-height: 500px;
}

.about-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44,62,80,0.9));
  padding: 30px;
  transform: translateY(100%);
  transition: var(--transition);
}

.about-image-container:hover .about-image-overlay {
  transform: translateY(0);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.overlay-content i {
  font-size: 20px;
  color: var(--accent-color);
}

.about-content {
  padding-left: 40px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(246,215,107,0.3);
}

.about-badge i {
  font-size: 16px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 25px;
}

.text-highlight {
  color: var(--accent-color);
  position: relative;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #f39c12);
  border-radius: 2px;
}

.about-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.about-features {
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.about-cta {
  margin-top: 10px;
}

.service-cards-row {
  margin-top: 80px;
}

/* Mobile Responsiveness for About Section */
@media (max-width: 991px) {
  .about-content-row {
    align-items: center;
    display: block;
  }
  
  .about-content-row .col-lg-5,
  .about-content-row .col-md-5,
  .about-content-row .col-lg-7,
  .about-content-row .col-md-7 {
    display: block;
  }
  
  .about-image-container {
    min-height: 350px;
    margin-bottom: 30px;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 0;
    text-align: center;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-description {
    font-size: 16px;
  }
  
  .feature-item {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-content-row {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .about-image-container {
    min-height: 300px;
  }
  
  .about-title {
    font-size: 24px;
  }
  
  .about-description {
    font-size: 15px;
  }
  
  .service-cards-row {
    margin-top: 60px;
  }
}

.card-dark h4, .card-dark h3 {
  color: var(--accent-color);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #f39c12);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-color), #f39c12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: var(--text-dark);
  box-shadow: 0 10px 20px rgba(246,215,107,0.3);
}

.service-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Modern Button Styles */
.btn-modern {
  background: linear-gradient(45deg, var(--accent-color), #f39c12);
  border: none;
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 35px;
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(246,215,107,0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246,215,107,0.4);
  color: var(--text-dark);
  text-decoration: none;
}

.btn-outline-modern {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 13px 35px;
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-modern:hover {
  background: var(--accent-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246,215,107,0.3);
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: inherit;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Lists */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-unstyled li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.text-light .list-unstyled li {
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Contact Info Styling */
.contact-info {
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 15px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(246,215,107,0.1);
  transform: translateY(-2px);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 24px;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.contact-item strong {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  .heading { font-size: 28px; }
  .cta-title { font-size: 24px; }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .btn-modern, .btn-outline-modern {
    padding: 12px 25px;
    font-size: 13px;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  #home h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }
  
  #home h2 {
    font-size: 16px;
  }
  
  #home p {
    font-size: 14px;
  }
  
  #home .btn {
    padding: 12px 25px;
    font-size: 13px;
  }
  
  .logo-text {
    font-size: 18px;
    text-align: center;
  }
  
  .navbar-header {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .subheading {
    font-size: 16px;
    padding-bottom: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-title {
    font-size: 20px;
  }
  
  .cta-subtitle {
    font-size: 16px;
  }
}

/* Print Styles */
@media print {
  .navbar, .cta-section, .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section {
    padding: 20px 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon {
    transform: scale(0.9);
  }
}

/* Accessibility Improvements */
.btn:focus, .btn-modern:focus, .btn-outline-modern:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 1px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f39c12;
}

/* COMPREHENSIVE MOBILE RESPONSIVENESS */

/* Mobile Navigation Enhancements */
@media (max-width: 767px) {
  .navbar-modern {
    padding: 10px 0;
  }
  
  .navbar-brand-container {
    padding: 0;
    gap: 10px;
  }
  
  .brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  
  .brand-icon i {
    font-size: 14px;
  }
  
  .logo-text {
    font-size: 18px;
    line-height: 1.1;
  }
  
  /* Hide logo in mobile dropdown menu */
  .navbar-collapse.in .navbar-brand-container,
  .navbar-collapse.collapsing .navbar-brand-container {
    display: none;
  }
  
  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(44,62,80,0.15);
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
    padding: 20px;
    border: 1px solid rgba(44,62,80,0.1);
    animation: slideDown 0.3s ease-out;
    position: relative;
    z-index: 1000;
  }
  
  .navbar-collapse.in {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: 8px;
  }
  
  .navbar-nav > li {
    margin: 0;
    width: 100%;
  }
  
  .nav-link {
    padding: 15px 20px !important;
    border-radius: 10px;
    justify-content: center;
    background: rgba(44,62,80,0.05);
    margin-bottom: 5px;
  }
  
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 15px;
  }
  
  .btn-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 14px;
  }
}

/* Mobile Hero Section Enhancements */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 120px 15px 80px;
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 36px;
    gap: 2px;
  }
  
  .hero-name {
    font-size: 0.6em;
    letter-spacing: 4px;
  }
  
  .hero-service {
    font-size: 0.9em;
    letter-spacing: 1px;
  }
  
  .hero-action {
    font-size: 0.7em;
    letter-spacing: 2px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 320px;
    font-size: 13px;
    padding: 18px 25px;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .hero-feature {
    min-width: 100px;
    padding: 15px 10px;
  }
  
  .hero-feature i {
    font-size: 20px;
  }
  
  .hero-feature span {
    font-size: 12px;
  }
  
  .hero-feature small {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 110px 10px 70px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .hero-badge {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-feature {
    flex-direction: row;
    gap: 15px;
    padding: 12px 15px;
    text-align: left;
  }
  
  .hero-feature i {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}

/* preloader section */
.preloader  {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        background: none repeat scroll 0 0 #fff;
    }
.sk-spinner-pulse {
  width: 40px;
  height: 40px;
  background-color: #F6D76B;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
          animation: sk-pulseScaleOut 1s infinite ease-in-out; }

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }


/* start navigation */
/* STUNNING MODERN NAVBAR */
.navbar-modern {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(44,62,80,0.1);
  border: none;
  margin-bottom: 0;
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(44,62,80,0.08);
}

.navbar-modern.navbar-scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 12px 40px rgba(44,62,80,0.15);
  padding: 10px 0;
}

.navbar-modern .container {
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* BRAND SECTION */
.navbar-brand-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  transition: var(--transition);
}

.brand-icon {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #f39c12 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(246,215,107,0.3);
  overflow: hidden;
}

.brand-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.navbar-brand-container:hover .brand-icon::before {
  transform: translateX(100%);
}

.brand-icon i {
  position: absolute;
  font-size: 18px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.brand-icon .fa-home {
  transform: translateY(-2px) scale(0.9);
}

.brand-icon .fa-fire {
  transform: translateY(2px) scale(0.8);
  opacity: 0.8;
}

.navbar-brand-container:hover .brand-icon .fa-home {
  transform: translateY(-4px) scale(1.1);
}

.navbar-brand-container:hover .brand-icon .fa-fire {
  transform: translateY(4px) scale(1);
  opacity: 1;
}

.logo-text {
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: 'Roboto', sans-serif;
}

.brand-highlight {
  color: var(--accent-color);
  position: relative;
}

.brand-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), #f39c12);
  border-radius: 1px;
}

/* NAVIGATION LINKS */
.navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  height: 100%;
}

.navbar-nav > li {
  margin: 0 5px;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-link:hover {
  color: var(--text-dark) !important;
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246,215,107,0.2);
}

.nav-link:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* CTA BUTTON IN NAVBAR */
.nav-cta {
  margin-left: 20px !important;
}

.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(44,62,80,0.2);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(44,62,80,0.3);
  border-color: var(--accent-color);
}

.btn-nav-cta:hover::before {
  left: 100%;
}

.btn-nav-cta i {
  animation: phoneRing 2s infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
}

/* HAMBURGER MENU */
.navbar-toggle {
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
  align-self: center;
}

.navbar-toggle:hover {
  background: rgba(246,215,107,0.1);
}

.hamburger-menu {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-menu .bar {
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar-toggle[aria-expanded="true"] .hamburger-menu .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .hamburger-menu .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggle[aria-expanded="true"] .hamburger-menu .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* STUNNING MODERN HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, rgba(44,62,80,0.95), rgba(52,73,94,0.9)), url('../images/home-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 150px 20px 100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(44,62,80,0.3) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: none;
  z-index: 2;
}



.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(246,215,107,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(246,215,107,0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.hero-badge i {
  font-size: 16px;
  animation: flickerFire 2s ease-in-out infinite alternate;
}

@keyframes flickerFire {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-name {
  color: var(--white);
  font-size: 0.7em;
  font-weight: 300;
  letter-spacing: 8px;
  opacity: 0.9;
}

.hero-service {
  color: var(--accent-color);
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.hero-service::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #f39c12);
  border-radius: 2px;
}

.hero-action {
  color: var(--white);
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 4px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  color: var(--text-dark);
  padding: 20px 35px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(246,215,107,0.3), 0 0 0 0 rgba(246,215,107,0.5);
  position: relative;
  overflow: hidden;
  animation: ctaPulse 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(246,215,107,0.3), 0 0 0 0 rgba(246,215,107,0.5); }
  50% { box-shadow: 0 15px 40px rgba(246,215,107,0.4), 0 0 0 10px rgba(246,215,107,0.1); }
}

.btn-hero-primary i {
  font-size: 16px;
}

.btn-hero-primary span {
  font-size: 14px;
  font-weight: 700;
}

.btn-hero-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(246,215,107,0.4);
  color: var(--text-dark);
  text-decoration: none;
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 18px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  color: var(--white);
  text-decoration: none;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 20px;
  min-width: 120px;
  transition: var(--transition);
}

.hero-feature:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.hero-feature i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.hero-feature span {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.hero-feature small {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.hero-scroll-indicator a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.hero-scroll-indicator i {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* team section */
#team {
  text-align: center;
}
#team h3 {
  font-size: 18px;
  line-height: 4px;
}
#team h4 {
  color: #5C5C5C;
  padding-top: 24px;
}
#team .col-md-4 {
 padding-top: 42px;
}

/* menu section */
#menu h4 {
	line-height: 1.5;
}
#menu .col-md-8 {
  padding-bottom: 42px;
}
#menu .col-md-6 {
  padding-bottom: 18px;
}
#menu span {
  color: #5C5C5C;
}

/* gallery section */
#gallery {
  padding-top: 80px;
  padding-bottom: 80px;
}
#gallery .col-md-4 {
  padding-top: 52px;
}
#gallery img {
  width: 100%;
  padding-bottom: 18px;
}
#gallery .col-md-4 div {
  position: relative;
  bottom: 18px;
  padding-bottom: 12px;
}
#gallery h3 {
  font-size: 18px;
  line-height: 8px;
}

/* contact section */
#contact {
  padding-top: 80px;
  padding-bottom: 100px;
}
#contact .col-md-8 {
  margin-bottom: 32px;
}
#contact .form-control {
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
#contact .form-control:focus {
  border-color: #f9f9f9;
}
#contact input {
  height: 48px;
}
#contact input[type="submit"] {
  background: transparent;
  border: 2px solid #999;
  border-radius: 10px;
  letter-spacing: 2px;
  margin-top: 12px;
  height: 50px;
}
#contact input[type="submit"]:hover {
  background: #999;
  color: #ffffff;
}

/* MODERN FOOTER SECTION */
.modern-footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: none;
  opacity: 0.3;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo .brand-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(246,215,107,0.3);
}

.footer-logo .brand-icon i {
  position: absolute;
  color: var(--text-dark);
  font-size: 20px;
}

.footer-logo .brand-icon .fa-home {
  transform: translateY(-3px);
}

.footer-logo .brand-icon .fa-fire {
  transform: translateY(3px) scale(0.8);
  opacity: 0.8;
}

.footer-brand-name {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.footer-brand-name span {
  color: var(--accent-color);
}

.footer-description {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
}

.footer-certifications {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}

.cert-badge i {
  color: var(--accent-color);
  font-size: 14px;
}

.footer-section {
  margin-bottom: 40px;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-title i {
  color: var(--accent-color);
  font-size: 18px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  padding: 5px 0;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
  text-decoration: none;
}

.footer-links a i {
  font-size: 12px;
  width: 16px;
  opacity: 0.7;
}

.footer-contact {
  margin-bottom: 25px;
}

.contact-item-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
  transition: var(--transition);
}

.contact-item-footer:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.contact-item-footer i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.contact-item-footer strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-footer span {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.4;
}

.contact-item-footer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-item-footer a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-cta {
  margin-top: 25px;
}

.btn-footer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  color: var(--text-dark);
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(246,215,107,0.3);
  width: 100%;
  font-size: 14px;
}

.btn-footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(246,215,107,0.4);
  color: var(--text-dark);
  text-decoration: none;
}

.btn-footer-cta i {
  animation: phoneRing 2s infinite;
}

/* COPYRIGHT SECTION */
.copyright-section {
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.8);
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.copyright-text strong {
  color: var(--accent-color);
  font-weight: 600;
}

.footer-back-to-top {
  text-align: right;
}

.footer-back-to-top a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 5px 0;
}

.footer-back-to-top a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-back-to-top i {
  animation: bounce 2s infinite;
}

@media (max-width: 768px) {
  .footer-back-to-top {
    text-align: center;
    margin-top: 15px;
  }
  
  .footer-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-certifications {
    justify-content: center;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .hero-feature {
    min-width: 100px;
    padding: 15px;
  }
}

/* social icon */
.social-icon {
  padding: 0;
}
.social-icon li {
  list-style: none;
  display: inline-block;
  padding: 0;
}
.social-icon li a {
  background: #f0f0f0;
  border-radius: 50%;
  color: #5C5C5C;
  font-size: 16px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  margin-top: 12px;
  margin-right: 16px;
  top: 0;
  position: relative;
  padding: 0;
}
.social-icon li a:hover {
  background: #F6D76B;
  top: 5px;
}

/* copyright section */
#copyright {
  background: #343434;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
#copyright p {
  color: #ffffff;
}
#copyright a {
  color: #ffffff;
}
#copyright a:hover {
  color: #FF0;
}

/* logo text styling */
.logo-text {
  color: #5C5C5C;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
  line-height: 28px;
}