/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.4
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}
        :root {
            --primary-red: #dd3731;
            --primary-color: #000524;
            --secondary-navy: #1a368f;
            --light-gray: #f8f9fa;
            --dark-text: #343a40;
            --dark-footer: #222;
            --font-main: 'Manrope', sans-serif;
            --font-heading: 'Sora', sans-serif;
            --section-spacing: 6rem;
            --mobile-spacing: 3rem;
            --border-radius: 0.75rem;
            --text-light: #fff;
            --accent-color: #ffd700;
        }

        body {
            font-family: var(--font-main);
            color: var(--dark-text);
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .section-title,
        .counter-box h3,
        .navbar-brand-custom {
            font-family: var(--font-heading);
        }

        .container-fluid {
            width: 90%;
        }

        .custom-container {
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
            max-width: 1200px;
        }





        /* Navbar Styling */
        .navbar {
            background-color: var(--primary-color);
            padding: 5px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            color: var(--text-light) !important;
            font-weight: 800;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin-left: 25px;
            transition: color 0.3s ease;
        }

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

        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5) !important;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }





        /* Spacing Utilities */
        .section-padding {
            padding: 60px 0;
        }

        .section-background-light {
            background-color: var(--light-gray);
        }

        .section-background-white {
            background-color: white;
        }

        .text-center-align {
            text-align: center;
        }

        .margin-bottom-5 {
            margin-bottom: 3rem;
        }

        .margin-top-4 {
            margin-top: 1.5rem;
        }

        .padding-4 {
            padding: 1.5rem;
        }

        .padding-top-5 {
            padding-top: 3rem;
        }

        .padding-bottom-5 {
            padding-bottom: 3rem;
        }




        /* Custom Buttons */
        .custom-button {
            background: var(--primary-red);
            border: 2px solid var(--primary-red);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 0.5rem;
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .custom-button:hover {
            background: #a82733;
            border-color: #a82733;
            transform: translateY(-1px);
            color: white;
        }

        .custom-button-outline {
            background: transparent;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 0.5rem;
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .custom-button-outline:hover {
            background: white;
            color: var(--dark-text);
        }


        .banner-overlay {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 120px 0 60px;
        }

        .banner-section {
         
			margin-top: 25px;

        }
        .banner-box{
            height:100%;
/*             border-radius: 15px; */
        }

        .banner-content {
            color: var(--text-light);
            max-width: 550px;
        }

        .banner-content h1 span {
            color: var(--accent-color);
        }

        .banner-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--text-light);
        }

        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .btn-primary-custom:hover {
            background-color: #1a368f;
            border-color: var(--light-primary);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }


      .text-secondary-color {
    color: var(--secondary-navy) !important;
}

        /* About & Feature Cards */
        .image-placeholder {
            width: 100%;
            height: auto;
            display: block;
        }

        .experience-card {
            position: absolute;
            bottom: 40px;
            left: -40px;
            color: var(--text-light);
            background-color: var(--secondary-navy);
            width: 400px;
            padding: 20px;
        }

        .experience-card p {
            font-size: 25px;
        }

        .experience-card p span {
            color: var(--accent-color);
            font-size: 35px;
        }

        .about-content {
            padding: 0 40px 0 60px;
        }
        .text-secondary-navy {
    color: var(--primary-color);
}

        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .counter-box {
            text-align: center;
            padding: 0 1rem;
        }

        .counter-box h3 {
            font-size: 3rem;
            margin-bottom: 0;
        }

        .counter-box i {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
        }

        /* counter end  */

        /* producst section  */
        .product-top p{
color: var(--primary-color);
font-weight: bold;
font-size: 18px;
        }
        .product-top h2{
            color: #222;
            margin-bottom: 1rem;
        }
        

        .product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(26 41 132 / 43%), rgba(0, 0, 0, 0));
    padding: 1.5rem;
    color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
        .product-card-overlay h3{
            color: var(--primary-color);
        }

        

      .item {
    border: 5px solid #1a2984eb;
    border-radius: 20px;
}

        .owl-carousel .owl-nav button.owl-prev,
        .owl-carousel .owl-nav button.owl-next {
            position: absolute;
            top: 45%;
            width: 40px;
            height: 40px;
            transform: translateY(-50%);
            background: var(--primary-color) !important;
            color: white !important;
            border-radius: 9999px !important;
            padding: 0.5rem 1rem !important;
            font-size: 2rem !important;
            line-height: 1 !important;
            /* opacity: 0.8; */
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .owl-carousel .owl-nav button.owl-prev:hover,
        .owl-carousel .owl-nav button.owl-next:hover {
            opacity: 1;
        }

        .owl-carousel .owl-nav button.owl-prev {
            left: -30px;
        }

        .owl-carousel .owl-nav button.owl-next {
            right: -30px;
        }

        /* Hide default dots if not needed, or style them */
        .owl-carousel .owl-dots {
            margin-top: 2rem;
            text-align: center;
        }

        .owl-carousel .owl-dots .owl-dot span {
            background: #d1d5db !important;
            width: 10px !important;
            height: 10px !important;
            margin: 0 5px !important;
            border-radius: 50% !important;
            display: block !important;
            transition: background 0.3s ease;
        }

        .owl-carousel .owl-dots .owl-dot.active span {
            background: var(--primary-color) !important;
            /* Active yellow dot */
        }

        /* Responsive adjustments for navigation */
        @media (max-width: 768px) {
            .owl-carousel .owl-nav button.owl-prev {
                left: 0.5rem;
            }

            .owl-carousel .owl-nav button.owl-next {
                right: 0.5rem;
            }
        }


        #our-product-category .icon-box {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        #our-product-category .card {
            background: linear-gradient(90deg, #e0e4ff, #4675af4d);
            padding: 10px !important;
            transition: 0.6s;
        }

        #our-product-category .card:hover .card-title.gsap-reveal-text a {
            color: var(--info-color);
            text-decoration: underline;
        }

        .card-title.gsap-reveal-text a {
            font-size: 18px !important;
            color: var(--primary-color);
            text-decoration: none;
            transition: 0.6s;
        }

        #product-gallery .img-thumbnail {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        #product-gallery .img-thumbnail:hover {
            transform: scale(1.05);
        }







.img-box-sticky {
    position: sticky;
    top: 0;
    border: 1px solid var(--primary-color);
    padding: 10px;
}
.img-box-sticky ul{
    list-style: none;
    padding: 0;
}
.img-box-sticky ul li{
    padding: 5px 0;
    color: var(--secondary-navy);

}


        .box-form {
            background-color: var(--secondary-navy);
            color: #fff;
            padding: 30px 15px;
            position: sticky;
            top: 0;
        }

        .form-btn {
            width: 100% !important;
            border: none;
            background-color: #e4c100;
            color: #000;
            padding: 10px 0;
            border-radius: 5px;

        }
		input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100% !important;
    border: none;
    background-color: #e4c100;
    color: #000;
    padding: 10px 0;
    border-radius: 5px;
}

        .form-btn a {
            color: #000;
            text-decoration: none;
        }

        .cta-section {
            color: #fff;
        }

        .cta-btn {
            background-color: #e4c100;
            color: #000;
            text-decoration: none;
            padding: 10px 24px;
            border-radius: 5px;
        }

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

        .third-list li {
            margin-top: 5px;
        }

        .third-list i {
            color: var(--primary-red);

        }

        /* Process Section */
        .process-step {
            background-color: #e4dfcf;
            border-radius: var(--border-radius);
            padding: 1.5rem 1rem;
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            height: 100%;
        }

        .icon-circle {
            display: inline-flex;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-navy);
            color: white;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
        }

        .process-icon-lg {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }


.nav-tabs {
            border-bottom: none;
            margin-bottom: 2rem;
            padding-left: 0;
            display: flex;
            flex-wrap: wrap; 
            justify-content: center;
        }

        .nav-link-bottom {
            font-family: var(--font-heading);
            font-weight: 600;
            color: #222;
            border: 1px solid transparent;
            border-radius: var(--border-radius);
            margin-right: 0.5rem;
            margin-bottom: 0.5rem; 
            padding: 0.75rem 1.25rem;
            transition: all 0.3s ease;
            background-color: #e4c100;
        }

        .nav-link-bottom:hover:not(.active) {
            color: var(--primary-color);
            background-color: transparent; 
            border: 1px solid var(--primary-color);
        }

        .nav-link-bottom.active {
            color: #222 !important;
            background-color: #e4c100 !important;
            box-shadow: 0 4px 10px rgba(221, 218, 49, 0.3);
        }
        .nav-link-bottom.active:hover{
            color: var(--primary-color);
            background-color: transparent !important; 
            border: 1px solid var(--primary-color);
        }

        /* --- Custom Card Styling --- */
        .product-card-2 {
            background-color: #ffffff; 
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--secondary-navy);
            margin: 0 20px 20px ;
            padding: 25px 25px 25px 15px;
        }

        .product-card-2:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 5, 36, 0.1);
        }

        /* Card Content Layout */
        .card-logo-col {
            padding: var(--card-padding);
            text-align: center;
        }

        @media (min-width: 768px) {
			
            .card-logo-col {
                border-right: 1px solid rgba(0, 5, 36, 0.05);
                text-align: left;
            }
        }

        .card-details-col {
            padding: var(--card-padding);
        }

        /* Company Logo Styling */
        .company-logo-box {
            max-width: 200px;
            margin: 0 auto;
        }

        .company-logo-box img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            border: 1px solid var(--secondary-navy);
            padding: 0.5rem;
        }

        /* Company Details Styling */
        .company-title {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }

        /* Turn Over */
        .turnover {
            margin-top: 0.75rem;
            color: var(--dark-text);
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Tags */
        .company-tag {
            display: inline-block;
            background-color: var(--light-gray); /* Adjusted for contrast on white card */
            color: var(--secondary-navy);
            border: 1px solid var(--secondary-navy);
            padding: 0.4rem 0.8rem;
            border-radius: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }

        /* Buttons (Custom for colors) */
        .btn-group-custom {
            margin-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .btn-custom {
            font-weight: 600;
            padding: 5px 10px;
            border-radius: var(--border-radius);
            transition: background-color 0.2s ease, transform 0.1s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-decoration: none; /* Make sure it doesn't look like a link */
            color: var(--text-light); /* Default white text */
        }

        .btn-call { background-color: var(--secondary-navy); }
        .btn-call:hover { background-color: #152d6e; }

        .btn-whatsapp { background-color: #25d366; } 
        .btn-whatsapp:hover { background-color: #1db954; }

        .btn-enquiry { background-color: var(--primary-red); }
        .btn-enquiry:hover { background-color: #b32c28; }
        
        
        

        
        
        





        /* Contact Section */
        .contact-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            padding: 3rem;
        }

        .contact-info-block {
            padding-left: 1.5rem;
        }

        .contact-info-block h4 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .info-detail {
            margin-bottom: 1rem;
        }

        .info-detail p {
            margin: 0;
        }

        .map-placeholder {
            border: 1px solid #ddd;
            border-radius: 0.5rem;
            height: 200px;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Footer */
        .custom-footer {
            background-color: var(--dark-footer);
            color: #ccc;
            padding: 60px 0 30px;
        }

        .custom-footer a {
            color: #fff;
            text-decoration: none;
        }

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

        .footer-title {
            color: var(--primary-red);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .footer-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-link-list li {
            margin-bottom: 0.5rem;
        }

        .footer-link {
            text-decoration: none;
            color: #adb5bd;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .footer-link:hover {
            color: var(--primary-red);
        }

        .footer-social a {
            color: white;
            margin-right: 1rem;
            transition: color 0.3s;
        }

        .footer-social a:hover {
            color: var(--primary-red);
        }

        .footer-copy {
            border-top: 1px solid #343a40;
            padding-top: 1rem;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #adb5bd;
        }


        /* Responsive Adjustments */
        @media (max-width: 991px) {
.banner-section {
    background-position: right !important;
    margin-top: 20px;
}
            .hero-content {
                text-align: center;
                max-width: 100%;
                margin-bottom: 2rem;
            }

            .navbar-list {
                display: none;
            }

            .navbar-toggler {
                display: block;
            }

            .contact-info-block {
                border-left: none;
                padding-left: 0;
                margin-top: 1.5rem;
                border-top: 1px solid #ddd;
                padding-top: 1.5rem;
            }

            /* Testimonial specific mobile fix */
            .testimonial-box,
            .testimonial-image {
                padding: 1.5rem;
            }
        }


        @media (max-width: 991px) {
            .box-form-2 {
                width: 100%;
                position: unset;
                margin: auto;
            }

            .container-fluid {
                width: 95%;
            }

            .counter-box h3 {
                font-size: 2rem;
                font-weight: 600;
                margin-bottom: 0;
            }

            .section-title-wrapper {
                margin-bottom: 1rem;
            }

            #why-us .container-fluid {
                width: 95% !important;
            }



        }


          #sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
 
}
#sequence a:not(:last-child) {
    border-right: 1px solid #fffdfd;
}
#sequence {
    width: 100%;
    float: left;
    background: var(--primary-color);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}



@media (max-width: 992px) {
#about-us .container-fluid{
    width: 95% !important;
}
.about-content {
    padding: 0;
}
.section-padding{
    padding: 40px 0;
}
.experience-card p {
    font-size: 18px;
}
.experience-card p span {
    font-size: 25px;
}
.experience-card {
    bottom: 10px;
    right: 10px;
    width: 260px;
    padding: 8px 15px;
    left: unset;
}
.third-content .content {
    margin-top: 20px;
}
.nav-link-bottom{
    margin-top: 15px !important;
}
.card-details-col {
    padding: 15px 0 0;
}
}





        .other-categories .grid-right-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            padding: 0 0 0 1.5rem;
        }
        .category-grid-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: var(--color-light);
        }
        .category-grid-item {
            position: relative;
            background-color: #333;
            min-height: 220px;
            border-radius: var(--border-radius);
            overflow: hidden;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }
        .category-overlay h4 {
            color: var(--text-light);
            font-weight: 700;
            margin-bottom: 0.25rem;
            font-size: calc(1.1rem + 0.5vw);
            line-height: 1.2;
        }
        .category-overlay p {
            color: var(--text-light);
            font-size: 0.9rem;
            opacity: 0.8;
            margin: 0;
        }
        @media (max-width: 576px) {
            .other-categories .grid-right-categories {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 991px) {
            .other-categories .grid-right-categories {
                padding: 1.5rem 0 0 0;
            }
            .grid-left-block {
            padding: 2rem;
        }
        .cta-content-container {
            padding: 2rem;
        }
        }


/* thankyou page */
 .ty-main-card {
            background-color: var(--secondary-navy);
            border-radius: var(--border-radius);
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0, 5, 36, 0.3);
            max-width: 450px;
            width: 100%;
            transition: transform 0.3s ease;
        }

        .ty-success-icon {
            color: var(--accent-color);
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .ty-header {
            font-family: var(--font-heading);
            color: var(--text-light);
            font-size: 2.25rem;
            font-weight: 700;
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .ty-info-message {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            opacity: 0.85;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }

        .ty-cta-btn {
            display: inline-block;
            background-color: var(--primary-red);
            color: var(--text-light);
            padding: 0.75rem 1.75rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.1s ease;
            border: none;
            box-shadow: 0 4px 10px rgba(221, 55, 49, 0.4);
        }

        .ty-cta-btn:hover {
            background-color: #a82a25;
            color: var(--text-light);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(221, 55, 49, 0.6);
        }

        @media (max-width: 576px) {
            .ty-main-card {
                padding: 2rem 1rem;
            }
            .ty-header {
                font-size: 2rem;
            }
        }