        /* Header Styles */
        .main-header {
          background: #fff;
         
          position: sticky;
          top: 0;
          z-index: 1000;
         
         
   
          transition: all 0.3s ease;
      }

      .navbar-brand img {
        max-height: 50px;  
        width: auto;  
        transition: all 0.3s ease;
    }

    
      .main-header {
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .navbar-brand img {
        max-height: 50px;
        width: auto;
        transition: all 0.3s ease;
    }

   
    .nav-item {
        margin: 0 10px;
        position: relative;
    }

    .nav-link {
        color: #333 !important;
        font-weight: 600;
        transition: all 0.3s ease;
        padding: 10px 15px !important;
    }

    .nav-link:hover {
        color: #db212a !important;
    }


     
      .dropdown-menu {
          border: none;
          box-shadow: 0 5px 25px rgba(0,0,0,0.1);
          opacity: 0;
          transform: translateY(10px);
          transition: all 0.3s ease;
          display: block;
          visibility: hidden;
      }

      .dropdown:hover .dropdown-menu {
          opacity: 1;
          transform: translateY(0);
          visibility: visible;
      }

      .dropdown-item {
          transition: all 0.2s ease;
      }

      .dropdown-item:hover {
          background: #c00;
          color: #fff !important;
          transform: translateX(5px);
      }


    .offcanvas {
        border-radius: 20px 0 0 20px;
    }

    .navbar-toggler {
        border: none;
        padding: 0.75rem;
    }

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

      @media (max-width: 991px) {
        .main-header {
            padding: 10px 0;
        }
        
        .navbar-brand img {
            height: 45px;
        }
      }
      .where-to-buy-btn {
        display: inline-block;
        padding: 12px 35px;
        border: 2px solid #a00;
        color: #a00;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        background: transparent;
        margin-left: 20px;
    }
    
    .where-to-buy-btn:hover {
        color: #fff;
        background: #a00;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    }
    
    .where-to-buy-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    .where-to-buy-btn:hover::after {
        width: 70%;
        left: 15%;
    }
    
   
    @media (max-width: 991px) {
        .desktop-only {
            display: none !important;
        }
    }



    body {
        background: #f8f9fa; 
    }
    .top-bar-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: #f8f9fa;
    text-decoration: none;
}

.request-quote-btn {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    color: #2c3e50 !important;
    padding: 8px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    transition: all 0.3s ease;
    border: 2px solid #e0e7ed;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.request-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-color: #8c031a;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.request-quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: all 0.5s;
}

.request-quote-btn:hover::before {
    left: 100%;
}

@media (max-width: 991px) {
  .request-quote-btn {
        margin-top: 10px;
        padding: 8px 20px;
        font-size: 0.9em;
    }
}.top-bar {
    background: #db212a;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.top-bar-link {
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.phone-icon,
.whatsapp-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}

 /* about  */

 
.about-section {
    padding: 20px 15px;
    background: #f8f9fa;
  }
  
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }
  
  .image-container {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
  }
  
  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .content-container {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .about-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
  }
  
  .about-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .highlight-box {
    background: #fff5f5;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
  }
  
  .highlight-box h3 {
    color: #c00;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .features-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
  }
  
  .features-list li::before {
    content: "✓";
    color: #c00;
    position: absolute;
    left: 0;
  }
  
  .cta-button {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    background: #c00;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    text-decoration: none;
    color: white;
   
    background: #a00;
    transform: translateY(-2px);
  }
  @media (max-width: 768px) {
    .about-wrapper {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .image-container {
      aspect-ratio: 1/1; 
      max-width: 400px;
      margin: 0 auto;
    }
  
    .about-title {
      font-size: 1.8rem;
    }
  
    .content-container {
      padding: 25px;
    }
  
    .cta-button {
      width: 100%;
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .about-title {
      font-size: 1.5rem;
    }
    
    .about-text {
      font-size: 1rem;
    }
    .image-container {
      max-width: 100%;
    }
  }

  /* services */
  .external-works-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .service-image {
    width: 100%;
  
  
    
  }
  
  .red-gradient-box {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
    padding: 15px 25px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
  }
  
  .services-list {
    list-style: none;
    padding-left: 20px;
  }
  
  .services-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    position: relative;
    line-height: 1.6;
  }
  
  .services-list li::before {
    content: "-";
    position: absolute;
    left: -15px;
    color: #8b0000;
    font-weight: bold;
  }
  
  .bold-services {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
  
    .red-gradient-box {
        font-size: 1.2rem;
        padding: 12px 20px;
    }
  
    .services-list li {
        font-size: 1rem;
    }
  
    .bold-services {
        font-size: 1.1rem;
    }
  }
  

/* carousel */
  .brand-products-carousel {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  }
  
  .carousel-container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: slide 30s linear infinite;
  }
  
  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .brand-card {
    flex: 0 0 180px; 
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
   
    transition: transform 0.3s ease;
    display: grid;
    place-items: center;
  }
  
  .brand-card:hover {
    transform: translateY(-5px);
  }
  
  .card-logo {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: filter 0.3s ease;
  }
  
  
  
  
  
  @media (max-width: 480px) {
    .carousel-track {
      gap: 20px;
    }
    
    .brand-card {
      flex: 0 0 100px;
      padding: 15px;
    }
    
    .card-logo img {
      max-height: 40px;
    }
  }
  

  /* what we do */
  .what-we-do-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-title h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .core-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .core-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .core-block {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  
  .block-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }
  
  .block-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .core-block h2 {
    color: #db212a;
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .values-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .values-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .values-list li::before {
    content: "•";
    color: #db212a;
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 1;
    top: -3px;
  }
  
  @media (max-width: 768px) {
    .core-blocks {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .core-block {
        padding: 25px;
    }
    
    .block-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .core-block h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .values-list li {
        font-size: 15px;
        padding-left: 22px;
    }
  }
  
  @media (max-width: 480px) {
    .core-section {
        padding: 30px 15px;
    }
    
    .core-block {
        padding: 20px;
    }
    
    .block-icon {
        width: 60px;
        height: 60px;
    }
    
    .core-block h2 {
        font-size: 20px;
    }
    
    .values-list li {
        font-size: 14px;
        line-height: 1.4;
        padding-left: 20px;
    }
    
    .values-list li::before {
        font-size: 20px;
        top: -2px;
    }
  }
  
  .services-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  
  .service-card {
    padding: 30px;
    position: relative;
    text-align: center;
    border-right: 2px solid #FF7C36;
  }
  
  .service-card:last-child {
    border-right: none;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }
  
  .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .service-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 15px;
  }
  
  @media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-card {
        padding: 25px 15px;
        border-right: none;
        border-bottom: 2px solid #FF7C36;
    }
    
    .service-card:last-child {
        border-bottom: none;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 13px;
        padding: 0;
    }
  }
  /* contact  */
  .contact-section {
    background: linear-gradient(135deg, #8b0000, #db212a);
    padding: 60px 20px;
    color: white;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .contact-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .address {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .phone-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
  }
  
  .phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  
  .whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    margin-top: 20px;
    text-align: center;
  }
  
  .whatsapp-btn:hover {
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .phone-numbers {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 20px;
    }
  }

  /* gallery */

    /* Gallery Styles */
    .projects-gallery {
        padding: 50px 20px;
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        background: #f8f9fa;
    }
    
    .gallery-item {
        cursor: pointer;
        transition: transform 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
        background: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .image-container {
        position: relative;
        padding-top: 100%;
        overflow: hidden;
    }
    
    .image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .project-name {
        padding: 20px;
        text-align: center;
        font-weight: 600;
        color: #2d3748;
        font-size: 1.1rem;
    }
    
    /* Modal Styles */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .modal-content {
        max-width: 800px;
        margin: 30px auto;
        background: white;
        border-radius: 12px;
        padding: 30px;
        position: relative;
    }
    
    .modal-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .modal-text {
        padding: 25px 15px;
    }
    
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 28px;
        cursor: pointer;
        color: #333;
    }
    
    .modal-specs {
        columns: 2;
        margin: 20px 0;
        gap: 30px;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .projects-gallery {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .modal-content {
            margin: 15px;
            padding: 20px;
        }
        
        .modal-image {
            height: 300px;
        }
        
        .modal-specs {
            columns: 1;
        }
    }
    
    @media (max-width: 480px) {
        .projects-gallery {
            grid-template-columns: 1fr;
        }
        
        .modal-image {
            height: 250px;
        }
        
        .project-name {
            font-size: 1rem;
            padding: 15px;
        }
    }

    /* footer */

.site-footer {
    background: #ffffff; 
    color: #333; 
    padding: 50px 0 20px;
    font-size: 16px;
    border-top: 2px solid #c00;
  }
  
  .plain-link {
    color: #333; 
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .plain-link:hover {
    color: #c00; 
    text-decoration: none;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee; 
  }
  
  .footer-logo-img {
    width: 200px;
    margin-bottom: 20px;
  
  }
  
  .footer-title {
    color: #c00; 
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c00; 
  }
  .footer-menu {
    list-style: none;
    padding-left: 0;
    margin: 0; 
  }
  .footer-menu li {
    margin-bottom: 12px;
  }
  .footer-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    display: block;
  }
  
  .footer-menu a:hover {
    color: #c00; 
  }
  
  .footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
    color: #666; 
  }
  
  .developer-link {
    color: #c00;
    text-decoration: none;
    font-weight: 500;
  }
  
  
  @media (max-width: 768px) {
    .footer-title::after {
      background: #c00; 
    }
  }/* WhatsApp Button*/
.floating-whatsapp {
    position: fixed;
    bottom: 50%;
    right: 20px;
    transform: translateY(50%);
    background: #25D366; 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }
  
  .floating-whatsapp:hover {
    transform: translateY(50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  
  .whatsapp-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
  
  }
  
  
  .floating-whatsapp::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 80px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .floating-whatsapp:hover::after {
    opacity: 1;
    right: 70px;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  
  @media (max-width: 768px) {
    .floating-whatsapp {
      width: 50px;
      height: 50px;
      right: 15px;
    }
    
    .whatsapp-image {
      width: 50px;
      height: 50px;
    }
    
    .floating-whatsapp::after {
      font-size: 12px;
      padding: 6px 12px;
    }
  }
  
  
  @media (prefers-reduced-motion: no-preference) {
    .floating-whatsapp {
      scroll-behavior: smooth;
    }
  }


  /* yotube testimonials */
  .youtube-section {
    background: linear-gradient(135deg, #8b0000, #db212a);
    padding: 20px 0;
  }
  
  .video-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
  }
  
  .video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }




  /* Container styling */
  .testimonials {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

/* Grid layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}


.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive iframe */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .testimonials {
        padding: 1rem;
    }
    
    .testimonials h2 {
        font-size: 1.5rem;
    }
    
    .video-grid {
        gap: 1rem;
    }
}