   :root {
       --primary-color: #1a73e8;
       --primary-light: #4285f4;
       --primary-dark: #0d47a1;
       --secondary-color: #ff6d00;
       --secondary-light: #ff9100;
       --secondary-dark: #e65100;
       --light-blue: #e3f2fd;
       --dark-gray: #263238;
       --medium-gray: #546e7a;
       --light-gray: #f5f5f5;
       --gradient-blue: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
       --gradient-orange: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
   }

   .table-responsive {
       overflow-x: auto;
   }

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

   img {
       max-width: 100%;
       height: auto;
   }

   html,
   body {
    overflow-x: hidden !important;
   }
   iframe {
    width: 100%;
    height: 100%;
}

   .sticky-top {
    position: sticky;
    top: 0;
  }

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

   body {
       font-family: 'Poppins', sans-serif;
       color: var(--dark-gray);
       overflow-x: hidden;
       line-height: 1.7;
   }

   h1,
   h2,
   h3,
   h4,
   h5,
   h6 {
       font-family: 'Montserrat', sans-serif;
       font-weight: 700;
   }

   /* Navbar Styles */
   .navbar {
       background-color: rgba(255, 255, 255, 0.95);
       box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
       transition: all 0.4s ease;
       padding: 20px 0;
       backdrop-filter: blur(10px);
   }

   .navbar.scrolled {
       padding: 12px 0;
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
   }

   .navbar-brand {
       font-weight: 900;
       color: var(--primary-color) !important;
       font-size: 1.8rem;
       letter-spacing: -1px;
       display: flex;
       align-items: center;
   }

   .navbar-brand i {
       margin-right: 10px;
       font-size: 1.5rem;
       color: var(--secondary-color);
   }

   .nav-link {
       font-weight: 600;
       color: var(--dark-gray) !important;
       margin: 0 12px;
       transition: all 0.3s ease;
       position: relative;
       font-size: 1.05rem;
   }

   .nav-link:hover {
       color: var(--primary-color) !important;
   }

   .nav-link.active {
       color: var(--primary-color) !important;
   }

   .nav-link.active::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 100%;
       height: 3px;
       background: var(--gradient-orange);
       border-radius: 3px;
   }

   .navbar-toggler {
       border: none;
       padding: 0.5rem;
       font-size: 1.5rem;
       color: var(--primary-color);
   }

   .navbar-toggler:focus {
       box-shadow: none;
   }

   /* Hero Section */
   .hero-section {
       background: linear-gradient(135deg, rgba(26, 115, 232, 0.85), rgba(13, 71, 161, 0.85)),
           url('https://img.freepik.com/free-photo/medium-shot-people-wearing-safety-helmets_23-2149366668.jpg');
       background-size: cover;
       background-position: center;
       background-attachment: fixed;
       color: white;
       padding: 180px 0;
       text-align: center;
       position: relative;
       overflow: hidden;
   }


   .hero-content {
       position: relative;
       z-index: 2;
   }

   .hero-section h1 {
       font-weight: 900;
       font-size: 3.5rem;
       margin-bottom: 20px;
       line-height: 1.2;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
       opacity: 0;
       animation: fadeInUp 1s ease forwards;
   }

   .hero-section p {
       font-size: 1.3rem;
       max-width: 700px;
       margin: 0 auto 40px;
       opacity: 0;
       animation: fadeInUp 1s ease 0.3s forwards;
   }

   .hero-section .btn {
       opacity: 0;
       animation: fadeInUp 1s ease 0.6s forwards;
       position: relative;
       overflow: hidden;
       z-index: 1;
   }

   .hero-section .btn::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: var(--gradient-orange);
       transition: all 0.4s ease;
       z-index: -1;
   }

   .hero-section .btn:hover::before {
       left: 0;
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .btn {
       font-weight: 600;
       border-radius: 50px;
       padding: 14px 32px;
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
       z-index: 1;
       border: none;
   }

   .btn-primary {
       background: var(--gradient-blue);
       box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
   }

   .btn-primary:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(26, 115, 232, 0.4);
   }

   .btn-secondary {
       background: var(--gradient-orange);
       color: white;
       box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
   }

   .btn-secondary:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(255, 109, 0, 0.4);
       color: white;
   }

   /* Section Styles */
   .section {
       padding: 20px 0;
       position: relative;
   }

   .section-title {
       font-weight: 900;
       font-size: 1.5rem;
       margin-bottom: 20px;
       position: relative;
       display: inline-block;
   }

   .section-title::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60px;
       height: 4px;
       background: var(--gradient-orange);
       border-radius: 2px;
   }

   .section-title.center::after {
       left: 50%;
       transform: translateX(-50%);
   }

   .section-subtitle {
       color: var(--medium-gray);
       margin-bottom: 50px;
       font-size: 1.1rem;
   }

   /* About Section */
   .about-section {
       background-color: var(--light-blue);
       position: relative;
       overflow: hidden;
   }

   .about-section::before {
       content: '';
       position: absolute;
       top: 0;
       right: 0;
       width: 300px;
       height: 300px;
       background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%231a73e8" opacity="0.05" d="M41,-53.1C53.9,-41.3,65.7,-29.8,69.5,-15.6C73.3,-1.4,69.1,15.6,60.3,30.7C51.5,45.8,38.1,59.1,21.5,67.2C4.9,75.3,-14.9,78.3,-30.2,70.9C-45.5,63.5,-56.3,45.8,-62.3,27.7C-68.3,9.7,-69.5,-8.7,-63.8,-24.9C-58.1,-41.1,-45.5,-55,-31.9,-66.5C-18.3,-78,-3.7,-87.1,10.1,-90.9C23.9,-94.7,47.8,-93.2,61.6,-81.8C75.4,-70.4,79.1,-49.1,81.7,-29.9C84.3,-10.7,85.8,6.4,80.3,20.5C74.8,34.6,62.3,45.7,48.9,56.7C35.5,67.7,21.2,78.6,5.3,82.7C-10.5,86.8,-26.9,84,-38.5,74.8C-50.1,65.6,-56.9,50,-64.3,34.2C-71.7,18.4,-79.7,2.4,-78.2,-13.1C-76.7,-28.6,-65.7,-43.7,-51.8,-55.6C-37.9,-67.5,-21,-76.2,-3.8,-74.2C13.4,-72.2,26.8,-59.5,41,-53.1Z" transform="translate(100 100)"/></svg>');
       background-size: contain;
       background-repeat: no-repeat;
       opacity: 0.5;
       z-index: 0;
   }

   .about-image {
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
       transform: perspective(1000px) rotateY(-5deg);
       transition: all 0.5s ease;
       position: relative;
       z-index: 1;
   }

   .about-image:hover {
       transform: perspective(1000px) rotateY(0deg);
       box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
   }

   .about-image img {
       transition: all 0.5s ease;
   }

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

   .about-content h3 {
       font-weight: 700;
       margin-bottom: 25px;
       color: var(--primary-dark);
       position: relative;
       padding-bottom: 15px;
   }

   .about-content h3::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 50px;
       height: 3px;
       background: var(--gradient-orange);
       border-radius: 3px;
   }

   .about-stats {
       display: flex;
       margin-top: 40px;
       flex-wrap: wrap;
       gap: 15px;
   }

   .stat-box {
       text-align: center;
       padding: 25px 20px;
       background-color: white;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       flex: 1;
       min-width: 150px;
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
       z-index: 1;
   }

   .stat-box::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 5px;
       background: var(--gradient-blue);
       z-index: 2;
   }

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

   .stat-number {
       font-size: 2.5rem;
       font-weight: 700;
       color: var(--primary-color);
       margin-bottom: 5px;
       font-family: 'Montserrat', sans-serif;
   }

   .stat-box i {
       font-size: 1.5rem;
       color: var(--secondary-color);
       margin-bottom: 15px;
   }

   /* Services Section */
   .services-section {
       position: relative;
       overflow: hidden;
   }

   .services-section::before {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 300px;
       height: 300px;
       background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23ff6d00" opacity="0.05" d="M41,-53.1C53.9,-41.3,65.7,-29.8,69.5,-15.6C73.3,-1.4,69.1,15.6,60.3,30.7C51.5,45.8,38.1,59.1,21.5,67.2C4.9,75.3,-14.9,78.3,-30.2,70.9C-45.5,63.5,-56.3,45.8,-62.3,27.7C-68.3,9.7,-69.5,-8.7,-63.8,-24.9C-58.1,-41.1,-45.5,-55,-31.9,-66.5C-18.3,-78,-3.7,-87.1,10.1,-90.9C23.9,-94.7,47.8,-93.2,61.6,-81.8C75.4,-70.4,79.1,-49.1,81.7,-29.9C84.3,-10.7,85.8,6.4,80.3,20.5C74.8,34.6,62.3,45.7,48.9,56.7C35.5,67.7,21.2,78.6,5.3,82.7C-10.5,86.8,-26.9,84,-38.5,74.8C-50.1,65.6,-56.9,50,-64.3,34.2C-71.7,18.4,-79.7,2.4,-78.2,-13.1C-76.7,-28.6,-65.7,-43.7,-51.8,-55.6C-37.9,-67.5,-21,-76.2,-3.8,-74.2C13.4,-72.2,26.8,-59.5,41,-53.1Z" transform="translate(100 100)"/></svg>');
       background-size: contain;
       background-repeat: no-repeat;
       opacity: 0.5;
       z-index: 0;
   }

   .service-card {
       background-color: white;
       border-radius: 15px;
       padding: 40px 30px;
       text-align: center;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       transition: all 0.4s ease;
       height: 100%;
       position: relative;
       overflow: hidden;
       z-index: 1;
   }

   .service-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 5px;
       background: var(--gradient-blue);
       z-index: 2;
   }

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

   .service-icon {
       font-size: 3.5rem;
       color: var(--primary-color);
       margin-bottom: 25px;
       transition: all 0.4s ease;
       display: inline-block;
   }

   .service-card:hover .service-icon {
       transform: scale(1.2) rotate(5deg);
       color: var(--secondary-color);
   }

   .service-card h4 {
       font-weight: 700;
       margin-bottom: 20px;
       color: var(--dark-gray);
       position: relative;
       padding-bottom: 15px;
   }

   .service-card h4::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 50px;
       height: 3px;
       background: var(--gradient-orange);
       border-radius: 3px;
   }

   .service-card .btn {
       margin-top: 20px;
       padding: 8px 20px;
       font-size: 0.9rem;
   }

   /* Testimonials Section */
   .testimonials-section {
       background-color: var(--light-gray);
       position: relative;
       overflow: hidden;
   }

   .testimonials-section::before {
       content: '';
       position: absolute;
       top: 50px;
       right: 0;
       width: 300px;
       height: 300px;
       background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%231a73e8" opacity="0.05" d="M41,-53.1C53.9,-41.3,65.7,-29.8,69.5,-15.6C73.3,-1.4,69.1,15.6,60.3,30.7C51.5,45.8,38.1,59.1,21.5,67.2C4.9,75.3,-14.9,78.3,-30.2,70.9C-45.5,63.5,-56.3,45.8,-62.3,27.7C-68.3,9.7,-69.5,-8.7,-63.8,-24.9C-58.1,-41.1,-45.5,-55,-31.9,-66.5C-18.3,-78,-3.7,-87.1,10.1,-90.9C23.9,-94.7,47.8,-93.2,61.6,-81.8C75.4,-70.4,79.1,-49.1,81.7,-29.9C84.3,-10.7,85.8,6.4,80.3,20.5C74.8,34.6,62.3,45.7,48.9,56.7C35.5,67.7,21.2,78.6,5.3,82.7C-10.5,86.8,-26.9,84,-38.5,74.8C-50.1,65.6,-56.9,50,-64.3,34.2C-71.7,18.4,-79.7,2.4,-78.2,-13.1C-76.7,-28.6,-65.7,-43.7,-51.8,-55.6C-37.9,-67.5,-21,-76.2,-3.8,-74.2C13.4,-72.2,26.8,-59.5,41,-53.1Z" transform="translate(100 100)"/></svg>');
       background-size: contain;
       background-repeat: no-repeat;
       opacity: 0.5;
       z-index: 0;
   }

   .testimonial-card {
       background-color: white;
       border-radius: 15px;
       padding: 30px;
       margin-bottom: 20px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       transition: all 0.4s ease;
       position: relative;
       height: 100%;
   }

   .testimonial-card::before {
       content: '\201C';
       position: absolute;
       top: 20px;
       right: 30px;
       font-size: 5rem;
       color: rgba(26, 115, 232, 0.1);
       font-family: Georgia, serif;
       line-height: 1;
       z-index: 0;
   }

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

   .testimonial-content {
       font-style: italic;
       margin-bottom: 25px;
       color: var(--medium-gray);
       position: relative;
       z-index: 1;
   }

   .testimonial-rating {
       color: var(--secondary-color);
       margin-bottom: 15px;
       font-size: 1.1rem;
   }

   .testimonial-author {
       display: flex;
       align-items: center;
   }

   .author-image {
       width: 70px;
       height: 70px;
       border-radius: 50%;
       margin-right: 20px;
       object-fit: cover;
       border: 3px solid var(--light-blue);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   }

   .author-info h5 {
       margin-bottom: 5px;
       font-weight: 700;
       color: var(--dark-gray);
   }

   .author-info p {
       margin-bottom: 0;
       color: var(--medium-gray);
       font-size: 0.9rem;
   }

   /* Contact Section */
   .contact-section {
       position: relative;
   }

   .contact-form {
       background-color: white;
       border-radius: 15px;
       padding: 40px;
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
       position: relative;
       overflow: hidden;
   }

   .contact-form::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 5px;
       background: var(--gradient-orange);
       z-index: 1;
   }

   .form-control,
   .form-select {
       border-radius: 10px;
       border: 1px solid #e0e0e0;
       padding: 15px 20px;
       margin-bottom: 20px;
       transition: all 0.3s ease;
       font-size: 1rem;
   }

   .blog-sidebar .form-control {
       margin-bottom: 0px !important;
   }

   .form-control:focus,
   .form-select:focus {
       border-color: var(--primary-color);
       box-shadow: 0 0 0 0.25rem rgba(26, 115, 232, 0.2);
   }

   textarea.form-control {
       min-height: 175px;
   }

   .map-container {
       border-radius: 15px;
       overflow: hidden;
       height: 100%;
       min-height: 450px;
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
       border: 10px solid white;
   }

   .contact-info {
       background: var(--gradient-blue);
       color: white;
       border-radius: 15px;
       padding: 40px;
       height: 100%;
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   }

   .contact-info h3 {
       margin-bottom: 30px;
       position: relative;
       padding-bottom: 15px;
   }

   .contact-info h3::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 50px;
       height: 3px;
       background: white;
       border-radius: 3px;
   }

   .contact-item {
       display: flex;
       align-items: flex-start;
       margin-bottom: 25px;
   }

   .contact-icon {
       font-size: 1.5rem;
       margin-right: 15px;
       color: var(--secondary-color);
       background: white;
       width: 50px;
       height: 50px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
   }

   .contact-text h5 {
       font-weight: 600;
       margin-bottom: 5px;
   }

   /* CTA Banner */
   .cta-banner {
       background: var(--gradient-orange);
       color: white;
       padding: 50px 0;
       text-align: center;
       position: relative;
       overflow: hidden;
   }

   .cta-banner::before {
       content: '';
       position: absolute;
       top: -50px;
       left: -50px;
       width: 200px;
       height: 200px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
   }

   .cta-banner::after {
       content: '';
       position: absolute;
       bottom: -50px;
       right: -50px;
       width: 200px;
       height: 200px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
   }

   .cta-banner h3 {
       font-weight: 700;
       margin-bottom: 15px;
       position: relative;
       z-index: 1;
   }

   .cta-banner p {
       max-width: 700px;
       margin: 0 auto 25px;
       position: relative;
       z-index: 1;
   }

   .cta-banner .btn {
       background-color: white;
       color: var(--secondary-color);
       font-weight: 700;
       box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
       position: relative;
       z-index: 1;
   }

   .cta-banner .btn:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
   }

   /* Footer */
   footer {
       background-color: var(--dark-gray);
       color: white;
       padding: 100px 0 30px;
       position: relative;
   }

   footer::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 10px;
       background: var(--gradient-blue);
   }

   .footer-logo {
       font-weight: 900;
       font-size: 2rem;
       margin-bottom: 25px;
       color: white;
       display: flex;
       align-items: center;
   }

   .footer-logo i {
       margin-right: 10px;
       color: var(--secondary-color);
   }

   .footer-about p {
       color: #bbb;
       margin-bottom: 25px;
   }

   .footer-links h5 {
       font-weight: 700;
       margin-bottom: 25px;
       position: relative;
       padding-bottom: 15px;
       color: white;
   }

   .footer-links h5::after {
       content: '';
       position: absolute;
       left: 0;
       bottom: 0;
       width: 50px;
       height: 3px;
       background: var(--gradient-orange);
   }

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

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

   .footer-links ul li a {
       color: #bbb;
       text-decoration: none;
       transition: all 0.3s ease;
       display: inline-block;
   }

   .footer-links ul li a:hover {
       color: var(--primary-light);
       transform: translateX(5px);
   }

   .footer-contact ul {
       list-style: none;
       padding: 0;
   }

   .footer-contact ul li {
       margin-bottom: 15px;
       display: flex;
       align-items: flex-start;
   }

   .footer-contact ul li i {
       color: var(--secondary-color);
       margin-right: 15px;
       font-size: 1.2rem;
       margin-top: 3px;
   }

   .footer-contact ul li span {
       color: #bbb;
   }

   .social-icons {
       margin-top: 25px;
   }

   .social-icons a {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 45px;
       height: 45px;
       background-color: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       text-align: center;
       line-height: 45px;
       margin-right: 10px;
       color: white;
       transition: all 0.3s ease;
       font-size: 1.2rem;
       text-decoration: none;
   }

   .social-icons a:hover {
       background: var(--gradient-orange);
       transform: translateY(-5px);
   }

   .copyright {
       text-align: center;
       margin-top: 70px;
       padding-top: 30px;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       color: #999;
   }

   /* Floating Elements */
   .floating-whatsapp {
       position: fixed;
       bottom: 30px;
       right: 30px;
       width: 70px;
       height: 70px;
       background: linear-gradient(135deg, #25D366, #128C7E);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 2rem;
       box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
       z-index: 1000;
       transition: all 0.4s ease;
       animation: pulse 2s infinite;
       text-decoration: none;
   }

   .floating-whatsapp:hover {
       transform: scale(1.1) rotate(10deg);
       box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
   }

   @keyframes pulse {
       0% {
           box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
       }

       70% {
           box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
       }

       100% {
           box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
       }
   }

   .sticky-quote {
       position: fixed;
       top: 50%;
       right: 0;
       transform: translateY(-50%);
       background: var(--gradient-orange);
       color: white;
       padding: 20px 12px;
       border-top-left-radius: 10px;
       border-bottom-left-radius: 10px;
       writing-mode: vertical-rl;
       text-orientation: mixed;
       font-weight: 700;
       z-index: 999;
       cursor: pointer;
       transition: all 0.4s ease;
       box-shadow: -5px 5px 20px rgba(255, 109, 0, 0.3);
       text-transform: uppercase;
       letter-spacing: 1px;text-decoration: none;
   }

   .sticky-quote:hover {
       padding: 20px 15px;
       box-shadow: -5px 5px 30px rgba(255, 109, 0, 0.5);
   }

   /* Scroll to Top Button */
   .scroll-to-top {
       position: fixed;
       bottom: 30px;
       left: 30px;
       width: 60px;
       height: 60px;
       background: var(--gradient-blue);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 1.5rem;
       box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
       z-index: 1000;
       opacity: 0;
       visibility: hidden;
       transition: all 0.4s ease;
   }

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

   .scroll-to-top:hover {
       background: var(--gradient-orange);
       transform: translateY(-5px);
       box-shadow: 0 15px 40px rgba(26, 115, 232, 0.6);
   }

   /* Particles Background */
   .particles-js {
       position: absolute;
       width: 100%;
       height: 100%;
       top: 0;
       left: 0;
       z-index: 0;
   }


   /* Responsive */
   @media (max-width: 1199px) {
       .hero-section h1 {
           font-size: 3rem;
       }

       .section-title {
           font-size: 2.2rem;
       }
   }

   @media (max-width: 991px) {
       .hero-section {
           padding: 150px 0;
       }

       .hero-section h1 {
           font-size: 2.5rem;
       }

       .section {
           padding: 80px 0;
       }

       .about-image {
           transform: perspective(1000px) rotateY(0deg);
           margin-bottom: 40px;
       }

       .stat-box {
           min-width: calc(50% - 15px);
       }

       .contact-info {
           margin-top: 40px;
       }
   }

   @media (max-width: 767px) {
       .hero-section {
           padding: 120px 0;
           background-attachment: scroll;
       }

       .hero-section h1 {
           font-size: 2.2rem;
       }

       .hero-section p {
           font-size: 1.1rem;
       }

       .section-title {
           font-size: 1.8rem;
       }

       .stat-box {
           min-width: 100%;
       }

       .sticky-quote {
           display: none;
       }

       .scroll-to-top {
           bottom: 100px;
           left: 20px;
           width: 50px;
           height: 50px;
           font-size: 1.2rem;
       }

       .floating-whatsapp {
           width: 60px;
           height: 60px;
           font-size: 1.8rem;
           bottom: 20px;
           right: 20px;
       }

       .contact-form {
           padding: 30px 20px;
       }
   }

   @media (max-width: 575px) {
       .hero-section h1 {
           font-size: 1.8rem;
       }

       .btn {
           padding: 12px 25px;
       }

       .footer-logo {
           font-size: 1.8rem;
       }
   }

   .d-flex .btn:hover {
       color: #fff
   }

   /* Preloader Styles */
   .preloader {

       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       z-index: 9999;
       transition: opacity 0.5s ease;
       pointer-events: none;


   }

   .preloader-content {
       text-align: center;
       color: white;

   }

   .snowflake {
       font-size: 4rem;
       margin-bottom: 20px;
       animation: spin 2s linear infinite, pulse 1.5s ease-in-out infinite alternate;
   }

   .loading-text {
       font-size: 1.5rem;
       margin-bottom: 20px;
       font-weight: 500;
       animation: fadeInOut 2s ease-in-out infinite;
   }

   .loading-bar {
       width: 300px;
       height: 6px;
       background-color: rgba(255, 255, 255, 0.2);
       border-radius: 3px;
       overflow: hidden;
   }

   .progress {
       height: 100%;
       width: 0%;
       background: var(--gradient-orange);
       border-radius: 3px;
       transition: width 0.3s ease;
   }

   /* Preloader Animations */
   @keyframes spin {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }

   @keyframes pulse {
       0% {
           transform: scale(1);
           opacity: 0.8;
       }

       100% {
           transform: scale(1.1);
           opacity: 1;
       }
   }

   @keyframes fadeInOut {
       0% {
           opacity: 0.7;
       }

       50% {
           opacity: 1;
       }

       100% {
           opacity: 0.7;
       }
   }

   /* Hide after load */
   .preloader.hidden {
       opacity: 0;
       visibility: hidden;
   }


   .privacy-container {

       margin: 50px auto;
       padding: 30px;
       background: white;
       border-radius: 10px;
       box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
   }

   .privacy-header {
       text-align: center;
       margin-bottom: 40px;
   }

   .privacy-header h1 {
       color: var(--primary-color);
       margin-bottom: 15px;
   }

   .privacy-section {
       margin-bottom: 30px;
   }

   .privacy-section h2 {
       color: var(--primary-dark);
       margin-bottom: 15px;
       padding-bottom: 10px;
       border-bottom: 2px solid var(--light-blue);
   }

   .privacy-section h3 {
       color: var(--secondary-color);
       margin: 20px 0 10px;
   }

   .privacy-section p,
   .privacy-section ul {
       margin-bottom: 15px;
       line-height: 1.7;
   }

   .privacy-section ul {
       padding-left: 20px;
   }

   .privacy-section li {
       margin-bottom: 8px;
   }

   .last-updated {
       text-align: right;
       font-style: italic;
       color: var(--medium-gray);
       margin-top: 40px;
   }

   @media (min-width: 1200px) {

       .h1,
       h1 {
           font-size: 1.5rem;
       }

       .h2,
       h2 {
           font-size: 1rem;
       }

       .h3,
       h3 {
           font-size: 0.75rem;
       }
   }


   /* Hero Section */
   .hero-section {
       background: linear-gradient(135deg, rgba(26, 115, 232, 0.85), rgba(13, 71, 161, 0.85)),
           url('https://img.freepik.com/free-photo/medium-shot-people-wearing-safety-helmets_23-2149366668.jpg');
       background-size: cover;
       background-position: center;
       background-attachment: fixed;
       color: white;
       padding: 180px 0;
       text-align: center;
       position: relative;
       overflow: hidden;
   }


   .hero-content {
       position: relative;
       z-index: 2;
   }

   .hero-section h1 {
       font-weight: 900;
       font-size: 3.5rem;
       margin-bottom: 20px;
       line-height: 1.2;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
       opacity: 0;
       animation: fadeInUp 1s ease forwards;
   }

   .hero-section p {
       font-size: 1.3rem;
       max-width: 700px;
       margin: 0 auto 40px;
       opacity: 0;
       animation: fadeInUp 1s ease 0.3s forwards;
   }

   .hero-section .btn {
       opacity: 0;
       animation: fadeInUp 1s ease 0.6s forwards;
       position: relative;
       overflow: hidden;
       z-index: 1;
   }

   .hero-section .btn::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: var(--gradient-orange);
       transition: all 0.4s ease;
       z-index: -1;
   }

   .hero-section .btn:hover::before {
       left: 0;
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .btn {
       font-weight: 600;
       border-radius: 50px;
       padding: 14px 32px;
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
       z-index: 1;
       border: none;
   }

   .btn-primary {
       background: var(--gradient-blue);
       box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
   }

   .btn-primary:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(26, 115, 232, 0.4);
   }

   .btn-secondary {
       background: var(--gradient-orange);
       color: white;
       box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
   }

   .btn-secondary:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(255, 109, 0, 0.4);
       color: white;
   }

   /* Section Styles */
   .section {
       padding: 20px 0;
       position: relative;
   }

   .section-title {
       font-weight: 900;
       font-size: 1.5rem;
       margin-bottom: 20px;
       position: relative;
       display: inline-block;
   }

   .section-title::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60px;
       height: 4px;
       background: var(--gradient-orange);
       border-radius: 2px;
   }

   .section-title.center::after {
       left: 50%;
       transform: translateX(-50%);
   }

   .section-subtitle {
       color: var(--medium-gray);
       margin-bottom: 50px;
       font-size: 1.1rem;
   }


   .maintenance-hero {
       background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(13, 71, 161, 0.8)),
           url('../images/acTechnician.avif');
       background-size: cover;
       background-position: center;
       color: white;
       padding: 100px 0;
       text-align: center;
   }

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

   .plan-intro {
       text-align: center;
       margin-bottom: 50px;
   }

   .plan-cards {
       display: flex;
       flex-wrap: wrap;
       gap: 30px;
       justify-content: center;
   }

   .plan-card {
       background: white;
       border-radius: 15px;
       width: 350px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease;
       position: relative;
   }

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

   .plan-header {
       padding: 25px;
       background: var(--primary-color);
       color: white;
       text-align: center;
   }

   .plan-header h3 {
       font-size: 1.8rem;
       margin-bottom: 10px;
   }

   .plan-price {
       font-size: 2.5rem;
       font-weight: 700;
       margin: 15px 0;
   }

   .plan-price span {
       font-size: 1rem;
       font-weight: 400;
   }

   .plan-features {
       padding: 25px;
   }

   .plan-features ul {
       list-style: none;
       padding: 0;
   }

   .plan-features li {
       padding: 10px 0;
       border-bottom: 1px solid #eee;
       display: flex;
       align-items: center;
   }

   .plan-features li:last-child {
       border-bottom: none;
   }

   .plan-features i {
       color: var(--primary-color);
       margin-right: 10px;
       font-size: 1.2rem;
   }

   .plan-cta {
       padding: 0 25px 25px;
       text-align: center;
   }

   .benefits-section {
       background: var(--light-blue);
       padding: 80px 0;
       margin: 50px 0;
   }

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

   .benefits-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
       margin-top: 40px;
   }

   .benefit-card {
       background: white;
       padding: 30px;
       border-radius: 10px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   }

   .benefit-card i {
       font-size: 2.5rem;
       color: var(--secondary-color);
       margin-bottom: 20px;
   }

   .faq-section {
       padding: 50px 0;
   }

   .faq-container {
       max-width: 800px;
       margin: 0 auto;
   }

   .faq-item {
       margin-bottom: 20px;
       border: 1px solid #eee;
       border-radius: 8px;
       overflow: hidden;
   }

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

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

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

   .special-offer {
       background: var(--gradient-orange);
       color: white;
       padding: 30px;
       border-radius: 10px;
       text-align: center;
       margin: 50px auto;
       max-width: 800px;
   }

   .text-center {
       margin-bottom: 20px;
   }


   /* Blog Specific Styles */
   .blog-hero {
       background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(13, 71, 161, 0.8)),
           url('../images/bg.jpeg');
       background-size: cover;
       background-position: center;
       color: white;
       padding: 120px 0;
       text-align: center;
   }

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

   .blog-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
       gap: 30px;
       margin-top: 40px;
   }

   .blog-card {
       background: white;
       border-radius: 10px;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .blog-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
   }

   .blog-image {
       height: 220px;
       overflow: hidden;
   }

   .blog-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .blog-card:hover .blog-image img {
       transform: scale(1.05);
   }

   .blog-content {
       padding: 25px;
   }

   .blog-category {
       display: inline-block;
       background: var(--light-blue);
       color: var(--primary-color);
       padding: 5px 15px;
       border-radius: 30px;
       font-size: 0.8rem;
       font-weight: 600;
       margin-bottom: 15px;
   }

   .blog-title {
       font-size: 1.4rem;
       margin-bottom: 15px;
       line-height: 1.4;
   }

   .blog-excerpt {
       color: var(--medium-gray);
       margin-bottom: 20px;
   }

   .blog-meta {
       display: flex;
       justify-content: space-between;
       align-items: center;
       font-size: 0.9rem;
       color: var(--medium-gray);
   }

   .blog-author {
       display: flex;
       align-items: center;
   }

   .author-avatar {
       width: 30px;
       height: 30px;
       border-radius: 50%;
       margin-right: 10px;
   }

   .blog-featured {
       grid-column: span 2;
       display: flex;
   }

   .blog-featured .blog-image {
       width: 50%;
       height: auto;
   }

   .blog-featured .blog-content {
       width: 50%;
   }

   .blog-sidebar {
       margin-top: 50px;
   }

   .sidebar-widget {
       background: white;
       border-radius: 10px;
       padding: 25px;
       margin-bottom: 30px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   }

   .widget-title {
       font-size: 1.2rem;
       margin-bottom: 20px;
       padding-bottom: 10px;
       border-bottom: 2px solid var(--light-blue);
   }

   .categories-list {
       list-style: none;
       padding: 0;
   }

   .categories-list li {
       margin-bottom: 10px;
   }

   .categories-list a {
       color: var(--dark-gray);
       text-decoration: none;
       transition: color 0.3s ease;
       display: flex;
       justify-content: space-between;
   }

   .categories-list a:hover {
       color: var(--primary-color);
   }

   .categories-list span {
       background: var(--light-gray);
       padding: 2px 8px;
       border-radius: 10px;
       font-size: 0.8rem;
   }

   .popular-posts {
       list-style: none;
       padding: 0;
   }

   .popular-post {
       display: flex;
       margin-bottom: 15px;
       padding-bottom: 15px;
       border-bottom: 1px solid #eee;
   }

   .popular-post:last-child {
       border-bottom: none;
       margin-bottom: 0;
       padding-bottom: 0;
   }

   .popular-post img {
       width: 80px;
       height: 60px;
       object-fit: cover;
       border-radius: 5px;
       margin-right: 15px;
   }

   .popular-post h4 {
       font-size: 0.95rem;
       margin-bottom: 5px;
   }

   .popular-post-date {
       font-size: 0.8rem;
       color: var(--medium-gray);
   }

   .newsletter-form {
       margin-top: 20px;
   }

   .newsletter-form input {
       width: 100%;
       padding: 12px 15px;
       border: 1px solid #ddd;
       border-radius: 5px;
       margin-bottom: 15px;
   }

   .pagination {
       display: flex;
       justify-content: center;
       margin-top: 50px;
   }

   .page-numbers {
       display: flex;
       list-style: none;
       padding: 0;
   }

   .page-numbers li {
       margin: 0 5px;
   }

   .page-numbers a {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 40px;
       height: 40px;
       border-radius: 5px;
       background: white;
       color: var(--dark-gray);
       text-decoration: none;
       transition: all 0.3s ease;
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   }

   .page-numbers a:hover,
   .page-numbers .current {
       background: var(--primary-color);
       color: white;
   }

   @media (max-width: 991px) {
       .blog-featured {
           grid-column: span 1;
           flex-direction: column;
       }

       .blog-featured .blog-image,
       .blog-featured .blog-content {
           width: 100%;
       }
   }

   @media (max-width: 767px) {
       .blog-grid {
           grid-template-columns: 1fr;
       }

       .blog-hero {
           padding: 80px 0;
       }
   }


   /* Blog Detail Hero */
   .blog-detail-hero {
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
       padding: 8rem 0 4rem;
       position: relative;
       overflow: hidden;
   }

   .blog-detail-hero::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
       opacity: 0.5;
   }

   .blog-detail-hero .container {
       position: relative;
       z-index: 2;
   }

   .breadcrumb {
       background: transparent;
       padding: 0;
       margin-bottom: 2rem;
   }

   .breadcrumb-item {
       color: rgba(255, 255, 255, 0.8);
   }

   .breadcrumb-item.active {
       color: white;
   }

   .breadcrumb-item+.breadcrumb-item::before {
       content: "›";
       color: rgba(255, 255, 255, 0.6);
   }

   .blog-detail-title {
       font-family: 'Montserrat', sans-serif;
       font-weight: 700;
       font-size: 3rem;
       margin-bottom: 1.5rem;
       line-height: 1.2;
   }

   .blog-detail-meta {
       display: flex;
       align-items: center;
       gap: 2rem;
       margin-bottom: 2rem;
       flex-wrap: wrap;
   }

   .blog-author {
       display: flex;
       align-items: center;
       gap: 0.8rem;
   }

   .author-avatar {
       width: 50px;
       height: 50px;
       border-radius: 50%;
       border: 3px solid rgba(255, 255, 255, 0.3);
   }

   .blog-category {
       background: rgba(255, 255, 255, 0.2);
       padding: 0.3rem 1rem;
       border-radius: 20px;
       font-size: 0.9rem;
       backdrop-filter: blur(10px);
   }

   /* Main Content */
   .section {
       padding: 1rem 0;
   }

   .blog-content {
       background: white;
       border-radius: 20px;
       padding: 1rem;
       /* box-shadow: 0 10px 40px rgba(0,0,0,0.1); */
       margin-bottom: 1rem;
   }

   .blog-featured-image {
       width: 100%;
       height: 400px;
       object-fit: cover;
       border-radius: 15px;
       margin-bottom: 2rem;
   }

   .blog-content h2 {
       font-family: 'Montserrat', sans-serif;
       font-weight: 700;
       color: #333;
       margin: 2rem 0 1rem;
       font-size: 1.5rem;
   }

   .blog-content h3 {
       font-family: 'Montserrat', sans-serif;
       font-weight: 600;
       color: #333;
       margin: 1.5rem 0 0.8rem;
       font-size: 1.3rem;
   }

   .blog-content p {
       margin-bottom: 1.5rem;
       line-height: 1.8;
       color: #555;
   }

   .blog-content ul,
   .blog-content ol {
       margin-bottom: 1.5rem;
       padding-left: 2rem;
   }

   .blog-content li {
       margin-bottom: 0.5rem;
       color: #555;
   }

   .tip-box {
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
       padding: 2rem;
       border-radius: 15px;
       margin: 2rem 0;
       position: relative;
       overflow: hidden;
   }

   .tip-box::before {
       content: '';
       position: absolute;
       top: -50%;
       right: -50%;
       width: 100%;
       height: 100%;
       background: rgba(255, 255, 255, 0.1);
       transform: rotate(45deg);
   }

   .tip-box h4 {
       font-family: 'Montserrat', sans-serif;
       font-weight: 700;
       margin-bottom: 1rem;
       position: relative;
       z-index: 2;
   }

   .tip-box p {
       color: rgba(255, 255, 255, 0.9);
       position: relative;
       z-index: 2;
       margin-bottom: 0;
   }

   /* Sidebar */
   .blog-sidebar {
       position: sticky;
       top: 2rem;
   }

   .sidebar-widget {
       background: white;
       padding: 2rem;
       border-radius: 15px;
       box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
       margin-bottom: 2rem;
   }

   .widget-title {
       font-family: 'Montserrat', sans-serif;
       font-weight: 700;
       margin-bottom: 1.5rem;
       color: #333;
       position: relative;
   }

   .widget-title::after {
       content: '';
       position: absolute;
       bottom: -0.5rem;
       left: 0;
       width: 50px;
       height: 3px;
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       border-radius: 2px;
   }

   .search-form .input-group {
       border-radius: 50px;
       overflow: hidden;
       box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
   }

   .search-form .form-control {
       border: none;
       padding: 0.8rem 1.5rem;
       background: #f8f9fa;
   }

   .search-form .btn {
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       border: none;
       padding: 0.8rem 1.5rem;
   }

   .categories-list {
       list-style: none;
       padding: 0;
   }

   .categories-list li {
       border-bottom: 1px solid #eee;
       padding: 0.8rem 0;
   }

   .categories-list li:last-child {
       border-bottom: none;
   }

   .categories-list a {
       text-decoration: none;
       color: #555;
       display: flex;
       justify-content: space-between;
       align-items: center;
       transition: color 0.3s ease;
   }

   .categories-list a:hover {
       color: #667eea;
   }

   .categories-list span {
       background: #f0f0f0;
       padding: 0.2rem 0.6rem;
       border-radius: 10px;
       font-size: 0.8rem;
   }

   .popular-posts {
       list-style: none;
       padding: 0;
   }

   .popular-post {
       display: flex;
       gap: 1rem;
       margin-bottom: 1.5rem;
       padding-bottom: 1.5rem;
       border-bottom: 1px solid #eee;
   }

   .popular-post:last-child {
       border-bottom: none;
       margin-bottom: 0;
       padding-bottom: 0;
   }

   .popular-post img {
       width: 80px;
       height: 80px;
       object-fit: cover;
       border-radius: 10px;
       flex-shrink: 0;
   }

   .popular-post h4 {
       font-size: 0.9rem;
       margin-bottom: 0.5rem;
       line-height: 1.4;
   }

   .popular-post-date {
       font-size: 0.8rem;
       color: #888;
   }

   .newsletter-form {
       display: flex;
       flex-direction: column;
       gap: 1rem;
   }

   .newsletter-form input {
       padding: 0.8rem;
       border: 1px solid #ddd;
       border-radius: 10px;
   }

   .newsletter-form .btn-primary {
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       border: none;
       padding: 0.8rem;
       border-radius: 10px;
   }

   /* Comments Section */
   .comments-section {
       background: white;
       padding: 3rem;
       border-radius: 20px;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
       margin-bottom: 3rem;
   }

   .comment {
       border-bottom: 1px solid #eee;
       padding: 2rem 0;
   }

   .comment:last-child {
       border-bottom: none;
   }

   .comment-header {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin-bottom: 1rem;
   }

   .comment-avatar {
       width: 50px;
       height: 50px;
       border-radius: 50%;
   }

   .comment-form {
       background: #f8f9fa;
       padding: 2rem;
       border-radius: 15px;
       margin-top: 2rem;
   }

   .comment-form .form-control {
       border: none;
       background: white;
       padding: 0.8rem 1rem;
       border-radius: 10px;
       margin-bottom: 1rem;
   }

   .comment-form textarea {
       min-height: 120px;
   }

   /* Related Posts */
   .related-posts {
       background: white;
       padding: 3rem;
       border-radius: 20px;
       box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   }

   .related-post-card {
       background: #f8f9fa;
       border-radius: 15px;
       overflow: hidden;
       transition: transform 0.3s ease;
   }

   .related-post-card:hover {
       transform: translateY(-5px);
   }

   .related-post-image {
       width: 100%;
       height: 200px;
       object-fit: cover;
   }

   .related-post-content {
       padding: 1.5rem;
   }

   .related-post-title {
       font-size: 1rem;
       margin-bottom: 0.5rem;
       line-height: 1.4;
   }

   .related-post-date {
       font-size: 0.8rem;
       color: #888;
   }

   /* Footer */
   footer {
       background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
       color: white;
       padding: 4rem 0 2rem;
   }

   .footer-logo {
       font-family: 'Montserrat', sans-serif;
       font-weight: 700;
       font-size: 1.8rem;
       margin-bottom: 1rem;
   }

   .footer-about p {
       color: rgba(255, 255, 255, 0.8);
       line-height: 1.8;
   }

   .social-icons {
       display: flex;
       gap: 1rem;
       margin-top: 2rem;
   }

   .social-icons a {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 45px;
       height: 45px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       color: white;
       text-decoration: none;
       transition: all 0.3s ease;
   }

   .social-icons a:hover {
       background: rgba(255, 255, 255, 0.2);
       transform: translateY(-3px);
   }

   .footer-links h5 {
       margin-bottom: 1.5rem;
       font-weight: 600;
   }

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

   .footer-links ul li {
       margin-bottom: 0.8rem;
   }

   .footer-links ul li a {
       color: rgba(255, 255, 255, 0.8);
       text-decoration: none;
       transition: color 0.3s ease;
   }

   .footer-links ul li a:hover {
       color: white;
   }

   .footer-contact ul {
       list-style: none;
       padding: 0;
   }

   .footer-contact ul li {
       display: flex;
       align-items: flex-start;
       gap: 0.8rem;
       margin-bottom: 1rem;
       color: rgba(255, 255, 255, 0.8);
   }

   .footer-contact ul li i {
       margin-top: 0.2rem;
       color: #667eea;
   }

   .copyright {
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       padding-top: 2rem;
       margin-top: 3rem;
       text-align: center;
       color: rgba(255, 255, 255, 0.6);
   }

   .copyright a {
       color: #667eea;
       text-decoration: none;
   }

   /* Floating Elements */
   .floating-whatsapp {
       position: fixed;
       bottom: 2rem;
       right: 2rem;
       width: 60px;
       height: 60px;
       background: #25D366;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 1.8rem;
       text-decoration: none;
       box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
       animation: float 3s ease-in-out infinite;
       z-index: 1000;
   }

   @keyframes float {

       0%,
       100% {
           transform: translateY(0);
       }

       50% {
           transform: translateY(-10px);
       }
   }

   .scroll-to-top {
       position: fixed;
       bottom: 2rem;
       left: 2rem;
       width: 50px;
       height: 50px;
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       cursor: pointer;
       box-shadow: 0 5px 25px rgba(102, 126, 234, 0.4);
       opacity: 0;
       visibility: hidden;
       transition: all 0.3s ease;
       z-index: 1000;
   }

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

   .scroll-to-top:hover {
       transform: translateY(-3px);
   }

   /* Responsive Design */
   @media (max-width: 768px) {
       .blog-detail-title {
           font-size: 2rem;
       }

       .blog-detail-meta {
           gap: 1rem;
       }

       .blog-content {
           padding: 2rem 1.5rem;
       }

       .comments-section,
       .related-posts {
           padding: 2rem 1.5rem;
       }

       .floating-whatsapp {
           bottom: 1rem;
           right: 1rem;
           width: 50px;
           height: 50px;
           font-size: 1.5rem;
       }

       .scroll-to-top {
           bottom: 1rem;
           left: 1rem;
           width: 40px;
           height: 40px;
       }
   }

   /* Animation Classes */
   .fade-up {
       animation: fadeUp 0.8s ease-out;
   }

   @keyframes fadeUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Quote Page Specific Styles */
   .quote-hero {
       background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1622737133809-d95047b9e673?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
       padding: 120px 0 80px;
       color: white;
       text-align: center;
   }

   .quote-section {
       padding: 80px 0;
   }

   .quote-card {
       background: white;
       border-radius: 15px;
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
       padding: 40px;
       margin-bottom: 40px;
   }

   .quote-card h3 {
       margin-bottom: 25px;
       color: #007bff;
       position: relative;
       padding-bottom: 15px;
       font-size: medium;
   }

   .quote-card h3:after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 60px;
       height: 3px;
       background: #007bff;
   }

   .form-control,
   .form-select {
       padding: 12px 15px;
       border-radius: 8px;
       border: 2px solid #e1e5ee;
       margin-bottom: 20px;
       transition: all 0.3s ease;
   }

   .form-control:focus,
   .form-select:focus {
       border-color: #007bff;
       box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
   }

   .btn-quote {
       background: linear-gradient(135deg, #007bff, #0062cc);
       border: none;
       padding: 12px 30px;
       font-weight: 600;
       border-radius: 8px;
       transition: all 0.3s ease;
       width: 100%;
       margin-top: 10px;
   }

   .btn-quote:hover {
       transform: translateY(-3px);
       box-shadow: 0 10px 20px rgba(0, 123, 255, 0.25);
   }

   .benefits-list {
       list-style: none;
       padding: 0;
   }

   .benefits-list li {
       padding: 12px 0;
       border-bottom: 1px solid #eaeaea;
       position: relative;
       padding-left: 35px;
   }

   .benefits-list li:last-child {
       border-bottom: none;
   }

   .benefits-list li i {
       position: absolute;
       left: 0;
       top: 12px;
       color: #007bff;
       font-size: 20px;
   }

   .quote-process {
       background: #f8f9fa;
       padding: 60px 0;
   }

   .process-step {
       text-align: center;
       padding: 20px;
   }

   .step-number {
       display: inline-block;
       width: 50px;
       height: 50px;
       background: #007bff;
       color: white;
       border-radius: 50%;
       line-height: 50px;
       font-weight: bold;
       font-size: 20px;
       margin-bottom: 20px;
   }

   .quote-callout {
       background: linear-gradient(135deg, #007bff, #0062cc);
       color: white;
       border-radius: 15px;
       padding: 38px;
       margin-top: 30px;
       text-align: center;
   }

   @media (max-width: 768px) {
       .quote-card {
           padding: 25px;
       }

       .quote-hero h1 {
           font-size: 32px;
       }
   }



   .commercial-hero {
       background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/photo-1635070041078-e363dbe005cb.jpeg') no-repeat center center/cover;
       color: white;
       padding: 100px 0;
       text-align: center;
   }

   .hero-content {
       max-width: 800px;
       margin: 0 auto;
   }

   .hero-content h1 {
       font-size: 3.5rem;
       margin-bottom: 20px;
       color: white;
       text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
   }

   .hero-content p {
       font-size: 1.4rem;
       margin-bottom: 30px;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
   }

   /* Features Section */
   .features {
       padding: 80px 0;
       background-color: white;
   }

   .section-title {
       text-align: center;
       margin-bottom: 60px;
       position: relative;
   }

   .section-title h2 {
       font-size: 1.5rem;
       display: inline-block;
       padding-bottom: 15px;
   }

   .section-title h2:after {
       content: '';
       position: absolute;
       width: 80px;
       height: 4px;
       background: var(--accent);
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
   }

   .features-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }

   .feature-card {
       background: white;
       border-radius: 10px;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
   }

   .feature-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
   }

   .feature-img {
       height: 200px;
       overflow: hidden;
   }

   .feature-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .feature-card:hover .feature-img img {
       transform: scale(1.1);
   }

   .feature-content {
       padding: 25px;
   }

   .feature-content h3 {
       font-size: 1.5rem;
       margin-bottom: 15px;
       color: var(--primary);
   }

   .feature-content p {
       color: #666;
       margin-bottom: 20px;
   }

   /* Services Section */
   .services {
       padding: 80px 0;
       background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
   }

   .services-container {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }

   .service-card {
       background: white;
       border-radius: 10px;
       padding: 40px 30px;
       text-align: center;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       transition: all 0.3s ease;
       position: relative;
       overflow: hidden;
   }

   .service-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

   .service-icon {
       width: 80px;
       height: 80px;
       background: rgba(0, 168, 232, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 25px;
       color: var(--secondary);
       font-size: 2rem;
   }

   .service-card h3 {
       font-size: 1.5rem;
       margin-bottom: 15px;
   }

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

   .benefits {
       padding: 80px 0;
       background-color: white;
   }

   .benefits-container {
     
       flex-wrap: wrap;
       gap: 40px;
   }

   .benefits-content {
       flex: 1;
       min-width: 300px;
   }

   .benefits-image {
       flex: 1;
       min-width: 300px;
       border-radius: 10px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   }

   .benefits-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }

   .benefit-item {
       display: flex;
       margin-bottom: 30px;
   }

   .benefit-icon {
       width: 60px;
       height: 60px;
       background: rgba(0, 204, 153, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--accent);
       font-size: 1.5rem;
       flex-shrink: 0;
       margin-right: 20px;
   }

   .benefit-text h4 {
       font-size: 1.3rem;
       margin-bottom: 10px;
   }

   .cta-section {
       background: linear-gradient(135deg, var(--primary), var(--secondary));
       padding: 80px 0;
       text-align: center;
   }

   .cta-section h2 {
       font-size: 2.5rem;
       margin-bottom: 20px;
   }

   .cta-section p {
       font-size: 1.2rem;
       max-width: 700px;
       margin: 0 auto 40px;
   }



   /* Responsive */
   @media (max-width: 768px) {
       .header-container {
           flex-direction: column;
       }

       nav ul {
           margin-top: 20px;
       }

       .hero-content h1 {
           font-size: 2.5rem;
       }

       .hero-content p {
           font-size: 1.1rem;
       }
   }

