/*
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-blue: #042147;
    --secondary-blue: #1A3857;
    --text-dark: #333333;
    --text-light: #555555;
    --background-light: #F8F9FA;
    --icon-circle-bg: #E3F2FF;
    --card-bg: #E7F0FF;
    --icon-bg: #90C01D;
    --button-bg: #4CAF50;
    --button-hover-bg: #45a049;
    --dark-bg: #0A1E37;
    --green-btn-bg: #90C01C;
    --green-btn-hover-bg: #5aab4e;
    --border-radius-large: 3rem;
    --border-radius-small: 1.5rem;
    --header-color: #1B416E;
}
h1, h2, h3, h4, h5{
    font-family: 'Roboto', sans-serif;
}
.container ,.container-fluid {
	width: 90%;
}
a{
    text-decoration: none;
}
body {
   margin: 0;
   padding: 0;
   font-size: 16px;
   font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}
section{
    overflow: hidden;
    padding: 50px 0;
}
.sub-header{
    overflow: hidden;
    width: 100%;
    background-color: var(--header-color);
    padding: 5px 0;
    color: #fff;

}
.sub-contact{
    display: flex;
    /* justify-content: end; */
    align-items: center;
    
}
.sub-contact p{
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
}
.sub-contact a{
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
}
.header-icon i{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
/* main-header */
.main-header {
    padding: 20px 0;
}
.logo-box{
    background-color: #fff;
    position: absolute;
    z-index: 999;
    padding: 15px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        top: -30px;
}
.logo-box img{
    height: 100px;
}
.header-btn{
    background: linear-gradient(90deg, #90C01C 0%, #278C4D 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
}

.banner-img{
    width: 100%;
}
.section-subtitle {
    font-weight: bold;
    color: var(--secondary-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
}

footer .section-title {
    font-weight: 500;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.2;
}

.section-description {
    color: var(--text-light);
    line-height: 1.6;
}
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    
}


.image-wrapper img {
    border-radius: var(--border-radius-large);
}

.experience-card {
    position: absolute;
    top: 25%;
    right: 0px;
    background-color: var(--primary-blue);
    border-radius: var(--border-radius-small);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
    /* left: 75%; */
    transform: translate(-50%, -50%);
    width: 150px;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
}

.about-subheading{
    font-size: 16px;
    font-weight: bold;
}
.about-title{
    font-size: 35px;
    color: #222;
}



.feature-item h4 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-icon i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--icon-circle-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bfbfbf;
    margin-right: 15px;
}
.content-about {
    padding-left: 30px;
}
.about-btn{
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #fff;
}
.about-btn:hover{
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
}





.category-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-large);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card .card-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.category-card .card-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    display: none;
}
.btn-read-more {
    background-color: var(--green-btn-bg);
    color: #fff;
    border-color: var(--green-btn-bg);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--button-hover-bg);
    border-color: var(--button-hover-bg);
}

.pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
}

.pagination-dot.active {
    background-color: var(--button-bg);
}

.partner-section, .franchise-section {
    padding: 0;
    /* background-color: #E8F2FF; */
}

.dark-content-box {
    background-color: #042147;
    /* min-height: 500px; */
    height: 100%;
    width: 100%;
}

.content-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.content-description {
    line-height: 1.6;
}

.btn-green-arrow {
    background-color: var(--green-btn-bg);
    color: #fff;
    border-color: var(--green-btn-bg);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 14px;
}

.btn-green-arrow:hover {
    background-color: var(--green-btn-hover-bg);
    border-color: var(--green-btn-hover-bg);
    transform: translateY(-2px);
}

/* product-section */
.box{
    position: relative;
}
.curved-card{
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16/9;          
  overflow: hidden;             
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}
.curved-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;           
}
.product-icon-div {
    position: absolute;
    bottom: 0;
    left: 10px;
}
.product-icon-div i{
    color: var(--dark-bg);
    font-size: 25px;
    border: 1px solid var(--dark-bg);
    width: 50px ;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-section{
    background-color: #E8F2FF;
}
.product-title{
        font-weight: bold;
    color: var(--dark-bg);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 18px;
    
}
.product-heading{
    max-width: 500px;
    text-align: center;
    margin: auto;
    font-weight: bold;
    color: #222;
}
.product-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
    padding: 0 0px 20px 20px;
    height: 100%;
}
.card-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .icon-circle {
    background-color: var(--card-bg);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.product-card .card-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin:25px 0 0.5rem;
}

.read-more-link {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--secondary-blue);
}

.btn-dark-blue-arrow {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 14px;
}

.btn-dark-blue-arrow:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    color: #fff;
}

.process-section {
    background-color: #f7f9fc;
    padding-top: 80px;
    padding-bottom: 80px;
}

.process-section .accordion-button {
    font-weight: 600;
    color: var(--primary-blue);
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
    padding: 1.5rem 1.25rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

.process-section .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-blue);
    box-shadow: none;
}

.process-section .accordion-item {
    background-color: #E7F0FF;
    border: none;
    overflow: hidden;
}

.process-section .accordion-item:not(:last-child) {
    border-bottom: none;
}

.process-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.process-section .accordion-body {
    padding: 0 1.25rem 1.5rem;
}

/* New styles for the contact section */
.contact-section {
background: linear-gradient(139deg,rgba(4, 33, 71, 0.75) 0%, rgba(144, 192, 28, 0.75) 100%);
        /* opacity: 75%; */
padding: 0 !important;
}
.contact-form-col .form-control {
    border: 1px solid #ddd;
    background-color: #f9fafb;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 25px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: var(--primary-blue);
    color: #fff;
    /* border-color: var(--primary-blue); */
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    border: none;
    width: 100%;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: hsla(118, 100%, 84%, 0.644);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(123, 255, 162, 0.25);
}
.contact-image-col {
    background-image: url('images/contact-img.avif');
    background-size: cover;
    background-position: center;
    border-radius: 0 15px 15px 0 ;
}

.opening-hours-card {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.opening-hours-card .card-title {
    color: var(--primary-blue);
    font-size: 18px;
}

.opening-hours-card .card-description {
    color: var(--text-light);
    font-size: 14px;
}

.opening-hours-card li {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-list{
    list-style: none;
}
.contact-list li{
    font-size: 14px;
}
.contact-form-title {
    /* font-weight: 700; */
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.2;
}

.contact-form-content {
    max-width: 500px;
    width: 100%;
}

.contact-form-col .form-control {
    border: 1px solid #ddd;
    background-color: #f9fafb;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.contact-form-col .form-control::placeholder {
    color: #999;
}

.contact-form-col .btn-dark-blue-arrow {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* New styles for the blog section */
.blog-section {
    background-color: #f7f9fc;
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.blog-card .card-body {
    position: relative;
}

.blog-meta {
    color: #999;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
}

.blog-meta .blog-date {
    color: var(--green-btn-bg);
}

.blog-card .card-title {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 1rem;
    line-height: 1.4;
}

.blog-card .read-more-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card .read-more-link:hover {
    color: var(--secondary-blue);
}

/* New styles for footer */
/* .main-footer {
    background-color: var(--dark-bg);
    color: #fff;
    position: relative;
    margin-top: 30px;
}
.upper-footer{
 position: absolute;
    top: -50px;
    width: 100%;
}
.footer-top-bar {
   width: 80%;
    margin: auto;
    background-color: var(--green-btn-bg);
    border-radius: 50px;
    padding: 10px 0;
}
.footer-logo{
    height: 100px !important;
}

.upper-icon i{
    font-size: 25px;
    color: var(--primary-blue);
    background-color: #ffffff52;
   margin-right: 10px;
    padding: 10px 12px;
    border-radius: 50%;
}

.upper-div{
    display: flex;
    align-items: center;
}

.footer-bottom{
    padding: 100px 0 30px;
}

.contact-info p {
    font-size: 14px;
    line-height: 1.2;
    color: var(--primary-blue) !important;
}
.contact-info a {
    font-size: 14px;
    line-height: 1.2;
    color: var(--primary-blue) !important;
}

.footer-bottom {
    background-color: var(--dark-bg);
}

.footer-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #b0b8c0;
    line-height: 1.6;
}

.footer-links a {
    color: #b0b8c0;
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.3s ease;
}
.footer-mail{
    color: #b0b8c0;
}
.footer-mail-icon{
    font-size: 20px;
    color: #fff;
}
.footer-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.footer-copyright {
    border-top: 1px solid #1a3857;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s ease;
}
.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}*/
@media (max-width: 992px) {
    .sub-contact {
    display: none;
}
    .contact-image-col{
        padding: 50px 0;
    }

    .contact-form-col {
        border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);
    }
}
@media (max-width: 767px) {
.container, .container-fluid {
    width: 95%;
}
section {
    padding: 40px 0;
}
.logo-box img {
    height: 75px;
}
.logo-box {
    position: absolute;
    padding: 8px 5px;
    border-radius: 10px;
}
.experience-card{
    right: 0px;
}
.content-about {
    padding-left: 00px;
}
.about-title {
    font-size: 30px;
}
.section-title {
    font-size: 1.8rem;
}
.content-title {
    font-size: 1.8rem;
}
.contact-form-title {
    font-size: 1.8rem;
}
.contact-image-col{
    border-radius: 0;
}
.upper-footer{
    position: unset;
}

.footer-top-bar {
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
    text-align: center;
}
.upper-div{
display: block;
}
.contact-info {
    margin-top: 15px;
}
.footer-bottom{
    padding: 50px 0 20px;
}
 }


 footer {
            position: relative;
            padding: 40px 0;
                        background-color: #515151;

        }

        .section-title {
            color: #315175;
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        /* About Us Section */
        footer .about-us-content {
            font-size: 14px;
            line-height: 1.6;
            color: #fff;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

 .social-icons a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 18px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.social-icons a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg); 
    transition: bottom 0.3s ease;
    z-index: -1;
}

.social-icons a:hover::before {
    bottom: 0;
}

.social-icons a:hover {
    color: #fff; 
}

  

        /* Quick Links & Products Section */
        .link-item, .product-item {
            background-color: rgba(0, 0, 0, .1);
            color: #fff;
            padding: 10px 15px;
            margin-bottom: 5px;
            font-size: 14px;
            border-radius: 5px;
        }
        .footer-links li {
    background-color: rgba(0, 0, 0, .1);
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 5px;
    font-size: 14px;
    border-radius: 5px;
}
.footer-links li a{
        color: #fff;

}
 .footer-links li:hover{
                background-color: var(--dark-bg);

 }
        
        .link-item a, .product-item a {
            color: #fff;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }

        .link-item:hover, .product-item:hover {
            background-color: var(--dark-bg);
        }

        /* Visitor Section */
        div#wpsvcattribution {
    display: none;
}
.visitor-section div{
    color: #Fff !important;
}
        /* Location Section */
        .location-section iframe {
            width: 100%;
            height: 200px;
            border: 0;
            border-radius: 5px;
        }

        /* Contact Us Section */
        .contact-us-container {
            background-color: #3296d9;
            color: #fff;
            padding: 20px;
            border-radius: 5px;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .contact-us-container .section-title {
            color: #fff;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
            word-wrap: break-word;
        }

        .contact-item .icon i {
            width: 28px;
            height: 28px;
            background-color: #315175;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 5px;
        }

        .contact-item a {
            color: #fff;
            text-decoration: none;
        }

        .privacy-link {
            position: fixed;
            bottom: 10px;
            right: 15px;
            font-size: 12px;
            color: #555;
        }




/*----------------------------------- innerpages ------------------------------------------*/
/* Breadcrumb css */
.page-breadcrumb {
    background: linear-gradient(135deg, #57b78f 0%, #1b416c 100%);
    padding: 70px 0 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

	.page-breadcrumb::before {
		content: "";
		position: absolute;
		top: -50px;
		right: -50px;
		width: 200px;
		height: 200px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
	}

	.page-breadcrumb::after {
		content: "";
		position: absolute;
		bottom: -80px;
		left: -80px;
		width: 250px;
		height: 250px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
	}


	.page-breadcrumb span.breadcrumb_new a {
		color: var(--white-color);
	}

	.page-breadcrumb span.breadcrumb_new {
		color: var(--white-color);
	}

	.page-breadcrumb .extraa {
		margin: 54px 0;
	}



    /* innerpages */
    /* =========================
   Inner Pages Common Styles
   Prefix: inner-
========================= */

/* Headings */
.inner-heading {
  font-weight: 700;
  color: #1b416e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.inner-subtitle {
  color: #90c01d;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Text */
.inner-text-muted {
  color: #555 !important;
  line-height: 1.8;
  font-size: 1rem;
}

/* Backgrounds */
.inner-page-bg {
  background: #f9f9f9;
}

/* Highlight Cards */
.inner-highlight-card {
  border-top: 5px solid #90c01d;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.inner-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Images */
.inner-image {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.inner-image:hover {
  transform: scale(1.03);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .inner-heading {
    font-size: 1.5rem;
  }
  .inner-text-muted {
    font-size: 0.95rem;
  }
}


/* quality */
/* Unique Quality Assurance Styles */
.inner-qa-step {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.inner-qa-step:hover {
  transform: translateY(-6px);
}

.inner-qa-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #90c01d;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Highlight section */
.inner-qa-highlight {
  background: linear-gradient(135deg, #1b416e 0%, #90c01d 100%);
  border-radius: 16px;
  padding: 50px 30px;
  color: #fff;
}

.inner-qa-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  transition: background 0.3s ease;
}

.inner-qa-card:hover {
  background: rgba(255,255,255,0.2);
}

.inner-qa-card h4 {
  color: #fff;
}


/* Unique PCD Pharma Styles */
.inner-pcd-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.inner-pcd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.inner-pcd-icon {
  font-size: 2rem;
  color: #90c01d;
  margin-bottom: 15px;
}

/* CTA Banner */
.inner-pcd-cta {
  background: linear-gradient(135deg, #1b416e 0%, #90c01d 100%);
  border-radius: 16px;
  color: #fff;
}

.inner-pcd-cta h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.inner-pcd-cta p {
  font-size: 1.05rem;
}

.inner-pcd-cta .btn {
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* manufacturing */
/* Unique Third Party Manufacturing Styles */
.inner-tpm-step {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  text-align: left;
  position: relative;
}

.inner-tpm-step:hover {
  transform: translateY(-6px);
}

.inner-tpm-num {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: #1b416e;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Advantages Section */
.inner-tpm-advantages {
  background: linear-gradient(135deg, #1b416e 0%, #90c01d 100%);
  border-radius: 16px;
  padding: 60px 30px;
  color: #fff;
}

.inner-tpm-card {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 30px 20px;
  color: #fff;
  transition: background 0.3s ease;
  text-align: center;
}

.inner-tpm-card:hover {
  background: rgba(255,255,255,0.22);
}

.inner-tpm-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}
  #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: #90c01c;
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}

/* archieve */
ul#menu-inner-menu {
    list-style: none;
    color: #fff;
    padding-left: 10px;
}
ul#menu-inner-menu li{
    padding: 5px 0;

}
ul#menu-inner-menu li a{
    color: #fff;
}
ul#menu-inner-menu li a:hover{
    color: #042147;
}

.table-box .table-responsive thead th {
    background-color: #042147;
    color: white;
    text-align: left;
    padding: 1rem;
    border-bottom: 2px solid #dee2e6;
    border-radius: 8px 8px 0 0;
}
.table-box .table-hover > tbody > tr {
    transition: background-color 0.3s ease;
}
.table-box .table-responsive tbody td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}
.table-box .table-hover > tbody > tr:hover > * {
    background-color: rgb(133 211 255 / 15%);
}

.single-btn{
    color: #fff;
    border: 1px solid;
    padding: 10px 20px;
    margin: 0;
    width: 50%;
    float: left;
    text-align: center;
    background-color: #042147;
    border-radius: 8px;
}