/*
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;
            --secondary-navy: #003366;
            --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;
        }

        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;
        }

        /* Spacing Utilities */
		/* section{
			overflow: hidden;
		} */
        .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;
        }

        /* Navbar Custom Styles */
        header {
    background-color: white;
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 0.125rem 0.25rem;
    padding: 8px 0px;
}

        .navbar-brand-custom img {
            height: 50px;
        }

       
        .content {
            font-size: 18px;
            line-height: 28px;
            font-weight: 500;
        }

        /* Hero Section Styling */
        .hero-section {
            position: relative;
        }
.banner-section{
	background-position: center;
	background-size: cover;
	/* padding: 60px 0; */
}
.banner-content {
    max-width: 645px;
    position: relative;
    z-index: 999;
    color: #ddd;
}
.banner-overlay {
    padding: 60px 0;
    background-color: #00000070;
}



        .box-form-2{
    background-color: var(--secondary-navy);
    color: #fff;
    padding: 30px 15px;
    width: 30%;
    position: absolute;
    top: 10px;
    right: 5%;
    
        }

      
        /* 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);
        }

        /* General Section Titles */
        .section-title-wrapper {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            color: #222;
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            font-weight: 500;
            font-size: 1.1rem;
            color: #6c757d;
            border-bottom: 3px solid var(--primary-red);
            display: inline-block;
            padding-bottom: 5px;
        }

        .text-primary-red {
            color: var(--primary-red);
        }

        .text-secondary-navy {
            color: var(--primary-red);
        }

        /* About & Feature Cards */
        .image-placeholder {
            border-radius: var(--border-radius);
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
            width: 100%;
            height: auto;
            display: block;
        }

        .about-highlight {
            margin-bottom: 1rem;
        }

        .about-highlight span {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 20px;
        }

        .about-box {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 150px;
            border-radius: 50px;
        }

        .push-about-2 {
            border-radius: 25px;
        }

        .feature-box {
            background-color: #cfdce4;
            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%;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 51, 102, 0.15);
        }

        /* Counter Section */
        .counter-section {
            background-color: var(--secondary-navy);
            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;
        }

        /* Products Carousel */
        .product-card {
            background-color: white;
            border: 1px solid #a6a6a6;
            border-radius: var(--border-radius);
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            border: 1px solid var(--primary-red);
        }

        .product-card-image {
            object-fit: cover;
            width: 100%;
            height: 200px;
            border-top-left-radius: var(--border-radius);
            border-top-right-radius: var(--border-radius);
        }

        .product-card-content {
            padding: 1rem;
        }

        .product-card-title {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-card-text {
            color: #555556;
            font-size: 1rem;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .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: var(--primary-red);
            padding: 10px 0;
            border-radius: 5px;

        } */
		 input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100% !important;
    border: none;
    background-color: var(--primary-red);
    padding: 10px 0;
    border-radius: 5px;
    color: #fff;
}

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

        .cta-section {
            color: #fff;
        }

        .cta-btn {
            background-color: var(--primary-red);
            color: #fff;
            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: #cfdce4;
    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(--secondary-navy);
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        /* Testimonial Section */
        .testimonial-wrapper {
            /* Remove fixed width here, let row/col handle it */
            margin: 0 auto;
        }

        .testimonial-box {
            background-color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .testimonial-quote {
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(--dark-text);
        }

        .client-info {
            font-weight: 700;
            margin-top: 1rem;
            color: var(--dark-text);
        }

        .client-info span {
            color: #6c757d;
            font-weight: 400;
        }

        .testimonial-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: var(--border-radius);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        /* 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 */
		.footer-logo{
			height: 100px;
		}
        .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(--primary-red);
}
        .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;
        }

        /* Owl Carousel Custom Dots Color */
        .owl-theme .owl-dots .owl-dot span {
            background: #bbb !important;
            transition: background 0.3s;
        }

        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            background: var(--primary-red) !important;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .section-padding {
                padding-top: var(--mobile-spacing);
                padding-bottom: var(--mobile-spacing);
            }

          

            .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;
    }            
	.footer-logo {
    height: 60px;
}
                
                
                
                }
  #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(--secondary-navy);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}
