
    :root {
      --primary: #e63946;
      --primary-red: #e63946;
      --primary-blue: #1d3557;
      --secondary: #1d3557;
      --light-blue: #457b9d;
      --light-bg: #f8f9fa;
      --dark-bg: #0f172a;
      --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
      --red-gradient: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
html , body {
  max-width: 100vw;
  overflow-x: hidden;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary-blue);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--light-blue);
    }
    
    /* Navigation */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      padding: 15px 0;
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand img {
      height: 50px;
      transition: all 0.3s ease;
    }
    
    .nav-link {
      color: var(--primary-blue) !important;
      font-weight: 500;
      margin: 0 8px;
      transition: all 0.3s ease;
      position: relative;
      padding: 8px 12px !important;
      border-radius: 6px;
    }
    
    .nav-link:hover {
      color: var(--primary-red) !important;
      background: rgba(230, 57, 70, 0.05);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background: var(--primary-red);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    
    .nav-link:hover::after {
      width: 80%;
    }
    
    .btn-primary {
      background: var(--red-gradient);
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary::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: all 0.6s ease;
    }
    
    .btn-primary:hover::before {
      left: 100%;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    }
    
    .btn-outline-primary {
      border: 2px solid var(--primary-blue);
      color: var(--primary-blue);
      background: transparent;
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-outline-primary:hover {
      background: var(--primary-blue);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(29, 53, 87, 0.3);
    }
    
    /* Hero Section */
    .hero-section {
      background: var(--gradient);
      color: white;
      padding: 180px 0 120px;
      position: relative;
      overflow: hidden;
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
      background-size: cover;
      background-position: center;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
    }
    
    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.1;
    }
    
    .hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 35px;
      opacity: 0.9;
      max-width: 600px;
    }
    
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 40px;
    }
    
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }
    
    .stat-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .stat-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .stat-text {
      display: flex;
      flex-direction: column;
    }
    
    .stat-number {
      font-size: 1.5rem;
      font-weight: 700;
    }
    
    .stat-label {
      font-size: 0.9rem;
      opacity: 0.8;
    }
    
    .hero-image {
      position: relative;
      z-index: 1;
    }
    
    .floating-card {
      position: absolute;
      background: white;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 15px;
      animation: float 6s ease-in-out infinite;
      color: black;
    }
    
    .floating-card:nth-child(1) {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }
    
    .floating-card:nth-child(2) {
      bottom: 20%;
      right: 10%;
      animation-delay: 2s;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }
    
    .section-title {
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 50px;
      position: relative;
      text-align: center;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--primary-red);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    /* Services Section */
    .services-section {
      padding: 100px 0;
      background-color: var(--light-bg);
    }
    
    .service-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border-top: 4px solid var(--primary-blue);
      position: relative;
      overflow: hidden;
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: var(--gradient);
      transition: all 0.4s ease;
      z-index: 0;
      opacity: 0.05;
    }
    
    .service-card:hover::before {
      height: 100%;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon {
      width: 80px;
      height: 80px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 30px;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(5deg);
    }
    
    .service-title {
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }
    
    .service-description {
      position: relative;
      z-index: 1;
    }
    
    /* About Section */
    .about-section {
      padding: 100px 0;
      background: white;
    }
    
    .about-image {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      position: relative;
    }
    
    .about-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      opacity: 0.1;
      z-index: 1;
    }
    
    .about-features {
      margin-top: 30px;
    }
    
    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
      background: var(--light-bg);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-blue);
      font-size: 20px;
      flex-shrink: 0;
    }
    
    /* Pricing Section */
    .pricing-section {
      padding: 100px 0;
      background: var(--light-bg);
    }
    
    .price-card {
      background: 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;
      position: relative;
      overflow: hidden;
    }
    
    .price-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--primary-blue);
    }
    
    .price-card.featured {
      transform: scale(1.05);
      border: 2px solid var(--primary-red);
    }
    
    .price-card.featured::before {
      background: var(--primary-red);
      height: 5px;
    }
    
    .price-card.featured::after {
      content: 'POPULAR';
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--primary-red);
      color: white;
      padding: 5px 30px;
      transform: rotate(45deg);
      font-size: 12px;
      font-weight: 600;
    }
    
    .price-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .price-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
    }
    
    .price-title {
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 20px;
    }
    
    .price-amount {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 10px;
    }
    
    .price-period {
      color: #777;
      margin-bottom: 30px;
    }
    
    .price-features {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }
    
    .price-features li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }
    
    .price-features li::before {
      content: '\f00c';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--primary-red);
    }
    
    /* Certifications Section */
    .certifications {
      padding: 80px 0;
      background: white;
    }
    
    .cert-logo {
      transition: all 0.3s ease;
    }
    
    .cert-logo:hover {
      filter: grayscale(0);
      opacity: 1;
      transform: scale(1.05);
    }
    
    /* Contact Section */
    .contact-section {
      padding: 100px 0;
      background: var(--light-bg);
    }
    
    .contact-info {
      background: var(--gradient);
      color: white;
      padding: 40px;
      border-radius: 15px;
      height: 100%;
      box-shadow: var(--shadow);
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 15px;
      height: 100%;
      box-shadow: var(--shadow);
    }
    
    .form-control {
      padding: 12px 15px;
      border-radius: 10px;
      border: 1px solid #ddd;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      box-shadow: 0 0 0 3px rgba(29, 53, 87, 0.1);
      border-color: var(--primary-blue);
    }
    
    /* Footer */
    .footer {
      background: var(--dark-bg);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-links h5 {
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-links h5::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background: var(--primary-red);
      bottom: 0;
      left: 0;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      margin-top: 40px;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
    }
    
    /* WhatsApp Float Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 1000;
    }
    
    .whatsapp-btn {
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 30px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      text-decoration: none;
    }
    
    .whatsapp-btn:hover {
      transform: scale(1.1);
      color: white;
    }
    
    @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);
      }
    }
    
    /* Areas Covered Section */
    .areas-section {
      padding: 80px 0;
      background: white;
    }
    
    .area-card {
      background: var(--light-bg);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .area-card:hover {
      background: var(--gradient);
      color: white;
      transform: translateY(-5px);
    }
    
    .area-icon {
      font-size: 2rem;
      margin-bottom: 15px;
      color: var(--primary-blue);
    }
    
    .area-card:hover .area-icon {
      color: white;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .price-card.featured {
        transform: scale(1);
      }
      
      .price-card.featured:hover {
        transform: translateY(-10px);
      }
      
      .hero-stats {
        justify-content: center;
      }
      
    }

        
/* Preloader Styles */
#preloader {
  position: fixed;
  z-index: 9999;
  background: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
    width: 250px;
    max-width: 90%;
    margin-bottom: 0px;

}

.seo-content{
  display: none;
}

#contact .col-lg-7 {
  height: max-content;
}

    .modal-content {
      border-radius: var(--border-radius);
      border: none;
      box-shadow: var(--box-shadow);
      overflow: hidden;
    }

    .modal-header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border-bottom: none;
      padding: 20px 30px;
    }

    .modal-header .btn-close {
      filter: invert(1);
    }

    .modal-body {
      padding: 0;
    }

    .quote-engine-wrapper {
      position: relative;
      min-height: 500px;
    }

    .step-container {
      padding: 30px;
      display: none;
    }

    .step-container.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .step-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .step-title {
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 10px;
    }

    .step-subtitle {
      color: #6c757d;
      font-size: 0.9rem;
    }

    .option-card {
      border: 2px solid #e9ecef;
      border-radius: var(--border-radius);
      padding: 20px;
      margin-bottom: 15px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
    }

    .option-card:hover {
      border-color: var(--accent-color);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .option-card.selected {
      border-color: var(--primary);
      background-color: rgba(67, 97, 238, 0.05);
    }

    .option-card input {
      margin-right: 15px;
      transform: scale(1.2);
    }

    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }

    .checkbox-option {
      border: 2px solid #e9ecef;
      border-radius: var(--border-radius);
      padding: 15px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
    }

    .checkbox-option:hover {
      border-color: var(--accent-color);
    }

    .checkbox-option.selected {
      border-color: var(--primary);
      background-color: rgba(67, 97, 238, 0.05);
    }

    .checkbox-option input {
      margin-right: 10px;
    }

    .form-control {
      border-radius: 8px;
      padding: 12px 15px;
      border: 2px solid #e9ecef;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
    }

    .form-label {
      font-weight: 600;
      color: var(--dark-color);
      margin-bottom: 8px;
    }

    .file-upload {
      position: relative;
      overflow: hidden;
      display: inline-block;
      width: 100%;
    }

    .file-upload-btn {
      background-color: var(--light-color);
      border: 2px dashed #dee2e6;
      border-radius: var(--border-radius);
      padding: 40px 20px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
    }

    .file-upload-btn:hover {
      border-color: var(--accent-color);
      background-color: rgba(67, 97, 238, 0.05);
    }

    .file-upload input[type="file"] {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .progress-container {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      position: relative;
    }

    .progress-container::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 0;
      right: 0;
      height: 4px;
      background-color: #e9ecef;
      z-index: 1;
    }

    .progress-bar {
      position: absolute;
      top: 15px;
      left: 0;
      height: 4px;
      background-color: var(--primary);
      z-index: 2;
      transition: width 0.5s ease;
    }

    .step-indicator {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background-color: #e9ecef;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #6c757d;
      position: relative;
      z-index: 3;
      transition: var(--transition);
    }

    .step-indicator.active {
      background-color: var(--primary);
      color: white;
    }

    .step-label {
      position: absolute;
      top: 40px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.75rem;
      color: #6c757d;
      white-space: nowrap;
    }

    .step-indicator.active + .step-label {
      color: var(--primary);
      font-weight: 600;
    }

    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
      border-radius: 8px;
      padding: 12px 30px;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-primary:hover {
      background-color: var(--secondary);
      border-color: var(--secondary);
      transform: translateY(-2px);
    }

    .btn-outline-primary {
      border-color: var(--primary);
      color: var(--primary);
      border-radius: 8px;
      padding: 12px 30px;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-outline-primary:hover {
      background-color: var(--primary);
      color: white;
    }

    .navigation-buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 30px;
    }

    .form-check {
      margin-bottom: 15px;
    }

    .form-check-input:checked {
      background-color: var(--primary);
      border-color: var(--primary);
    }

    .summary-item {
      background-color: #f8f9fa;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
    }

    .summary-label {
      font-weight: 600;
      color: #6c757d;
      margin-bottom: 5px;
    }

    .summary-value {
      color: var(--dark-color);
    }

    .confirmation-message {
      text-align: center;
      padding: 40px 20px;
    }

    .confirmation-icon {
      font-size: 4rem;
      color: var(--success-color);
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      .checkbox-grid {
        grid-template-columns: 1fr;
      }
      
      .step-container {
        padding: 20px;
      }
    }