  /* ============================================
       BOLZEST CONTRACTING & DEVELOPMENT
       Main Stylesheet
       ============================================ */
    
    :root {
      --default-font: "Roboto", system-ui, sans-serif;
      --heading-font: "Raleway", sans-serif;
      --nav-font: "Poppins", sans-serif;
      --background-color: #ffffff;
      --default-color: #333333;
      --heading-color: #1a1a1a;
      --accent-color: #e67e22;
      --secondary-color: #2c3e50;
      --surface-color: #ffffff;
      --contrast-color: #ffffff;
      --nav-color: #333333;
      --nav-hover-color: #e67e22;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      color: var(--default-color);
      background-color: var(--background-color);
      font-family: var(--default-font);
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      color: var(--heading-color);
      font-family: var(--heading-font);
      font-weight: 700;
    }

    a {
      color: var(--secondary-color);
      text-decoration: none;
      transition: 0.3s;
    }

    a:hover {
      color: var(--accent-color);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      padding-bottom: 60px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 20px;
      position: relative;
    }

    .section-title h2:after {
      content: "";
      position: absolute;
      display: block;
      width: 60px;
      height: 3px;
      background: var(--accent-color);
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
    }

    .section-title p {
      color: #666;
      font-size: 16px;
    }

    /* Header */
    .header {
      background: #fff;
      box-shadow: 0 0 18px rgba(230, 126, 34, 0.1);
      border-bottom: 3px solid var(--accent-color);
      position: sticky;
      top: 0;
      z-index: 997;
    }

    .topbar {
      background: linear-gradient(90deg, #2c3e50, #e67e22, #f39c12, #2c3e50);
      color: #fff;
      padding: 8px 0;
      font-size: 14px;
      font-weight: 500;
      overflow: hidden;
    }

    .topbar marquee {
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .branding {
      padding: 12px 0;
    }

    .branding .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo h1 {
      font-size: 26px;
      margin: 0;
      color: #2c3e50;
      font-weight: 800;
    }

    .logo span {
      color: #e67e22;
    }

    /* Navigation wrapper */
    .nav-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .navmenu {
      display: flex;
      align-items: center;
    }

    .navmenu ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    .navmenu li {
      position: relative;
    }

    .navmenu > ul > li > a {
      color: #333;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      font-family: var(--nav-font);
      transition: 0.3s;
      display: inline-block;
      letter-spacing: 0.3px;
    }

    .navmenu a:hover,
    .navmenu .active {
      color: var(--accent-color);
    }

    .navmenu .dropdown {
      position: relative;
    }

    .navmenu .dropdown ul {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 220px;
      padding: 10px 0;
      border-radius: 6px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      list-style: none;
      z-index: 100;
      border: 1px solid rgba(230, 126, 34, 0.1);
    }

    .navmenu .dropdown:hover > ul {
      opacity: 1;
      visibility: visible;
      top: calc(100% + 5px);
    }

    .navmenu .dropdown ul li {
      width: 100%;
    }

    .navmenu .dropdown ul a {
      padding: 10px 20px;
      display: block;
      text-transform: none;
      font-size: 14px;
      font-weight: 500;
      color: #444;
    }

    .navmenu .dropdown ul a:hover {
      background: rgba(230, 126, 34, 0.05);
      color: var(--accent-color);
    }

    /* CTA Button */
    .cta-btn {
      background: var(--accent-color);
      color: #fff !important;
      padding: 12px 22px !important;
      border-radius: 6px;
      margin-left: 15px;
      font-size: 13px !important;
      font-weight: 600 !important;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      letter-spacing: 0.5px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
      border: none;
    }

    .cta-btn i {
      font-size: 15px;
    }

    .cta-btn:hover {
      background: var(--secondary-color);
      color: #fff !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(44, 62, 80, 0.3);
    }

    .mobile-nav-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #2c3e50;
    }

    /* Hero Section */
    .hero {
      padding: 0;
      position: relative;
    }

    .carousel {
      position: relative;
      height: 85vh;
      min-height: 500px;
      overflow: hidden;
    }

    .carousel-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .carousel-item.active {
      opacity: 1;
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .carousel-item .container {
      position: absolute;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1000px;
      background: rgba(44, 62, 80, 0.75);
      backdrop-filter: blur(5px);
      padding: 35px;
      border-radius: 10px;
      border-top: 4px solid var(--accent-color);
      text-align: center;
      color: #fff;
    }

    .carousel-item h2 {
      color: #fff;
      font-size: 40px;
      margin-bottom: 15px;
      font-weight: 800;
    }

    .carousel-item h2 span {
      color: var(--accent-color);
    }

    .carousel-item p {
      font-size: 17px;
      margin-bottom: 25px;
      opacity: 0.95;
    }

    .btn-get-started {
      display: inline-block;
      background: var(--accent-color);
      color: #fff;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      transition: 0.3s;
      box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
    }

    .btn-get-started:hover {
      background: #fff;
      color: var(--accent-color);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    }

    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(5px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      transition: 0.3s;
      z-index: 10;
      border: 1px solid rgba(255,255,255,0.3);
    }

    .carousel-control:hover {
      background: var(--accent-color);
      border-color: var(--accent-color);
    }

    .carousel-control.prev {
      left: 20px;
    }

    .carousel-control.next {
      right: 20px;
    }

    .carousel-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: 0.3s;
      border: 1px solid rgba(255,255,255,0.3);
    }

    .indicator:hover {
      background: rgba(230, 126, 34, 0.7);
    }

    .indicator.active {
      background: var(--accent-color);
      transform: scale(1.2);
    }

    /* Excellence Section */
    .excellence-section {
      background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    }

    .excellence-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .excellence-image {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
    }

    .excellence-image img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      transition: transform 0.7s;
    }

    .excellence-image:hover img {
      transform: scale(1.08);
    }

    .excellence-badge {
      position: absolute;
      top: 25px;
      right: 25px;
      background: linear-gradient(135deg, #e67e22, #f39c12);
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
      animation: pulse 2s infinite;
    }

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

    .excellence-subtitle {
      color: #e67e22;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .excellence-title {
      color: #2c3e50;
      font-weight: 900;
      font-size: 42px;
      line-height: 1.2;
      margin-bottom: 30px;
      padding-bottom: 25px;
      position: relative;
    }

    .excellence-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #2c3e50, #e67e22);
      border-radius: 2px;
    }

    .excellence-lead {
      font-size: 18px;
      color: #444;
      line-height: 1.8;
      margin-bottom: 30px;
      padding: 25px;
      background: #fff;
      border-radius: 16px;
      border-left: 4px solid #e67e22;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .stat-item {
      background: #fff;
      border-radius: 16px;
      padding: 25px 15px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(44, 62, 80, 0.1);
      border: 1px solid rgba(230, 126, 34, 0.1);
      transition: 0.3s;
    }

    .stat-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(230, 126, 34, 0.15);
    }

    .stat-item h3 {
      color: #2c3e50;
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .stat-item p {
      color: #555;
      font-size: 14px;
      font-weight: 600;
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .service-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-img {
      height: 220px;
      overflow: hidden;
    }

    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s;
    }

    .service-card:hover .service-img img {
      transform: scale(1.15);
    }

    .service-content {
      padding: 30px 25px;
      text-align: center;
      position: relative;
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: var(--accent-color);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: -65px auto 20px;
      border: 5px solid #fff;
      position: relative;
      z-index: 2;
    }

    .service-content h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .service-content p {
      color: #666;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .service-btn {
      display: inline-block;
      background: var(--secondary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      transition: 0.3s;
      border: none;
      cursor: pointer;
    }

    .service-btn:hover {
      background: var(--accent-color);
      color: #fff;
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .features-image img {
      width: 100%;
      border-radius: 12px;
    }

    .features-content h3 {
      font-size: 32px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      position: relative;
    }

    .features-content h3:after {
      content: "";
      position: absolute;
      display: block;
      width: 60px;
      height: 3px;
      background: var(--accent-color);
      left: 0;
      bottom: 0;
    }

    .feature-item {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .feature-item i {
      color: var(--accent-color);
      background: #fff;
      width: 56px;
      height: 56px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: 0.3s;
      flex-shrink: 0;
    }

    .feature-item:hover i {
      background: var(--secondary-color);
      color: #fff;
    }

    .feature-item h4 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .feature-item p {
      color: #666;
      font-size: 14px;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: #fff;
    }

    .cta-wrapper {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 50px;
      background: rgba(255,255,255,0.95);
      border-radius: 30px;
      padding: 50px;
    }

    .cta-badge {
      display: inline-block;
      background: linear-gradient(135deg, #2c3e50, #e67e22);
      color: #fff;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .cta-title {
      font-size: 36px;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 20px;
    }

    .cta-description {
      font-size: 16px;
      color: #444;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .cta-features {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .feature-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(230, 126, 34, 0.1);
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 14px;
      color: #e67e22;
      font-weight: 500;
    }

    .action-card {
      background: linear-gradient(145deg, #f8f9fa, #fff);
      border-radius: 20px;
      padding: 35px;
      text-align: center;
      box-shadow: 15px 15px 40px rgba(44, 62, 80, 0.1);
      border: 1px solid rgba(230, 126, 34, 0.2);
    }

    .action-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #2c3e50, #e67e22);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 36px;
      color: #fff;
    }

    .action-card h4 {
      font-size: 22px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .action-card p {
      color: #666;
      margin-bottom: 25px;
    }

    .action-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .btn-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #2c3e50, #e67e22);
      color: #fff;
      padding: 16px;
      border-radius: 12px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
      color: #fff;
    }

    .btn-secondary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: transparent;
      color: #2c3e50;
      padding: 16px;
      border-radius: 12px;
      font-weight: 600;
      border: 2px solid #2c3e50;
      transition: 0.3s;
    }

    .btn-secondary:hover {
      background: #2c3e50;
      color: #fff;
      transform: translateY(-3px);
    }

    /* Testimonials */
    .testimonials-section {
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .testimonials-header h2 {
      font-size: 40px;
      font-weight: 800;
      background: linear-gradient(135deg, #2c3e50, #e67e22);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 15px;
    }

    .testimonials-header p {
      color: #666;
      font-size: 18px;
    }

    .testimonials-slider {
      max-width: 1000px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: #fff;
      border-radius: 24px;
      padding: 35px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      border: 1px solid rgba(230, 126, 34, 0.1);
      margin: 20px;
    }

    .testimonial-quote {
      font-size: 18px;
      line-height: 1.7;
      color: #475569;
      margin-bottom: 25px;
      font-style: italic;
      position: relative;
      padding-left: 30px;
    }

    .testimonial-quote:before {
      content: '"';
      position: absolute;
      left: 0;
      top: -10px;
      font-size: 50px;
      color: #e67e22;
      opacity: 0.3;
      font-family: serif;
    }

    .testimonial-author h4 {
      font-size: 18px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 5px;
    }

    .testimonial-author span {
      color: #64748b;
      font-size: 14px;
    }

    .testimonial-rating {
      color: #fbbf24;
      margin-top: 8px;
    }

    /* FAQ Section */
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      overflow: hidden;
    }

    .faq-question {
      padding: 20px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.3s;
    }

    .faq-question:hover {
      color: var(--accent-color);
    }

    .faq-question i {
      transition: 0.3s;
    }

    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      padding: 0 20px 20px;
      max-height: 200px;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
      color: var(--accent-color);
    }

    /* Footer */
    .footer {
      background: #1a252f;
      color: #fff;
    }

    .footer-top {
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
    }

    .footer-about p {
      color: #bdc3c7;
      margin: 20px 0;
      font-size: 14px;
      line-height: 1.8;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: var(--accent-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: 0.3s;
    }

    .social-links a:hover {
      background: #fff;
      color: var(--accent-color);
    }

    .footer-links h4 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 25px;
    }

    .footer-links ul {
      list-style: none;
    }

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

    .footer-links a {
      color: #bdc3c7;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: var(--accent-color);
    }

    .footer-contact p {
      color: #bdc3c7;
      margin-bottom: 12px;
      font-size: 14px;
    }

    .footer-contact a {
      color: var(--accent-color);
    }

    .footer-bottom {
      text-align: center;
      padding: 25px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #bdc3c7;
      font-size: 14px;
    }

    /* Scroll Top */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 45px;
      height: 45px;
      background: var(--accent-color);
      color: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 999;
      border: none;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    }

    .scroll-top.active {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      background: var(--secondary-color);
    }

    /* Light Background */
    .light-bg {
      background: #f8f9fa;
    }

    /* Mobile Responsive */
    @media (max-width: 1100px) {
      .navmenu > ul > li > a {
        padding: 10px 10px;
        font-size: 12px;
      }
      
      .cta-btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
        margin-left: 10px;
      }
    }

    @media (max-width: 992px) {
      .nav-wrapper {
        display: none;
      }
      
      .navmenu {
        display: none;
      }
      
      .mobile-nav-toggle {
        display: block;
      }
      
      .navmenu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        padding: 20px;
        z-index: 1000;
      }
      
      .navmenu.active ul {
        flex-direction: column;
        width: 100%;
      }
      
      .navmenu.active li {
        width: 100%;
      }
      
      .navmenu.active a {
        color: #fff;
        padding: 12px 15px;
        display: block;
        width: 100%;
      }
      
      .navmenu .dropdown ul {
        position: static;
        background: rgba(255,255,255,0.1);
        opacity: 1;
        visibility: visible;
        padding-left: 20px;
        box-shadow: none;
        min-width: auto;
      }
      
      .navmenu .dropdown ul a {
        color: rgba(255,255,255,0.9);
      }
      
      .navmenu.active .cta-btn {
        margin: 15px 0 0 0;
        display: inline-flex;
        width: auto;
      }
      
      .excellence-grid,
      .features-grid,
      .cta-wrapper,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .carousel-item .container {
        bottom: 40px;
        padding: 25px;
      }
      
      .carousel-item h2 {
        font-size: 28px;
      }
    }

    @media (max-width: 576px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .excellence-title {
        font-size: 28px;
      }
      
      .cta-title {
        font-size: 24px;
      }
      
      section {
        padding: 50px 0;
      }
      
      .carousel-item h2 {
        font-size: 22px;
      }
      
      .carousel-item p {
        font-size: 14px;
      }
      
      .btn-get-started {
        padding: 12px 25px;
        font-size: 14px;
      }
    }
  