/* Remove blue overlay */
.featured-imagebox-portfolio .ttm-box-view-overlay {
    background: transparent !important;
}

/* Hide search & redirect icons */
.featured-imagebox-portfolio .ttm-media-link {
    display: none !important;
}

/* Hide content name/title */
.featured-imagebox-portfolio .featured-content {
    display: none !important;
}

/* Optional: smooth hover zoom effect */
.featured-imagebox-portfolio .featured-thumbnail img {
    transition: transform 0.4s ease;
}

.featured-imagebox-portfolio:hover .featured-thumbnail img {
    transform: scale(1.05);
}
.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}
/* Products page */
.products-page {
    padding: 10px 0 40px;
}

.products-section-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.section-pill {
    border: 0;
    border-radius: 999px;
    background: #f1f1f1;
    color: #1f1f1f;
    font-weight: 600;
    padding: 10px 18px;
    transition: background 0.3s ease, color 0.3s ease;
}

.section-pill.is-active {
    background: #2f2f2f;
    color: #fff;
}

.products-shell {
    display: block;
}

.products-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.products-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.products-filters {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.filter-pill {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: #f4f4f4;
    color: #111;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    transition: background 0.3s ease, color 0.3s ease;
}

.filter-pill.is-active {
    background: #2f2f2f;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    background: #f1f1f1;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.product-image {
    background: #ececec;
    border-radius: 16px;
    padding: 18px 14px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 230px;
    object-fit: contain;
}


@media (max-width: 991px) {
    .products-shell {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .products-section-tabs {
        gap: 8px;
    }

    .section-pill {
        padding: 8px 14px;
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: 200px;
    }
}
.product-card.is-hidden {
    display: none;
}

/* End products page */



          /* Base Styles */
          .two-column-section {
            background-color: #f5f5f5;
            padding: 60px 20px;
          }

          .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
          }

          /* Text Content Styles */
          .text-content {
            width: 50%;
            background-color:#030f39;/* #0b2f4c*/
            padding: 40px;
            border-radius: 15px;
            color: white;
          }

          .text-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
          }

          .text-content p,
          .text-content li {
            line-height: 1.6;
            margin-bottom: 15px;
          }

          .text-content ul {
            padding-left: 20px;
          }

          /* Image Styles with Holographic Effect */
          .image-container {
            width: 50%;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
          }

          .section-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 15px;
            transition: all 0.3s ease;
          }

          .holographic-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
              135deg,
              rgba(213, 19, 19, 0.1) 0%,
              rgba(159, 16, 16, 0.79) 20%,
              rgba(241, 71, 71, 0.61) 50%,
              rgba(159, 17, 17, 0) 80%,
              rgba(255, 255, 255, 0.1) 100%
            );
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.6s ease;
            transform: translateX(-100%);
            border-radius: 15px;
          }

          .image-container:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(229, 14, 14, 0.2);
          }

          .image-container:hover .section-image {
            filter: brightness(1.1) contrast(1.05);
          }

          .image-container:hover .holographic-overlay {
            opacity: 1;
            transform: translateX(100%);
          }

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

            .text-content,
            .image-container {
              width: 100%;
            }

            .image-container {
              height: 300px;
            }
          }
          /* Base Styles */
        .two-column-section {
          background-color: #0b2f4c;
          margin: 100px;
          padding: 80px 40px;
        }

        .content-wrapper {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          align-items: stretch;
          gap: 40px;
        }

        .holographic-image-container {
          width: 50%;
          position: relative;
          overflow: hidden;
          border-radius: 15px;
          transition: all 0.5s ease;
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .section-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.5s ease;
          border-radius: 15px;
          position: relative;
          overflow: hidden;
        }

        .holographic-image-container::before {
          content: '';
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: linear-gradient(
            0deg,
            transparent,
            transparent 30%,
            rgba(2, 0, 93, 0.3)
          );
          transform: rotate(-45deg);
          transition: all 0.5s ease;
          opacity: 0;
          z-index: 1;
        }

        .holographic-image-container:hover {
          transform: scale(1.05);
          box-shadow: 0 0 20px rgba(122, 29, 26, 0.5);
        }

        .holographic-image-container:hover::before {
          opacity: 1;
          transform: rotate(-45deg) translateY(100%);
        }

        .holographic-image-container:hover .section-image {
          filter: brightness(1.1);
        }

        /* Text Styles with White Background */
        .text-content.white-bg {
          width: 50%;
          background-color: white;
          padding: 40px;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(198, 14, 14, 0.1);
        }

        .text-content.white-bg h2 {
          font-size: 2rem;
          margin-bottom: 20px;
          color: #0b2f4c;
        }

        .text-content.white-bg p {
          line-height: 1.6;
          margin-bottom: 15px;
          color: #333;
        }

        .text-content.white-bg ul {
          padding-left: 20px;
          margin: 15px 0;
        }

        .text-content.white-bg li {
          margin-bottom: 8px;
          color: #333;
        }

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

          .holographic-image-container,
          .text-content.white-bg {
            width: 100%;
          }
        }
        .two-column-section {
          overflow-x: hidden;
        }

        .content-wrapper {
          align-items: stretch;
        }

        @media (max-width: 767px) {
          .holographic-image-container, .text-content {
            min-height: auto;
          }

          .section-image {
            min-height: 300px;
          }
        }

            .hero-video {
        position: relative;
        min-height: 60vh;
        overflow: hidden;
        width: 1351px;
    height: 759.938px;
    }

    .hero-video__media {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-video__media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-video__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        /* z-index: 2; */
    }

    .hero-video__content {
        position: relative;
        z-index: 3;
        padding: 120px 0;
    }

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

    @media (max-width: 575px) {
        .hero-video__content {
            padding: 60px 0;
        }
    }

    
        /* Custom styles to match the provided image layouts */
        .ttm-bgcolor-darkgrey { background-color: #1a1a1a; color: #ffffff; }
        .ttm-textcolor-skincolor { color: #d63031; }
        
        /* Products Section Styles */
        .products-section { padding: 80px 0; text-align: center; background: #f9f9f9; }
        .products-title { font-size: 36px; font-weight: 800; text-transform: uppercase; margin-bottom: 50px; }
        .product-category { position: relative; margin-bottom: 30px; }
        .product-image-wrapper { 
            width: 300px; height: 450px; margin: 0 auto; 
            border-radius: 150px; overflow: hidden; 
            border: 5px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .product-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .category-name { 
            margin-top: 20px; font-weight: 700; text-transform: uppercase; 
            letter-spacing: 2px; font-size: 20px; 
        }

        /* Fid (Counter) Styles */
        .ttm-fid { text-align: center; padding: 20px; }
        .ttm-fid-inner { font-size: 48px; font-weight: 700; color: #fff; }
        .ttm-fid-title { font-size: 16px; text-transform: uppercase; color: #bbb; }
        
        /* Utility */
        .margin_top35 { margin-top: 35px; } 


        .product-category-box {
    background: #fff;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-category-box img {
    height: 350px;
    object-fit: contain;
}

.product-category-box:hover {
    transform: translateY(-5px);
}

.product-category-box h4 {
    margin-top: 10px;
    letter-spacing: 1px;
}
 /* Footer Background */
.ttm-bgcolor-darkgrey {
    background-color: #111111 !important;
    /* padding: 60px 0 40px; */
}

/* Horizontal Menu Styling */
.footer-horizontal-menu {
    padding: 0;
    margin: 0;
}

.footer-horizontal-menu li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.footer-horizontal-menu li a:hover {
    color: #f15a24; /* Brand Orange */
}

/* Copyright Text */
.copyright-info p {
    font-size: 14px;
    color: #888888;
}

.ttm-textcolor-skincolor {
    color: #007bff; /* Matching the blue link in the image */
    text-decoration: none;
}

/* Social Icons Styling */
.footer-social-links .social-icons li a {
    font-size: 24px;
    color: #f15a24; /* Specific orange seen in the image social row */
    margin: 0 10px;
    transition: opacity 0.3s ease;
}

.footer-social-links .social-icons li a:hover {
    opacity: 0.8;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .footer-horizontal-menu li {
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .footer-horizontal-menu li {
        display: block;
        margin-bottom: 8px;
        border-bottom: 1px solid #222;
        padding-bottom: 5px;
    }
    .footer-horizontal-menu li a {
        padding: 0;
    }
}

/* infraturcture */

/* Container for the infrastructure page */
.infrastructure-container {
    padding: 60px 0;
    background-color: #f5f5f5; /* Light grey background for the page */
}

/* Base row style for alternating layout */
.infra-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 2px; /* Small gap between sections */
}

/* Purple Text Block */
.infra-text-block {
    flex: 1 1 50%;
    background-color: #3F3D7B; /* Muted Purple from image */
    color: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.infra-text-block h2 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.infra-text-block p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
}

/* Image Block with Orange Accent */
.infra-image-block {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.infra-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The orange side-tab seen in the image */
.orange-accent {
    position: absolute;
    top: 20%;
    left: 0;
    width: 8px;
    height: 60%;
    background-color: #ff6a39; /* Brand Orange */
    z-index: 2;
}

.infra-row:nth-child(even) .orange-accent {
    left: auto;
    right: 0;
}

/* Alternating Layout: Reverse every second row */
.infra-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .infra-text-block, .infra-image-block {
        flex: 1 1 100%;
    }
    .infra-text-block {
        padding: 40px 20px;
    }
    .infra-image-block {
        min-height: 300px;
    }
}


/* mens */

  body { font-family: 'Inter', sans-serif; }
        .hero-pattern {
            background: linear-gradient(45deg, #4a0404 25%, #8b0000 50%, #4a0404 75%);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
        }
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .diamond-logo {
            width: 60px;
            height: 45px;
            background: white;
            transform: rotate(45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #9ca3af;
        }
        .diamond-text {
            transform: rotate(-45deg);
            color: black;
            font-weight: 900;
            font-size: 10px;
            line-height: 1;
            text-align: center;
        }
        .modal-overlay {
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
        }

        /* breadcrumb */

        .about-hero-video {
                position: relative;
                min-height: 320px;
                overflow: hidden;
            }
            .about-hero-video .ttm-page-title-row-inner {
                padding: 78px 0;
            }
            .about-hero-video .page-title-heading .title {
                font-size: clamp(28px, 4vw, 48px);
                padding-top: 0;
            }
            .about-hero-video video {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .about-hero-video .ttm-row-wrapper-bg-layer {
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                z-index: 1;
            }
            .about-hero-video .container {
                position: relative;
                z-index: 2;
            }
            @media (max-width: 991px) {
                .about-hero-video {
                    min-height: 220px;
                }
                .about-hero-video .ttm-page-title-row-inner {
                    padding: 24px 0;
                }
            }
            @media (max-width: 575px) {
                .about-hero-video {
                    min-height: 180px;
                }
                .about-hero-video .ttm-page-title-row-inner {
                    padding: 65px 0;
                }
            }


            contact styles/
            .contact-info-box {
    text-align: center;
    padding: 20px;
}
.contact-info-box i {
    font-size: 32px;
    color: #2f3192;
    margin-bottom: 10px;
}
.contact-info-box h5 {
    font-weight: 600;
    margin-bottom: 5px;
}
.contact-info-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.working-hours {
    background: #2b2b2b;
    color: #fff;
    padding: 30px;
}
.working-hours h4 {
    color: #ff5a1f;
    margin-bottom: 20px;
}
.working-hours ul {
    list-style: none;
    padding: 0;
}
.working-hours ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
.map-box iframe {
    width: 100%;
    height: 350px;
    border: 0;
}
@media(max-width:768px){
    .working-hours {
        margin-top: 30px;
    }
}