@font-face {
  font-family: 'Cantarell';
  font-style: normal;
  font-weight: 400;
  src: url(https://promoveoconsulting.com/image/Cantarell-Regular.otf) format('truetype');
}

@font-face {
  font-family: 'Helvetica Neue';
  font-style: normal;
  font-weight: 400;
  src: url(https://promoveoconsulting.com/image/HelveticaNeueItalic.ttf) format('truetype');
}

@font-face {
  font-family: 'Oxygen';
  font-style: normal;
  font-weight: 400;
  src: url(https://promoveoconsulting.com/image/Oxygen-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://promoveoconsulting.com/image/Poppins-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://promoveoconsulting.com/image/roboto.ttf) format('truetype');
}

@font-face {
  font-family: 'Segoe UI';
  font-style: normal;
  font-weight: 400;
  src: url(https://promoveoconsulting.com/image/Segoe-UI.ttf) format('truetype');
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url(https://promoveoconsulting.com/image/Ubuntu-R.ttf) format('truetype');
}
.card-title{text-align: left;}
.abt-top-wrapper *{text-align: justify;}
 /* Define Brand Colors for consistency */
            :root {
                --brand-blue: #1a4d6d;
                --brand-green: #92d050;
                /* Light Green used in heading */
                --highlight-white: #ffffff;
            }

            /* ================== GENERAL STYLES ================== */
            body {
                font-family: Arial, sans-serif;
                margin: 0;
                padding: 0;
            }

            /* ================== CAROUSEL BUTTON STYLES ================== */
            .carousel-control-prev, .carousel-control-next {
                width: 50px;
                opacity: 1;
            }

            .carousel-control-prev-icon, .carousel-control-next-icon {
                display: none;
            }

            .carousel-control-prev::after, .carousel-control-next::after {
                content: '';
                display: block;
            }

            .carousel-control-prev i, .carousel-control-next i {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
                color: var(--brand-green);
                background-color: transparent;
                border-radius: 8px;
                transition: all 0.2s ease-in-out;
            }

            .carousel-control-prev:hover i, .carousel-control-next:hover i {
                background-color: rgba(0, 0, 0, 0.1);
                color: var(--brand-blue);
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            }

            .carousel-control-prev {
                left: 2%;
            }

            .carousel-control-next {
                right: 2%;
            }

            /* ================== HEADER/TRUSTED SECTION ================== */
            .heading-section {
                background-color: var(--brand-blue);
                padding: 100px 15px;
                /* CRITICAL: Allows scrolling if content inside is wider than the viewport */
                overflow-x: auto;
                white-space: nowrap;
                /* Prevent inner content from wrapping */
            }

            /* Ensures the text stays centered even with overflow */
            .heading-section .row {
                display: inline-block;
                /* Allow the row to expand to fit the text */
                min-width: 100%;
            }

            .heading-section .col-md-12 {
                display: inline-block;
                float: none;
                /* Prevent column floating issues */
            }

            /* UPDATED: Font size reduced to 28px */
            .premium-heading {
                color: var(--highlight-white);
                font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
                font-size: 28px;
                /* <-- NEW REDUCED FONT SIZE */
                font-weight: 900;
                line-height: 1.2;
                /* Ensures text stays on one line (Critical) */
                white-space: nowrap;
                letter-spacing: -1px;
                text-transform: uppercase;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
                display: inline-block;
                /* Treat H2 as an inline block to size itself to content */
                padding: 0 20px;
            }

            /* Styling for animated words */
            .premium-heading .word {
                display: inline-block;
                /* margin-right: 12px; */
                padding: 0;
                border-radius: 0;
                background-color: transparent;
                transition: none;
            }

            /* Green color for highlighted words */
            .premium-heading .word:has(b) {
                color: var(--brand-green);
            }

            /* Ensure the animated words start with the correct color */
            .premium-heading b {
                color: var(--brand-green) !important;
            }

            /* ================== STATS SECTION STYLES ================== */
            .stats-section {
                background: #f8f8f8;
                overflow-x: hidden;
            }

            .stat-card-wrapper {
                position: relative;
                /* padding: 25px 15px; */
                perspective: 1000px;
            }

            .stat-card {
                background: #fff;
                padding: 30px 15px;
                border-radius: 12px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                cursor: pointer;
            }

            /* BASE CRUSH Hover Effect for the entire card (sinks) */
            .stat-card:hover {
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.35);
                transform: scale(0.95) translateY(5px);
            }

            /* Logo (icon) styles */
            .card-icon {
                font-size: 55px;
                color: #009640;
                margin-bottom: 20px;
                transition: transform 0.4s ease-out, color 0.3s;
                transform-origin: center center;
                position: relative;
                z-index: 1;
            }

            .stat-card:hover .card-icon {
                transform: scale(1.75);
                color: #1a4d6d;
                z-index: 20;
            }

            .stat-value {
                font-size: 45px;
                font-weight: 800;
                color: #1a4d6d;
                margin: 5px 0;
                transition: transform 0.4s ease-out, color 0.4s ease-out;
                transform-origin: center center;
            }

            .stat-card:hover .stat-value {
                transform: scaleY(0.7);
                color: #009640;
            }

            .stat-title {
                font-size: 15px;
                color: #444;
                font-weight: 600;
                margin-top: 10px;
            }

            .stat-card:hover .stat-title {
                /* No transform applied here, so it remains static */
            }

            /* Styling for the animated SVG lines */
            .line-connector {
                position: absolute;
                top: 50%;
                right: -25px;
                width: 50px;
                height: 10px;
                z-index: 10;
                transform: translateY(-50%);
                display: block;
            }

            .stat-card-wrapper:last-child .line-connector {
                display: none;
            }

            .line-connector path {
                stroke: #aaa;
                stroke-width: 2;
                stroke-dasharray: 100;
                stroke-dashoffset: 100;
            }

            .stats-row {
                /* display: flex; */
            }

            /* Media query for mobile responsiveness */
            @media (max-width: 991px) {
                .stats-row {
                    /* flex-direction: column; */
                }

                .line-connector {
                    right: 50%;
                    bottom: -25px;
                    width: 10px;
                    height: 50px;
                    transform: translateX(50%) rotate(90deg);
                }

                .stat-card-wrapper:nth-child(3) .line-connector {
                    display: block;
                }

                .stat-card-wrapper:last-child .line-connector {
                    display: none;
                }

                .heading-section {
                    padding: 60px 15px;
                    overflow-x: hidden;
                    /* Prevent horizontal scrolling on mobile */
                }

                /* Reverting to multi-line on small screens */
                .premium-heading {
                    font-size: 24px;
                    white-space: normal;
                    /* Allow wrapping on mobile */
                    text-align: center;
                    display: block;
                    padding: 0;
                }

                .premium-heading .word {
                    margin-right: 8px;
                }

                .carousel-control-prev, .carousel-control-next {
                    display: none;
                }
            }

            .slider-1 {
                background-color: #f0f0f0;
                padding: 20px;
                text-align: center;
            }
/* Define Brand Colors (Combined for all sections) */
:root {
    --brand-blue: #004d7a; /* Darker, richer navy for background */
    --brand-green: #00c497; /* Brighter, modern teal-green for accents */
    --navy-text: #1a4d6d;
    --light-bg: #f8f8f8; /* Diamond pattern background color */
    --navy-blue: #1a4d6d; /* Used for core value text color */
    --white: #ffffff;
    --text-color: #f0f0f0; /* Light text color for dark backgrounds */
    /* Marquee Variables */
    --logo-size: 90px;
    --item-width: 250px;
    --animation-duration: 50s;
}

/* CRITICAL FIX: Zero out browser default spacing for consistency */
html, body {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    font-family: 'Roboto', Arial, sans-serif;
}

/* NEW Centering Wrapper */
/* .centered-content {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: var(--bs-gutter-x, 1.5rem);
    padding-right: var(--bs-gutter-x, 1.5rem);
} */

/* ======================================= */
/* --- CLIENT LOGO MARQUEE STYLES --- */
/* ======================================= */
.clients-logo {
    padding: 50px 0;
    overflow: hidden;
    width: 100%;
    background-color: var(--white) !important;
}

.servtitle {
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;
    color: var(--navy-text);
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

/* Marquee Animations */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * 9 * var(--item-width))); }
}

@keyframes scroll-right {
    0% { transform: translateX(calc(-1 * 9 * var(--item-width))); }
    100% { transform: translateX(0); }
}

/* Marquee Structure */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.marquee-content {
    display: flex;
    width: calc(18 * var(--item-width));
}

/* Marquee Animation Application */
.marquee-content.row-1 {
    animation-name: scroll-left;
    animation-duration: var(--animation-duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    transform: translateX(0);
}

.marquee-content.row-2 {
    animation-name: scroll-right;
    animation-duration: var(--animation-duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    transform: translateX(calc(-1 * 9 * var(--item-width)));
}

.is-in-view .marquee-content {
    animation-play-state: running !important;
}

/* Marquee Items */
.marquee-content .item {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: var(--item-width);
    height: calc(var(--logo-size) + 20px);
    padding: 0 20px;
    box-sizing: border-box;
    background-color: var(--white);
}

.marquee-content .item img {
    max-height: 100%;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: filter 0.4s ease, transform 0.4s ease;
}

.marquee-content .item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ======================================= */
/* --- MODERN CTA STYLES (.PKCAdvantage) --- */
/* ======================================= */
.PKCAdvantage {
    background-color: var(--brand-blue);
    color: var(--text-color);
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.PKCAdvantage h3 {
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0;
    color: var(--brand-green);
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.PKCAdvantage p {
    font-size: 1.05rem;
    opacity: 0.8;
    margin: 5px 0 0;
    font-weight: 400;
    color: var(--text-color);
}

/* --- ANIMATED BUTTON STYLE (frm-lnk) --- */
.frm-lnk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    background-color: var(--white);
    color: var(--brand-blue);
    border: 2px solid var(--brand-green);
    border-radius: 50px;
    transition: color 0.4s ease-in-out, transform 0.2s ease;
    z-index: 1;
}

/* The Liquid Layer (Pseudo-element) - fills with green on hover */
.frm-lnk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-green);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: -1;
}

/* Hover State: The marvelous animation! */
.frm-lnk:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 196, 151, 0.5);
}

.frm-lnk:hover::before {
    transform: translateY(0);
}

.PKCAdvantage .fa-arrow-right {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .PKCAdvantage .col-md-6 {
        text-align: center !important;
        margin-bottom: 20px;
    }
}

/* ======================================= */
/* --- CORE VALUES STYLES (New Section) --- */
/* ======================================= */
.core-values-section {
    overflow: hidden;
    width: 100% !important;
    position: relative;
    z-index: 5;
    padding: 0px 0; /* Adjusted padding since it's the last section */
    /* Diamond-cut pattern background */
    background-color: var(--light-bg) !important;
    background-image: linear-gradient(135deg, var(--white) 25%, transparent 25%),
                      linear-gradient(-135deg, var(--white) 25%, transparent 25%),
                      linear-gradient(45deg, #f0f0f0 25%, var(--white) 25%),
                      linear-gradient(-45deg, #f0f0f0 25%, var(--white) 25%) !important;
    background-size: 20px 20px !important;
    margin-bottom: 0;
}

.core-values-section .row {
    background-color: transparent !important;
}

/* Section Title */
.section-title {
    color: var(--navy-text); /* Using the same navy for consistency */
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--brand-green);
    border-radius: 2px;
}

/* Wrapper to apply a slight diagonal tilt to the whole section */
.diagonal-grid-wrapper {
    transition: all 0.5s ease-in-out;
    transform: rotateZ(-0.5deg);
    padding: 20px 0;
}

/* Value Card Styling */
.value-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(.2,.7,.3,1);
    height: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;

}

/* Global Dimming (No Blur) on hover of the entire wrapper */
.diagonal-grid-wrapper:hover .value-card {
    opacity: 0.85;
    transform: scale(0.99);
}

/* Focus & Lift is strong on individual CARD hover */
.value-card:hover {
    opacity: 1;
    z-index: 10;
    transform: translateY(-20px) rotateZ(0deg) scale(1.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-bottom: 6px solid var(--brand-green);
}

/* Card Icon */
.value-icon {
    font-size: 3.5em;
    color: var(--brand-green);
    margin-bottom: 25px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: var(--brand-blue);
}

/* Card Title */
.value-title {
    font-size: 1.35em;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 15px;
    transition: color 0.3s ease-out;
    text-align: left;
}

/* Card Description */
.value-description {
    font-size: 1.05em;
    color: var(--navy-blue) !important;
    line-height: 1.6;
    margin-bottom: 0;
    transition: font-weight 0.2s ease-out, font-family 0.3s ease, font-size 0.3s ease;
}

.value-card:hover .value-description {
    font-weight: 700;
    font-family: monospace;
    font-size: 1.15em;
}
.our-services-section {
            position: relative;
            margin-top: -1px; 
            /* Added padding at the bottom for the curve to sit */
            padding: 0 0 120px 0; 
            
            overflow: hidden;
            z-index: 1; 
            background: var(--brand-blue); 
            width: 100%;
        }
        
        /* ======================================= */
        /* --- BOTTOM CURVE STYLES --- */
        /* ======================================= */
        
        .bottom-curve-wrapper {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px; 
            overflow: hidden;
            z-index: 2; 
        }
        
        .bottom-curves {
            position: absolute;
            bottom: 0; 
            left: 0;
            width: 100%;
            height: 120px;
            z-index: 2;
            pointer-events: none;
        }
#FooterrControl1_Footer{margin-top: 0 !important;}
        /* Bottom Curve Fill: Solid Navy Blue (matches the section it is leaving) */
        .bottom-curves path {
            fill: var(--brand-blue); 
        }
.table-responsive {
    overflow: hidden;    padding: 0;
}

        /* Other existing styles remain the same for card structure */
        .our-services-section h2 {
            display: block; text-align: center;color: #fff;
        }

        .card-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            /* Adjusted margin to pull cards up closer to the heading */
            margin-top: 40px; 
            position: relative;
            z-index: 3;
        }
        
        /* --- Service Card Base Style (ADJUSTED FOR 4-UP LAYOUT) --- */
        .service-card {
            /* Initial Background Gradient */
            background: linear-gradient(110deg, #47e187 70%, #3ad29f 100%);
            color: #fff;
            border-radius: 32px;
            box-shadow: 0 4px 24px rgba(34, 32, 52, 0.10); 
            padding: 36px 36px 28px 36px;
            /* **ADJUSTMENT:** Max width set to 280px for better 4-up fit within 1320px container */
            min-width: 260px;
            max-width: 350px; 
            flex: 1 1 280px;
            
            /* --- CENTERING THE CONTENT --- */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Centers content vertically */
            align-items: center; /* Centers content horizontally */
            text-align: center; /* Ensures wrapping text within children is centered */
            
            position: relative;
            /* Transition for Transform, Shadow, and Background/Filter */
            transition: transform 0.25s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease-out, filter 0.3s ease-out; 
            cursor: pointer;
            z-index: 3;
            font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
            overflow: hidden; height: 100%;
        }
.centered-content .row .col{margin:15px auto;}
        /* HOVER EFFECT: Color Shift and Stronger Shadow */
        .service-card:hover {
            /* Existing lift and rotation */
            transform: translateY(-12px) scale(1.04) rotate(-1deg); 
            
            /* Color Shift: Increase Saturation and Brightness slightly */
            filter: saturate(1.2) brightness(1.1);

            /* Stronger, darker Shadow for contrast */
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.45); /* Darker and larger shadow */
        }

        /* --- Service Title Styling --- */
        .service-title {
            font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
            font-weight: 700;
            font-size: 1.35rem;
            color: #062743;
            /* Removed redundant text-align: center here as it's now handled by the parent card's align-items */
            margin-top: 0; 
            margin-bottom: 18px;
            letter-spacing: 1px;
            text-shadow: 0px 2px 8px rgba(40,40,60,0.10);
            padding-top: 0; 
            position: relative; 
            z-index: 1;
            /* We need text-align here in case the title wraps across multiple lines */
            text-align: center; 
            /* Transition for hover effect */
            transition: font-weight 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
        }

        /* Hover effect for service title: Bolder font and 1px white outline */
        .service-card:hover .service-title {
            font-weight: 800; 
            color: #062743; 
            /* 1px white outline using text-shadow */
            text-shadow: 
                -1px -1px 0 #fff,  
                 1px -1px 0 #fff,
                -1px  1px 0 #fff,
                 1px  1px 0 #fff; 
        }

        /* The following styles for the content/description are kept, but the HTML content is removed */
        .service-desc {
            font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
            font-size: 1rem;
            font-weight: 400;
            color: #ededed;
            margin-bottom: 16px;
            line-height: 1.7;
            /* We must set flex-grow: 1 to ensure the description takes up all available remaining space, 
               allowing the title to truly be vertically centered if no description content exists. */
            flex-grow: 1;
            display: none; /* Keeping it hidden as per original code, but ensuring its presence enables proper flex centering if it were visible */
        }

        .service-desc strong {
            color: #ffffff;
            font-family: 'Montserrat', Arial, sans-serif;
            font-weight: 800;
            font-size: 1.05rem;
        }

        .service-desc ul {
            color: #fff;
            margin-left: 18px;
            font-family: 'Poppins', Arial, sans-serif;
            font-weight: 500;
            font-size: 1.01rem;
        }
.callicon {
    position: fixed;
    top: 35vh;
    right: 40px;
    z-index: 999;
    background: #223855;
    width: 70px;
    padding: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    filter: drop-shadow(2px 2px 6px #333);
}

.pf-flt-icn {
    width: 100%;
    height: 60px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.call-query {
    position: fixed;
    top: 50vh;
    right: 0;
    z-index: 999;
    background: #223855;
    width: 70px;
    padding: 10px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    filter: drop-shadow(2px 2px 6px #333);
}

.product-bx{margin-top: 20px;}
.product-bx a{text-decoration: none;}
.pro-img{overflow: hidden;min-height: 254px;}
.pro-img img{width:100%;height: 250px;}
.pro-img img:hover{transform: scale(1.1);transition: 1s;}
.product-bx h2{color: #141f3c;font-size: 20px;font-weight: 600;line-height: 30px;text-align: center;height: 80px;padding:20px 15px;}
.view-all-btn button {background-color:#fff; border: 1px solid #0d2954;color: #0d2954;font-size: 15px;padding: 9px 38px 7px;}


body { margin: 0; padding: 0; font-family: "Poppins", sans-serif; overflow-x: hidden;}
p, li {color: #10002b;font-size: 16px;line-height: 26px;font-weight: 400;margin: 7px 0 15px 0 !important;font-family: "Poppins", sans-serif;letter-spacing: .3px;}
.main-table li {color: #10002b;font-size: 15px;line-height: 25px;margin: 0 0 10px 0;font-family: "Poppins", sans-serif !important;}
a { text-decoration: none !important; font-family: "Poppins", sans-serif;}
h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif;}
.team .member .member-info p {
    text-align: left;
}
.about-page p{text-align:justify;}
.main-table {text-align: left;padding: 2% 0;}

.footer_left_bg {
    background: #113b58;
    padding: 4%;
}
.servtitle {
    text-align: center;
    font-size: 32px;
    color: #1d3956;
    font-weight: bold;
}
.servtitle1 {
    color: #113b58;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.clients-logo1 {
    background: #fff;
    padding-top: 10px;
}


#FooterrControl1_tr_hitCounter {
    display: none;
}
.slider-1{
    background: #f5f5f5;
}
.slider-1 h1{font-weight: bold;margin-bottom: .5rem;font-size: 32px;color: #6cca59;font-family: Poppins !important;font-weight: 900;line-height: 1.2;padding: 40% 0% 0% 10%;}
.slider-1 p{font-family: Poppins;font-size:24px;line-height: 2;color: #222;margin-bottom: .5em;padding: 0% 0% 0% 10%;}


.Trusted{
    background: #183a57;
    align-items: center;
    width: 100%;
    padding: 0px 0 15px;
}
.Trusted h2{
    color: #fff;
    font-size: 31px;
    text-align: center;
    font-family: Segoe UI !important;
    padding: 60px 0 40px;
    font-weight: 100;
}

.homefourbox{}
.homefourbox-1{
    min-height: 250px;
    background: #e4e4e4;
    padding: 10%;
    text-align: center;
}
.homefourbox-1 i{font-size:60px; color: #1d3956;}
.homefourbox-2 i{font-size:60px; color: #1d3956;}
.homefourbox-1 i:hover{font-size:60px; color: #6cca59; padding-left:10px;}
.homefourbox-2 i:hover{font-size:60px; color: #6cca59; padding-left:10px;}
.homefourbox-1 h1{}
.homefourbox-2{
    min-height: 250px;
    background: #f4f4f4;
    padding: 10%;
    text-align: center;
}
.homefourbox-1 h2{
    color: #000000;
    text-align: center;
    font-weight: bolder;
    line-height: 28px;
    font-size: 26px;
    padding: 0 0 35px 0px;
}
.homefourbox-2 h2{
    color: #0d0c0c;
    text-align: center;
    font-weight: bolder;
    line-height: 28px;
    font-size: 26px;
    padding: 0 0 35px 0px;
}

.clients-logo{}
.servtitle h3{}

.PKCAdvantage{
    background: #013a5b;
}
    .PKCAdvantage h4{
    background: #009640;
    align-items: center;
    padding: 50px 20px;
    font-family: Poppins;
    text-align: center;
}
    .PKCAdvantage h4 a{
    color: #fff !important;
    align-items: center;
    font-size:24px;
    font-family: Poppins;
}

.PKCAdvantage h4 i{
    background: #223855;
    color: #fff;
    margin-left: 40px;
    font-size:60px;
    font-family: Poppins;
}
.PKCAdvantage h4 i:hover{
    background: #fefefe;
    color: #223855;
    font-size:60px;
    padding:30px;
    font-family: Poppins;
}

.PKCAdvantage h3{
    font-size: 32px;
    color: #009640;
    font-weight: bold;
    font-family: 'Segoe UI';
    padding-top: 10px;
    text-align: center;
}
.PKCAdvantage p{
    text-align: center;
    font-size: 30px;
    color: #eee;
}

.Coretitle{
    text-align: center;
    font-size: 32px;
    color: #1d3956;
    font-weight: bold;
    padding: 40px 0px 20px;
}
.Corevalues{
    border-top: solid #193a58 3px;
    height: 100%;
    background: #f7f7f7;
    border-bottom: solid #5ecf63 3px;
}

.Corevalues:hover {
    box-shadow: 0 10px 15px #999;
    transform: translate(0, -10px);
    transition: .2s;}

.Corevalues h3{
    font-size: 20px;
    font-weight: bold;
    /* margin-bottom: 1em; */
    color: #193a58;
    /* margin-top: 10px; */
    padding: 10px;
    font-family: Poppins;
}
.Corevalues p{
    font-size: 16px;
    /* margin-bottom: 1em; */
    color: #606060;
    /* margin-top: 10px; */
    padding: 10px;
    font-family: Poppins;
}

.clients-logo1 { padding: 0% 0 0 0;}
.clients-logo1 .item { display: inline-block; margin: 20px 5px; padding: 5px; border: 1px solid #eee; border-radius: 3px;}
.clients-logo1 .item img { width: 100px}


.service-section { padding: 7% 0;}
.service-section .heading {margin: 0 0 40px 0;font-size: 32px;color: #193a58;font-weight: bold;}
.service-section .heading::after { margin: 0 auto;}
.service-section .nav-pills .nav-link {text-align: left;/* background: #fff !important; */margin: 0 0 30px 0;padding: 12px;/* border-radius: 50px; *//* box-shadow:0px 10px 30px 0px rgba(0,68,167,0.5); */}
.service-section .nav-link .icon { background: #e69d2f; padding: 12px; border-radius: 50%; width: 70px; height: 70px;}
.service-section .nav-pills .nav-link h4 {font-size: 22px;color: #49d36b;font-weight: 700;margin: 0;}
.service-section .nav-pills .nav-link.active {background: #5ecf63 !important;}
.service-section .nav-pills .nav-link.active h4 { color: #fff;}
.service-section .ser-text .ser-img { position: relative; margin: 0 0 20px 0;}
.service-section .ser-text .ser-img img { border-radius: 12px;}
.service-section .ser-text .ser-img .title {/* position: absolute; *//* bottom: 0; *//* left: 0; *//* background: linear-gradient(rgba(255, 255, 255, .0)0%, rgba(0, 61, 109, 1) 100%); *//* width: 100%; *//* padding: 50px 25px 15px 20px; *//* border-bottom-left-radius: 12px; *//* border-bottom-right-radius: 12px; */}
.service-section .ser-text .ser-img .title h4 {margin: 0;color: #193a58;font-size: 28px;font-weight: 800;}
.service-section .ser-text p  {margin: 0 0 30px 0;}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  margin-bottom: 17px;
  background: #04293c;
  padding: 26px 0px;
}



.counts .count-box {
  padding: 62px 30px 25px 30px;
  width: 100%;
  text-align: justify !important;
  position: relative;
  text-align: center !important;
  /* background: #fff; */
}

.counts .count-box i {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  background: #1977cc;
  padding: 12px;
  color: #fff;
  border-radius: 37px;
}

.counts .count-box span {
  font-size: 37px;
  /* display: block; */
  font-weight: 600;
  color: #fff;
  padding-top: 10px;
}

.counts .count-box p {
  color: #fff;
  padding: 18px;
  text-align: center !important;
  margin: 0;
  /* font-family: "Raleway", sans-serif; */
  font-size: 17px;
  font-weight: bold;
}


#widgetsControl_C, #widgetsControl{ height: auto !important;}
/* #Div_body .container-fluid { margin: 0; padding: 0;} */

#MenuControl .nav-item {
    margin: 0;
}
#MenuControl .nav-item .nav-link {color: #183a57;font-size: 16px;text-align: center !important;font-weight: 600;}
#MenuControl .nav-fill{ width:100%;}
.navbar-nav.nav-fill > li:last-child .nav-link{border-radius: 5px;background: #113b58;color: #fff !important;}
#MenuControl .bg-light {background: #fff!important;height: 100%; padding: 0 10% 0 0}

#HeaderControl.RadDock_Default .rdMiddle .rdCenter, #HeaderControl.RadDock_Default .rdBottom .rdCenter { background-color: transparent !important;}
#MenuControl_C .bg-light { --bs-bg-opacity: 1; background-color: transparent !important; height: 100%;}
#MenuControl.RadDock_Default .rdMiddle .rdCenter, #MenuControl.RadDock_Default .rdBottom .rdCenter { background-color: transparent !important;}

#HeaderControl, #MenuControl, #MenuControl_C {height: 80px !important;}
#MenuControl{border-radius: 0px 0px 0px 43px; background:#79c64e;}
#HomepagecontentControl_C { margin: -20px 0 0 0 !important}
.dropdown-menu { border-radius: 0 !important; padding: 0; min-width: 240px;}
.dropdown-menu li { margin: 0; padding: 3px 0;}

@media (min-width: 320px) and (max-width: 768px ){
  .navbar-toggler { position: absolute; right: 15px; top: -60px; background: #fff}
  #MenuControl, #MenuControl_C { height: 0 !important;}
  #HeaderControl, #HeaderControl_C {height: 75px !important;background: #f3f4fa;}
  .navbar-collapse {background: #f3f4fa;margin-top: -10px}
  #MenuControl .bg-light { padding: 0}
}

/* innr-pg-c Start */
.otherpagecss #RadDockZone1.container { max-width: 100%;}
.otherpagecss #RadDockZone1.container #HomepagecontentControl_C table { margin-top: 0 !important;}

.heading p {background: #79c64e;color: #fff;display: inline-block;border-radius: 5px;padding: 3px 18px 1px 18px;text-transform: uppercase;letter-spacing: .9px;font-weight: 700;margin: 0 0 18px 0;}
.heading h2 {color: #10002b !important;font-size: 40px;font-weight: 700;margin: 0 0 22px 0;}
.heading h2 span.after { position: relative;}
.heading h2 span.after::after { content: ""; position: absolute; background-image: url('image/hadding-after-1.png'); height: 37px; width: 30px; top: 0;}
.sub-heading {color: #6cca59;font-size: 30px;font-weight: 700;margin: 0px 0 0px 0;}
.sub-heading1 { color: #10002b; font-size: 27px; font-weight: 700; margin: 0 0 20px 0; line-height: 1.3;}
.custom-btn {display: inline-block;font-size: 17px;font-weight: 700;color: #fff;padding:15px 18px;background-color: #f26d21;line-height: 17px;border-radius: 4px;transition: all.4s;letter-spacing: .3px;box-shadow: 1px 1px 5px #79c64e;}
.custom-btn1 {background: #003d6d;color: #fff;display: inline-block;padding: 12px 40px;font-size: 15px;font-weight: 600;float: right;letter-spacing: .5px;border-radius: 5px;/* border-top-left-radius: 50px; *//* border-bottom-right-radius: 50px; */box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.1);}
.custom-btn1:hover { color: #fff; animation: zoom-in-zoom-out .5s ease-in-out; transform: scale(1.1, 1.1);}
.pkcbg li {
    color: #706e6e;
    align-items: center;
    line-height: 1.5;
    font-size: 20px;
    font-family: Poppins;
}

.serv-left-nav {
    background: #193a58;
    padding: 5px;
}

header { text-align: center}
header img {width: 140px;padding: 10px 0;}

.banner-section::after {
    background: linear-gradient(to right, rgb(4 41 60), rgb(4 41 60 / 12%));
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

*{/* font-family:Poppins !important; */}
.fa {font-family:fontawesome !important;}

body {
  font-family:Poppins;
  color: #4d4643;
}

a {
  color: #cc1616;
}

a:hover {
  color: #fd5c28;
  text-decoration: none;
}
.c2s{position:relative;}
.c2s:before {
    width: 100%;
    height: 100%;
    background: #053956 !important;
    position: absolute;
    content: '';
    top: -8px;
    left: 0;
    border-radius: 50%;
}
.c2s:after{
  width:100%;
  height:100%;
  background: #053956 !important;
  position: absolute;
  content:'';
  top: 8px;
  left:0;
  border-radius: 50%;
}
.circle-wrap:before{
  width:100%;
  height:100%;
  background: #f26d21;
  position: absolute;
  content:'';
  top: -8px;
  left:0;
  border-radius: 50%;
}
.circle-wrap:after{
  width:100%;
  height:100%;
  background: #f26d21;
  position: absolute;
  content:'';
  top: 8px;
  left:0;
  border-radius: 50%;
}
    .circle-wrap {
      position: relative;
      width: 100%;
      height: 570px;
      margin: 65px auto 30px;
      /* box-shadow: 1px 1px 5px gray; */
    }
    .outer-circle {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      box-shadow: 0 8px 15px rgba(0,0,0,0.15);
      z-index: 2;
    }
    .outer-circle:before {
      content: "";
      position: absolute;
      top: -22px;
      left: -11px;
      width: calc(100% + 20px);
      height: calc(100% + 20px);
      border-radius: 50%;
      border: 25px solid transparent;
      z-index: -1;
      transform: rotate(45deg);
    }
    .outer-circle.red:before {border-top-color: #f26d21;}

.outer-circle:after {
      content: "";
      position: absolute;
      bottom: -18px;
      left: -11px;
      width: calc(100% + 20px);
      height: calc(100% + 20px);
      border-radius: 50%;
      border: 25px solid #af1c1c00;
      z-index: -1;
      transform: rotate(225deg);
    }
    .outer-circle.red:after {border-top-color: #f26d21;}
    .outer-circle.cyan:before {border-top-color: #053956;}
    .outer-circle.cyan:after {border-top-color: #053956;}
    .inner-content {
      text-align: center;
      padding: 30px;
      width: 80%;
      height: 80%;
      border-radius: 50%;
      background: #fff;
      /* box-shadow: 2px 4px 0px #9d969673; */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .inner-content i {
      font-size: 40px;
      margin-bottom: 12px;
    }
    .red i { color: red; }
    .cyan i { color: #00bcd4; }
    .yellow i { color: #f1c40f; }

    .inner-content h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 8px;
    }
    .inner-content p {
      font-size: 14px;
      color: #555;
      margin: 0;
    }

    /* reflection */
    .reflection {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 80px;
      transform: scaleY(-1);
      opacity: 0.2;
      background: radial-gradient(circle at 50% 0, rgba(0,0,0,0.15), transparent 70%);
      border-radius: 50%;
      filter: blur(2px);
    }






h1, h2, h3, h4, h5, h6 {
  font-family:Poppins;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #cc1616;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #fd5c28;
  transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  width: 100%;
  z-index: 9;
  padding: 10px 0;
  font-size: 14px;
  color:#ccc; background:#1b1b1b;
}

#topbar .contact-info a {
  line-height: 1;
  color: #ccc;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #cc1616;
}

#topbar .contact-info i {
  color: #cc1616;
  padding: 4px;
}

#topbar .contact-info .icofont-phone {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a {
  color: #ccc;
  padding: 4px 0 4px 20px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  
}
#topbar .social-links{text-align:right;}
#topbar .social-links a:hover {
  color: #cc1616;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*height: 70px;*/
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: #1b1b1b;
}
#header.navbar-fixed-top{background:rgba(0,0,0,.9);}
#header img{margin:0 auto;}
/*--------------------------------------------------------------
# banner Section
--------------------------------------------------------------*/
#hero { width: 100%; overflow: hidden;  position: relative; background: linear-gradient(0deg, #2d2d2d 0%, #1b1b1b 100%); padding: 0;padding-top: 40px;}
#hero:before {/*
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;*/
}
#hero .hero-content-left h2{margin-top:20vh; color: #fff; font-size: 60px; font-weight: 700;}
#hero .hm-query-form{background:#f5f5f5; border-top:8px solid #cc1616;border-bottom:8px solid #cc1616;}
#hero .form-control {
    border-color: #ebebeb;
    padding: .75rem 0.85rem;
    height: calc(2.56em + .75rem + 2px);
}
#hero .sbmt{color: #fff;
    background: #cc1616;
    border: 1px solid #cc1616;
	padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all .25s ease-in-out;
	width: 100%;
    margin-bottom: 20px;}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero .sbmt:hover { background: #1f1f1f; border: 1px solid #1f1f1f; text-decoration: none;}
.hm-query-form h3{color:#cc1616; font-size:30px; line-height:30px; font-weight:700; letter-spacing:1px;}
.hm-query-form h4{color:#cc1616; font-size:20px; line-height:30px;}
@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }
  #hero h2 {
    font-size: 28px;
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f1f1f1;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;margin: 15px auto;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #cc1616;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fce5e5;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #191919;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #cc1616;
  border-color: #cc1616;
  padding: 70px 20px 90px 20px;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #cc1616;
}

.services .icon-box:hover .icon::before {
  background: #e82d2d;
}

.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .section-title{padding-bottom:10px;}
.about-us img{border-radius: 50px;border: 10px solid #cc1616;}
.about-us img {
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
}
.about-us:hover img{
    -webkit-filter: none;
    filter: none;
}
.about-us  p {
  margin-bottom: 0; line-height:26px; font-size:15px; text-align:justify;}

.about-us .content .icon-box {
  margin-top: 25px;
}

.about-us .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about-us .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #cc1616;
}

.about-us .content .icon-box p {
  font-size: 15px;
  color: #90847f;
  margin-left: 60px;
}

.about-us .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about-us .image {
    text-align: center;
  }
  .about-us .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about-us .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team{padding-top: 54px;padding-bottom:60px;}
.team .member {
  min-height: 310px;
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  padding: 17px;
  margin-top: 32px;
  /* border-radius: 10px; */
  background: #fff;
  border: 1px solid #aaaa;
}

.team .member .pic {
  /* overflow: hidden; */
  width: 293px;
  border-radius: 50%;
  /* float: left; */
  padding: 5px;
  /* margin-right: -5px; */
  /* border: 2px solid #10002b; */
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}
.team .member:hover .pic{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}
.team .member:hover{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}
.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  text-align: left;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #7ec012;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #ecf6fe;
  color: #0665b7;
}

.team .member .social a i {
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #0880e8;
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0c0c;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #191919;
  color: #fff;
  border-top: 4px solid #cc1616;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 36px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #262626;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #cc1616;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px dashed #eee;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ed5b5b;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center; transition:.5s;
}
#footer .footer-top .footer-links ul li:hover {
  padding-left: 10px;
}
#footer li:before {
    content: "\f0a4";
    font-family: fontawesome;
    color: #cc1616;
    margin-right: 10px;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #eb4444;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}


#footer .copyright {
  border-top: 1px solid #262626;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #e82d2d;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
.top {
    position: fixed;
    right: 10px;
    bottom: 30px;
    text-align: center;
    color: #fff;
    background: #cc1616;
    padding: 10px 10px;
    z-index: 9;
    border-radius: 50%;
    border: 2px solid #cc1616;
    cursor: pointer;
    opacity: 0;
    transition: ease-in 0.5s;
}


.top.scll-top {
    opacity: 1;
    transition: ease-in 0.5s;
    bottom: 50px;
}

.top .fa {
    display: block !important;
}
.banner-section { background-image: url('image/banner.jpg'); background-size: cover; padding: 7% 0 10% 0; position: relative; overflow: hidden;}
.banner-section .text { position: relative; z-index: 2;}
.banner-section .text h1 {color: #79c64e;font-size: 55px;line-height: 60px;font-weight: 700;margin: 0 0 15px 0;letter-spacing: .6px;}
.banner-section .text p {color: #ededed;letter-spacing: .5px;font-size: 18px;margin: 0 0 28px 0;}

.about-section { padding: 7% 0 5% 0;}
.about-section .left-pic { position: relative;}
.about-section .left-pic .about-text { width: 80%; background: #fff; position: absolute; right: 0; bottom: 30px; box-shadow: rgba(149, 157, 165, 0.35) 0px 8px 24px; padding: 30px 30px 30px 40px; border-radius: 3px;}
.about-section .left-pic .about-text p { margin: 0; font-weight: 500; position: relative; z-index: 2; transition: all .4s ease-in-out;}
.about-section .left-pic .about-text::after { content: ''; position: absolute; width: 10px; height: 100%; left: 0; top: 0; background: #7ec012; border-radius: 3px; transition: all .5s ease-in-out;}
.about-section .left-pic .about-text:hover::after { width: 100%;}
.about-section .left-pic .about-text:hover p { color: #fff;}
.about-section .left-pic img { width: 87%;}

.clients-logo {/*padding: 4% 0 0 0;*/text-align: center;}
.clients-logo .item { display: inline-block; margin: 20px 5px; padding: 5px; border: 1px solid #eee; border-radius: 3px;}
.clients-logo .item img {width: 100px;}

.card2 {border: 1px solid #f1f1f1;padding: 20px;border-radius: 5px;position: relative;margin: 15px 0;min-height: 250px !important;background: #fff;}
.card2::after { content: ''; position: absolute; width: 100%; height: 5px; left: 0; bottom: 0; background: #7ec012; border-radius: 0 0 3px 3px; transition: all .3s ease-in-out;}
.card2:hover::after { height: 100%; border-radius: 3px;}
.card2 h4 {color: #10002b;font-size: 21px;line-height: 26px;font-weight: 700;position: relative;z-index: 2;transition: all .3s ease-in-out;margin: 0 0 16px 0;}
.card2:hover h4 { color: #fff}
.card2 p {font-family: 'Poppins' !important;font-size: 15px;line-height: 24px;position: relative;z-index: 2;transition: all .3s ease-in-out}
.card2:hover p { color: #fff !important;}


.service-section {padding: 7% 0;background: #f3f4fa;}
.service-section .ser-card { background: #fff; margin: 20px 0; border-radius: 5px; box-shadow: rgba(9, 30, 66, 0.1) 0px 1px 1px, rgba(9, 30, 66, 0.06) 0px 0px 1px 1px;}
.service-section .ser-card img { border-radius: 5px 5px 0 0;}
.service-section .ser-card .text {padding: 25px 15px;min-height: 280px;position: relative}
.service-section .ser-card .text::after { content: ''; position: absolute; width: 100%; height: 5px; left: 0; bottom: 0; background: #7ec012; border-radius: 0 0 3px 3px; transition: all .3s ease-in-out;}
.service-section .ser-card .text:hover::after { height: 100%;}
.service-section .ser-card .text h4 {color: #14002a;font-size: 17px;line-height: 26px;font-weight: 700;position: relative;min-height: 75px;z-index: 2;transition: all .3s ease-in-out}
.service-section .ser-card .text:hover h4 { color: #fff}
.service-section .ser-card .text p {color: #4d5064;font-size: 16px;line-height: 24px;position: relative;z-index: 2;min-height: 196px;transition: all .3s ease-in-out;/* min-height: 140px; */}
.service-section .ser-card .text:hover p { color: #fff}
.service-section .ser-card .text a { display: inline-block; color: #f26d21; text-transform: uppercase; font-weight: 700; font-size: 13px; letter-spacing: .5px; position: relative; z-index: 2; transition: all .3s ease-in-out}
.service-section .ser-card .text a:hover { letter-spacing: 2px;}

.core-values {padding: 6% 0;background: #262626;}
.value-card p {
    color: #fff;
}
.core-values .accordion-body{padding: 0;}
.accordion-button::after{content:"\f061" !important;background-image: none;font-family: 'FontAwesome';transform: rotate(330deg);}
.core-values .accordion-button:not(.collapsed)::after{background-image:none !Important;content: none !important;}
.core-values img{border-radius:20px;width:90%;height:180px;transform: rotate(-15deg);position: relative;}
.core-values p{color:#fff;text-align:justify;font-size: 18px;font-weight: 300;}
.core-values .accordion-header button{color:#fff;background: transparent;font-size: 26px;box-shadow: none;padding: 45px 0;border: none;}
.core-values .accordion-item{
  background-color:transparent;
  border-bottom: 1px #bbb6b6 solid;
  border-left: 0;
  border-top: 0;
  border-right: 0;
}
.core-values .accordion-button:not(.collapsed){
   background-color:transparent;
   border:none !important;
   box-shadow: none;
   font-size: 32px;
   padding-bottom: 20px;
}
.core-values .heading h2{color:#fff !important;margin-bottom: 45px;}
.core-values .value-card {padding: 30px;background-color: #04293c;border-radius: 5px;margin: 20px 0;position: relative;min-height: 265px;}
.core-values .value-card .icon img {width: 52px;margin: 0 0 15px 0;}
.core-values .value-card::after { content: ''; position: absolute; width: 100%; height: 5px; left: 0; bottom: 0; background: #7ec012; border-radius: 0 0 3px 3px;}
.core-values .value-card h4 {color: #fff;font-size: 19px;line-height: 26px;font-weight: 700;position: relative;z-index: 2;margin: 0 0 7px 0;}
.core-values .value-card p {font-size: 16px;line-height: 24px;position: relative;z-index: 2;margin: 0 0 5px 0;}

.our-core-competence { background: #f3f4fa; padding: 7% 0;}
.core-values1 {padding: 6% 0;background: #f3f4fa;}
.value-card p {
    color: #fff;
}
.core-values1 .accordion-body{padding: 0;}
.accordion-button::after{content:"\f061" !important;background-image: none;font-family: 'FontAwesome';transform: rotate(330deg);}
.core-values1 .accordion-button:not(.collapsed)::after{background-image:none !Important;content: none !important;}
.core-values1 img{border-radius:20px;transform: rotate(-15deg);position: relative;}
.core-values1 p{color:#fff;text-align:justify;font-size: 18px;font-weight: 300;}
.core-values1 .accordion-header button{color:#fff;background: transparent;font-size: 26px;box-shadow: none;padding: 45px 0;border: none;}
.core-values1 .accordion-item{
  background-color:transparent;
  border-bottom: 1px #bbb6b6 solid;
  border-left: 0;
  border-top: 0;
  border-right: 0;
}
.core-values1 .accordion-button:not(.collapsed){
   background-color:transparent;
   border:none !important;
   box-shadow: none;
   font-size: 32px;
   padding-bottom: 20px;
}
.core-values1 .heading h2{color: #14002a !important;margin-bottom: 45px;}
.core-values1 .value-card {padding: 30px;background-color: #04293c;border-radius: 5px;margin: 20px 0;position: relative;min-height: 265px;}
.core-values1 .value-card .icon img {width: 52px;margin: 0 0 15px 0;}
.core-values1 .value-card::after { content: ''; position: absolute; width: 100%; height: 5px; left: 0; bottom: 0; background: #7ec012; border-radius: 0 0 3px 3px;}
.core-values1 .value-card h4 {color: #fff;font-size: 19px;line-height: 26px;font-weight: 700;position: relative;z-index: 2;margin: 0 0 7px 0;}
.core-values1 .value-card p {font-size: 16px;line-height: 24px;position: relative;z-index: 2;margin: 0 0 5px 0;}

.contact-section { padding: 6% 0;}
.contact-form .form-control { padding: 14px; margin: 0 0 15px 0; border: 0; font-size: 15px; background: #efefef;}

footer {/* padding: 6% 0 0 0; */background: #f7f7f7;border-top: solid #183a57 10px;z-index: -1;position: absolute;}
footer .footer-text { position: relative; z-index: 2;}
footer h4 {color: #79c64e;font-size: 22px;margin: 0 0 15px 0;}
footer p, footer p a {color: #183a57;font-size: 16px;padding-bottom: 8px;margin: 0;}
footer p a:hover { color: #f26d21;}
footer .footer-text p { display: flex; margin: 0 0 10px 0;}
footer p i { color: #7ec012; margin: 5px 8px 0 0;}
footer .footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .3); position: relative; z-index: 2; margin: 4% 0 0 0;}
footer .footer-bottom p { margin: 0;}

.inner-banner {padding: 10% 0;background-image: url('image/inner-banner.jpg');background-size: 
cover;}
.inner-banner h1 { color: #fff; text-align: center; font-size: 56px; font-weight: 700; letter-spacing: .5px;}
.inner-banner p, .inner-banner p a { color: #fff; text-align: center; margin: 0;}
.inner-banner p i { font-size: 15px; margin: 0 3px;}

.about-page ul, .about-page ul li, .services ul, .services ul li { list-style-type: none; margin: 0; padding: 0;}
.about-page ul li img, .services ul li img { width: 17px; margin: 0 6px 0 0;}
.about-page ul li, .services ul li { margin: 0 0 6px 0;}

.about-1 { background: #f3f4fa;}

.card1 {border: 1px solid #f1f1f1;padding: 20px;border-radius: 5px;position: relative;margin: 15px 0;min-height: 287px;background: #fff;}
.card1::after { content: ''; position: absolute; width: 100%; height: 5px; left: 0; bottom: 0; background: #7ec012; border-radius: 0 0 3px 3px; transition: all .3s ease-in-out;}
.card1:hover::after { height: 100%; border-radius: 3px;}
.card1 h4 {color: #10002b;font-size: 14px;line-height: 26px;font-weight: 700;position: relative;z-index: 2;transition: all .3s ease-in-out;margin: 0 0 16px 0;}
.card1:hover h4 { color: #fff}
.card1 li {/* font-family: Poppins; */font-size: 16px;line-height: 24px;position: relative;z-index: 2;transition: all .3s ease-in-out}
.card1:hover li { color: #fff}
.card1 p {/* font-family: Poppins; */font-size: 16px;line-height: 24px;position: relative;z-index: 2;transition: all .3s ease-in-out}
.card1:hover p { color: #fff}

.industries .row{justify-content:center;}
.industry-bx {margin: 16px 0;border-radius: 3px;transition: all 0.3s ease;background: #fff;box-shadow: 2px 2px 6px #ccc8c8;}
.industry-bx .img {width: 100%;height: 280px;overflow:hidden;transition:all .5s;border-radius: 3px 3px 0 0;}
.industry-bx img  {-webkit-transform: rotate(15deg) scale(1.4);transform: rotate(15deg) scale(1.4);transition:.5s;}
.industry-bx:hover img {-webkit-transform: rotate(0) scale(1);  transform: rotate(0) scale(1);}
.industry-bx .text {background: #fff;width: 90%;text-align: center;padding: 0 0px 20px;margin:0 auto;margin-top: -55px;min-height: 80px;position: relative;}
.industry-bx .text .icon { width: 100%; position:relative; height: 6px; font-size: 20px; background: #7ec012; transition: all 0.3s ease;}
.industry-bx:hover .text .icon { background: #f26d21}
.industry-bx .text h3 {font-weight: 400;font-size: 17px;color: #10002b;margin-bottom: 0;margin-top: 12px;}
.industry-bx .text h3 span{color: #b9b4b1;}

.btn-close { position: absolute; padding: 10px; border-radius: 50%; background-color: #7ec012; opacity: 1; color: #fff; right: -40px; top: 0;}
.modal .team-details { background: #f3f4fa; padding: 60px;}
.modal .team-details img { border: 3px solid #7ec012;}
.modal .team-details h5 { color: #10002b; text-align: center; text-transform: uppercase; font-size: 26px; font-weight: 700; margin: 25px 0 2px 0;}
.modal .team-details p { text-align: center; font-size: 17px; font-weight: 600; color: #525252;}
.modal .right-text {background-color: #04293C !important;padding: 60px;height: 650px;overflow-y: scroll;}
.modal .right-text p {color: #eeeeee;letter-spacing: .5px;text-align: start;background: #04293c !important;}
.modal-backdrop { display: none;}
.modal {background: rgba(0, 0, 0, .5);z-index: 9999;}

.sc-ts{box-shadow: 4px 3px 55px gray;border-radius: 10px;padding: 24px;/* background: #6cca59; */border: 1px solid #6fb355;}
.team-page .team-card { box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; border-radius: 5px; position: relative; margin: 30px 0 0 0; overflow: hidden;}
.team-page .team-card .pic { border-radius: 5px 5px 0 0;}
.team-page .team-card .text {/* position: absolute; *//* background: rgba(4, 41, 60, .8); */width: 100%;bottom: 0;padding: 10px 10px 20px 10px;border-radius: 0 0 5px 5px;transition: all .3s ease-in-out;}
.team-page .team-card .text h5 {color: #1d3956;font-size: 20px;margin: 0;}
.team-page .team-card .text p {color: #090909;font-size: 14px;}


.team-page .founder {margin-bottom: 21px; border: 3px solid #eee; border: 3px solid #eee;    padding: 6px;}

.service-page { background: #f3f4fa;}
.service-page .title { font-size: 22px; font-weight: 600; line-height: 1.6;}

.contact-information { background: #f3f4fa;}
.contact-information .contact-info { position: relative;}
.contact-information .contact-info .text{background: #fff;box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;border-radius: 5px;padding: 40px;text-align: center;position: relative;min-height: 249px !important;z-index: 2}
.contact-information .contact-info::after { content: ''; position: absolute; width: 100%; height: 100%; background: #7ec012; border-radius: 5px; right: -10px; bottom: -10px;}
.contact-information .contact-info i { font-size: 36px; color: #10002b; text-align: center; margin: 0 0 15px 0;}
.contact-information .contact-info h4 {text-align: center;color: #10002b;font-size: 26px;font-weight: bold;}
.contact-information .contact-info p, .contact-information .contact-info p a { text-align: center; margin: 0; color: #525252; font-size: 15px;}
.testimonial-wrapper .testimonial-content::after{content: 'Read More'; position: absolute; bottom: 10px; font-size: 15px; font-weight: 700;left:35px;}

@media (min-width: 320px) and (max-width: 991px) { 
  .slider-1 h1 {
    font-size: 24px;
    padding: 2% 0% 0% 10%;
}
  .circle-wrap{height: 390px;}
      .outer-circle:before {
        left: -38px;
        top: -28px;
        border: 15px solid #af1c1c00;
    }
  .outer-circle:after{left: 18px;top: 7px;border: 15px solid #af1c1c00;}
  .inner-content{padding:15px;}
  .pic img{width:40px;}
  .inner-content h3{font-size:14px;}
  .inner-content p{font-size: 12px;}
  p, li {font-size: 14px; line-height: 23px; margin: 0 0 10px 0;}
  .main-table li { font-size: 14px;line-height: 22px;}
  
  .heading p { padding: 3px 15px 1px 15px; margin: 0 0 10px 0; font-size: 12px;}
  .heading h2 { font-size: 27px; margin: 0 0 18px 0;}
  .heading h2 span.after::after { height: 35px; width: 30px; top: -10px;}
  .sub-heading { font-size: 24px;}
  .sub-heading1 { font-size: 21px; margin: 0 0 15px 0;}
  .custom-btn {font-size: 14px; padding:10px 15px;}
  .custom-btn img { margin: 0 0 0 5px; width: 14px;}
  
  header { text-align: start}
  header img {width: 120px;padding: 10px 0;}
  
  .banner-section {padding: 15% 0 20% 0;}
  .banner-section::after { width: 240px; height: 240px;}
  .banner-section::before { width: 320px; height: 320px;}
  .banner-section .text { position: relative; z-index: 2;}
  .banner-section .text h1 { font-size: 26px; margin: 0}
  .banner-section .text p { font-size: 14px; margin: 0 0 18px 0;}

  .about-section .left-pic { margin: 0 0 20px 0}
  .about-section .left-pic .about-text {bottom: 20px;padding: 15px 15px 15px 20px;}
  .about-section .left-pic .about-text p { font-weight:400; line-height: 1.5; font-size: 13px; letter-spacing: .4px}
  .about-section .left-pic .about-text::after { width: 6px;}
  .about-section .left-pic img { width: 90%;}
  
  .clients-logo .item { padding: 8px;}
  .clients-logo .item img { width: 120px}
  
  .service-section .ser-card { margin: 10px 0;}
  .service-section .ser-card .text {padding: 20px;min-height: 200px;}
  .service-section .ser-card .text h4 {font-size: 16px;line-height: 24px;}
  .service-section .ser-card .text a { font-size: 12px;}
    
  .core-values { padding: 8% 0;}
  .core-values .value-card {padding: 20px; min-height: 40px; margin: 0 0 15px 0}
  .core-values .value-card .icon img {width: 40px;margin: 0 0 10px 0;}
  .core-values .value-card p {font-size: 14px;line-height: 24px;position: relative;z-index: 2;margin: 0 0 5px 0;}
  
  .our-core-competence {padding: 8% 0 !important;}
  
  .contact-section { padding: 7% 0;}
  .contact-section img { margin: 0 0 20px 0}
  .contact-form .form-control::placeholder { font-size: 13px}
  
  footer { padding: 6% 0 0 0;}
  footer h4 { font-size: 18px; margin: 20px 0 10px 0;}
  footer p, footer p a { font-size: 13px;}
  
  .inner-banner { padding: 16% 0;}
  .inner-banner h1 { font-size: 27px;}
  .inner-banner p i { font-size: 13px;}
  
  .about-page ul li img, .services ul li img { width: 14px; margin: 0 5px 0 0;}
  
  .card1 { margin: 10px 0; min-height: 100px;}
  .card1 h4 { font-size: 18px; margin: 0 0 10px 0;}
  
  .btn-close { right: -20px; top: -10px;}
  .modal .team-details { padding: 30px;}
  .modal .team-details img { border: 3px solid #7ec012; width: 200px !important;}
  .modal .team-details h5 { font-size: 21px; margin: 15px 0 2px 0;}
  .modal .team-details p { font-size: 15px;}
  .modal .right-text { padding: 30px; height: 350px;}
  .modal .right-text p { font-size: 13px}
  .modal { padding: 20px}
  
  .service-page .title { font-size: 17px; font-weight: 500;}
  
  .contact-information .contact-info .text{padding: 30px; min-height: 45px; margin: 10px 0}
  .contact-information .contact-info::after {right: -5px; bottom: -5px;}
  .contact-information .contact-info i { font-size: 26px;}
  .contact-information .contact-info h4 { font-size: 18px;}
  .contact-information .contact-info p, .contact-information .contact-info p a { font-size: 14px;}

}

@media (min-width: 1024px) and (max-width: 1400px) { 
   p { margin: 0 0 12px 0;}
  
  .heading p { padding: 3px 15px 1px 15px; font-size: 12px;}
  .heading h2 { font-size: 35px; margin: 0 0 18px 0;}
  .sub-heading { font-size: 24px;}
  .sub-heading1 { font-size: 21px; margin: 0 0 15px 0;}
  .custom-btn {font-size: 15px; padding:12px 18px;}
  .custom-btn img { width: 15px;}
  
  header img {width: 130px;}
  
  .banner-section .text h1 { font-size: 52px; margin: 0 0 20px 0; line-height: 62px}
  .banner-section .text p { font-size: 18px; margin: 0 0 25px 0;}

  .about-section .left-pic { margin: 0 0 20px 0}
  .about-section .left-pic .about-text {bottom: 20px;padding: 15px 15px 15px 20px;}
  .about-section .left-pic .about-text p { font-weight:400; line-height: 1.5; font-size: 13px; letter-spacing: .4px}
  .about-section .left-pic .about-text::after { width: 6px;}
  .about-section .left-pic img { width: 90%;}
  
  .clients-logo .item { padding: 8px;}
  .clients-logo .item img { width: 120px}
  
  .service-section .ser-card { margin: 10px 0;}
  .service-section .ser-card .text {padding: 20px;min-height: 280px;}
  .service-section .ser-card .text h4 {font-size: 14px;line-height: 24px;}
  .service-section .ser-card .text p{font-size: 12px;min-height: 175px;}
  .service-section .ser-card .text a { font-size: 12px;}
    
  .core-values { padding: 8% 0;}
  .core-values .value-card {padding: 20px;min-height: 225px;margin: 0 0 15px 0}
  .core-values .value-card .icon img {width: 40px;margin: 0 0 10px 0;}
  .core-values .value-card p {font-size: 14px;line-height: 24px;position: relative;z-index: 2;margin: 0 0 5px 0;}
  
  .about-page ul li img, .services ul li img { width: 14px; margin: 0 5px 0 0;}
  
  .card1 {margin: 10px 0;/* min-height: 265px; */}
  .card1 h4 {font-size: 16px;margin: 0 0 10px 0;line-height: 1.4}
  .card1 li { font-size: 14px; line-height: 22px; margin: 0 0 10px 0}
  
  .btn-close { right: -20px; top: -10px;}
  .modal .team-details { padding: 30px;}
  .modal .team-details img { border: 3px solid #7ec012; width: 200px !important;}
  .modal .team-details h5 { font-size: 21px; margin: 15px 0 2px 0;}
  .modal .team-details p { font-size: 15px;}
  .modal .right-text { padding: 30px; height: 350px;}
  .modal .right-text p { font-size: 13px}
  .modal { padding: 20px}
  
  .service-page .title { font-size: 17px; font-weight: 500;}
  
  .contact-information .contact-info .text{padding: 30px; min-height: 45px; margin: 10px 0}
  .contact-information .contact-info::after {right: -5px; bottom: -5px;}
  .contact-information .contact-info i { font-size: 26px;}
  .contact-information .contact-info h4 { font-size: 18px;}
  .contact-information .contact-info p, .contact-information .contact-info p a { font-size: 14px;}

}

@media(min-width:768px) and (max-width:1820px){
  .circle-wrap{height: 418px;}
  .inner-content p{font-size:10px;}
}

.vision-mission p { text-align: justify}
.vision-mission img { border-radius: 40px 0 }


.about-inner {
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
}

.ctm-mb {
    margin-bottom: 10%;
}

.testimonial-wrapper {
    height: 280px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
    z-index: 0;
}
.diagonal-grid-wrapper .col-md-6.col-lg-3{transform: translateY(0px); transition: .5s; text-align: justify;}
.diagonal-grid-wrapper .col-md-6.col-lg-3:hover{transform: translateY(-20px);}
.value-card-1{background-color: #eee; padding: 15px;}
.testimonial-header {
    background: linear-gradient(to right, #0d4465, #6fb355);
    color: white;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 35px;
    position: absolute;
    top: -35px;
    left: -25px;
    border-bottom-left-radius: 0;
    width: 220px;
}

.testimonial-header h5,
.testimonial-header small {
    margin: 0;
    line-height: 1.2;
    font-size: 14px;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    padding-top: 5px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid #fff;
    position: absolute;
    top: -60px;
    right: 0;
    box-shadow: 0 0 0 2px #ddd;
}

.testimonial-content {
    margin-top: 70px;
    padding-left: 15px;
    border-left: 3px solid #ccc;
    font-size: 0.95rem;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    padding-top: 10px;
        text-align: justify;
}

.testimonial-wrapper:before {
    content: "";
    position: absolute;
    left: -25px;
    top: 6px;
    width: 23px;
    height: 100px;
    background-color: #6fb355;
    z-index: -1;
    border-radius: 35px 36px 0 60px;
}

.testimonial-wrapper:after {
    content: "";
    position: absolute;
    left: -25px;
    top: 21px;
    border-left: 25px solid #0d4465;
    border-bottom: 15px solid transparent;
    width: 0;
    /* z-index: -1; */
}
#carouselExampleControls .carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    background-color: #6cca59;
    border-radius: 50%;
}