﻿/**
* Template Name: Flattern
* Template URL: https://bootstrapmade.com/flattern-multipurpose-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Lato", sans-serif;
    --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #4d4643; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2b2320; /* Color for headings, subheadings and title throughout the website */
    --accent-color: teal; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #022776; /* The default color of the main navmenu links */
    --nav-hover-color: teal; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #008080; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #ebf3f7;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    /*    margin-right: 2px;*/
    /*margin-right: 5px;*/
}

    a:hover {
        color: color-mix(in srgb, /*var(--accent-color)*/, transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    .pulsating-play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-play-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .pulsating-play-btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .pulsating-play-btn:hover:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

    .pulsating-play-btn:hover:after {
        border-left: 15px solid var(--accent-color);
        transform: scale(20);
    }

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
   /* background: #df1529;*/
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Top Header
--------------------------------------------------------------*/
#top-header {
    background: #004085;
    color: #fff;
    font-size: 14px;
    height: 24px;
    padding: 0 1% !important;
}

    #top-header .container1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

#contact-info-mail {
}

#top-header .contact-info i {
    margin-right: 5px;
}

#top-header .social-links a {
    color: #fff;
    margin-left: 10px;
    display: inline-block;
}

    #top-header .social-links a:hover {
        color: #ddd;
    }

/* Mobile view */
@media only screen and (max-width: 600px) {
    #top-header {
        font-size: 9px;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    /*padding: 7px 0;*/
    color: var(--default-color);
    background-color: white;
}

    #header.header-transparent {
        background: #fff;
    }

    #header.header-scrolled {
        /* background: rgba(55, 142, 181, 0.9);*/
        /*  background: rgb(181,18,18);
        padding: 12px;*/
    }

    #header .logo h1 {
        font-size: 24px;
        margin: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        font-family: "Poppins", sans-serif;
        text-transform: uppercase;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            /* color: #fff;*/
            text-decoration: none;
        }

    #header .logo img {
        padding-left: 10px;
        margin: 0;
        max-height: 50px;
    }

@media (max-width: 768px) {
    #header.header-scrolled {
        /* padding: 15px 0;*/
    }
}

.logo-text {
    font-size: 24px;
    color: #333;
    margin-left: 10px; /* Space between the logo image and text */
    font-weight: 600;
    margin-top: 2%;
    color: #008080;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 18px; /* Reduce font size on small screens */
        margin-left: 8px; /* Adjust space between the image and text */
    }
}

/* Media query for screens smaller than 576px (extra small devices) */
@media (max-width: 576px) {
    .logo-text {
        font-size: 24px; /* Further reduce font size */
        margin-left: 5px; /* Adjust space between the image and text */
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*SEPERATE CSS FILE FOR NAV MENU*/
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* Global styles for the webpage */

/* Footer structure styling */
footer.footer-structure {
    width: 100%;
    background-color: #2a2b3e; /* Dark background for footer */
}

/* Animation for gradient background movement */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-top {
    background: linear-gradient(135deg, black 30%, #004a85 70%);
    background-size: 400% 400%;
    animation: gradientMove 10s ease-in-out infinite;
}

/* Bottom part of the footer (Wave shape effect) */
.footer-bottom {
    background-color: #2a2b3e; /* Dark color to match footer background */
    margin-bottom:-1%;
}
@media (min-width: 1440px) { /* Adjust for large screens */
    .footer-bottom {
        margin-bottom: 1.5%; /* Adjust margin for large screens */
    }
}

/*Start Tag*/
.footer {
    background-color: black;
    color: white;
    font-size: 14px;
    padding: 40px 0;
    margin-top: -2%;
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 20px; /* Adjust padding for phones */
    }
}

/*Extra CSS FOR THE LINE*/
.footer-line {
    background-color: #121212;
    color: white;
    padding: 40px 0;
    position: relative;
}

    .footer-line::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 15%;
        background: linear-gradient(135deg, #003157, #3a8edb);
        clip-path: polygon(0 0%, 100% 0%, 0% 100%);
    }


/* Company Name Styling */
.footer-top .footer-company {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    z-index: 2;
}

/* Media Queries for Responsiveness */

/* Very small screens (e.g., mobile portrait) */
@media only screen and (max-width: 320px) {
    .footer-top {
        padding: 20px 0;
    }

        .footer-top .footer-company {
            font-size: 14px;
            left: 10px;
        }

        .footer-top::before {
            height: 8%; /* Adjusted height for small screens */
        }
}

/* Small screens (e.g., mobile landscape) */
@media only screen and (max-width: 480px) {
    .footer-top {
        padding: 25px 0;
    }

        .footer-top .footer-company {
            font-size: 16px;
            left: 12px;
        }

        .footer-top::before {
            height: 9% !important; /* Adjusted height for small screens */
        }
}

/* Medium screens (e.g., tablets) */
@media only screen and (max-width: 768px) {
    .footer-top {
        padding: 30px 0;
    }

        .footer-top .footer-company {
            font-size: 18px;
            left: 15px;
        }

        .footer-top::before {
            height: 12%; /* Adjusted height for medium screens */
        }
}

/* Large screens (e.g., small laptops or large tablets) */
@media only screen and (max-width: 1024px) {
    .footer-top {
        padding: 35px 0;
    }

        .footer-top .footer-company {
            font-size: 20px;
            left: 18px;
        }

        .footer-top::before {
            height: 14%; /* Adjusted height for larger small screens */
        }
}

/* Extra large screens (e.g., desktop) */
@media only screen and (min-width: 1200px) {
    .footer-top {
        /* padding: 40px 0;*/
    }

        .footer-top .footer-company {
            font-size: 17px;
            left: 1%;
            margin-top: -0.5%;
        }

        .footer-top::before {
            height: 15%; /* Default height for larger screens */
            margin-top: 0.1%
        }
}

/* Very large screens (e.g., large desktops or TV screens) */
@media only screen and (min-width: 1600px) {
    .footer-top {
        padding: 5px 0;
    }

        .footer-top .footer-company {
            font-size: 17px;
            left: 0%;
            margin-top: -2.5%;
        }

        .footer-top::before {
            height: 15%; /* Default height for very large screens */
            margin-top: -1.6%;
        }
}


/* Address Section */
.footer-about {
    margin-left: 10px;
}

    .footer-about .logo img {
        max-height: 40px;
        margin-right: 10px;
    }

.footer-contact p,
.footer-contact a {
    /* color: white;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
    margin-top: -9%;*/
    color: white;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
    margin-top: -5%;
    font-size: 16px;
}
}

    .footer-contact a:hover {
        color: #00b0b9; /* Teal color */
    }

.footer-ul-quicklinks {
    padding-left: 0% !important;
}

.footer-ul-icon-gap {
    padding-right: 5%;
}

.footer-service-left-gap {
    margin-left: -5%;
}

.footer-services-right {
    margin-left: -15%;
    margin-right: -25%;
}

.footer-services-right-quick {
    margin-left: -5%;
}

.footer-font-size {
    font-size: 14.8px;
}

.footer-copy-bottom {
    margin-bottom: -2.6% !important;
}


/* Quick Links Section */
.footer .footer-links {
    margin-bottom: 30px;
}

    .footer .footer-links ul {
        list-style: none; /* Remove bullets */
        padding: 0;
        margin: 0;
    }

        .footer .footer-links ul i {
            padding-right: 3%;
            font-size: 12px;
            line-height: 0;
            color: #337ab7;
        }

        .footer .footer-links ul li {
            padding: 1% 0;
            display: flex;
            align-items: center;
        }

        .footer .footer-links ul a {
            color: white; /* Default white */
            display: inline-block;
            line-height: 2;
            text-decoration: none;
        }

            .footer .footer-links ul a:hover {
                color: #337ab7; /* Accent color */
            }

.requestquote {
    border: solid 2px;
    margin-right: 50%;
    margin-bottom: 4%;
    margin-left: 0;
    font-weight: 700;
    padding: 4px;
    padding-left: 17px;
    padding-right: 17px;
}

    .requestquote:hover {
        background-color: #337ab7;
        color: white;
    }

.footer-sublink {
    color: #337ab7;
}

.footer-quote {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left for consistent layout */
    margin-left: 0; /* Remove any unnecessary margins */
    margin-bottom: 10px; /* Optional: add space at the bottom of the section */
}
/*------/* Request a Quote Section */
.footer-quote {
    text-align: right; /* Default alignment for larger screens */
}

    .footer-quote .requestquote {
        color: white;
        padding: 10px 10px;
        border: 1px solid white;
        text-decoration: none;
        border-radius: 5px;
        background-color: transparent;
        transition: background-color 0.3s ease, color 0.3s ease;
        font-weight: 700;
        margin-left: 0; /* Remove margin that pushes the button */
        margin-top: 10px; /* Space between the text and button */
    }

        .footer-quote .requestquote:hover {
            background-color: #003a66; /* Darker Teal */
            color: white;
        }

/* Footer Line Separator */
.footer-line {
    border-top: 1px solid #00b0b9;
    margin: -4% 0 30px 0; /* Adjust spacing */
}

/* Our Services Section */
.footer-services h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-align: center; /* Centered heading */
}

.footer-services ul {
    list-style: none; /* No bullets */
    padding: 0;
}

    .footer-services ul li {
        font-size: 14px;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

        .footer-services ul li i {
            color: #00b0b9; /* Icon color */
            padding-right: 8px;
        }


/* Wave Shape Styling */
.wave-shape {
    background: linear-gradient(135deg, #004a85, #002d5b); /* Gradient for wave */
   /* height: 40px;*/
    position: relative;
    clip-path: polygon(0% 150%, 85% -90%, 115% 100%, 0% 100%); /* Wave shape */
    margin-top: 18px !important; /* Optional: Add space above the wave */
}
/* Very Small Screens (max-width: 320px) */
@media only screen and (max-width: 320px) {
    .wave-shape {
        /*margin-top: 10px !important;*/ /* Reduce space above the wave */
        /*clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%);*/ /* Adjust wave shape */
        display:none;
    }
}

/* Small Screens (max-width: 480px) */
@media only screen and (max-width: 480px) {
    .wave-shape {
        /*margin-top: 12px !important;*/ /* Reduce space above the wave */
        /*clip-path: polygon(0% 120%, 100% -20%, 100% 100%, 0% 100%);*/ /* Adjust wave shape */
        display:none;
    }
}

/* Medium Screens (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .wave-shape {
        /*margin-top: 14px !important;*/ /* Adjust space above wave */
        /*clip-path: polygon(0% 130%, 100% -10%, 100% 100%, 0% 100%);*/ /* Adjust wave shape */
        display:none;
    }
}


/* Social Links Styling */
.footer-social-links {
    display: flex;
    justify-content: center;
    margin-top: -2.5%; /* Adjust if you want the icons inside the wave shape */
    margin-right: -72%;
}

    /* Individual Social Icon Link Styling */
    .footer-social-links a {
        font-size: 14px;
        display: inline-block;
        background-color: transparent; /* Remove color-mix for better compatibility */
        color: white; /* Default icon color */
        line-height: 1;
        padding: 8px;
        margin-right: 10px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        /* Hover Effect for Social Media Icons */
        .footer-social-links a:hover {
            background-color: #00bcd4; /* Add an accent color on hover */
            color: white; /* Ensure icon color stays visible */
            text-decoration: none;
        }

        /* Icon Size Adjustments */
        .footer-social-links a i {
            font-size: 18px; /* Adjust icon size */
        }

/* Media Queries */
@media (min-width: 1440px) { /* Large screen adjustments */
    .footer-social-links {
        margin-top: -2%; /* Slightly adjust positioning */
        margin-right: -65%; /* Fine-tune alignment for large screens */
    }

        .footer-social-links a {
            font-size: 16px; /* Slightly increase icon size */
            width: 40px; /* Increase button size */
            height: 40px;
            padding: 10px;
        }

            .footer-social-links a i {
                font-size: 20px; /* Make icons slightly larger */
            }
}


/* Extra Small Screens (max-width: 575px) */
@media (max-width: 575px) {
    .footer-about,
    .footer-links,
    .footer-quote {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-services h4 {
        font-size: 18px;
    }

    .footer-services ul li {
        text-align: center;
        justify-content: center;
    }

    .footer-quote .requestquote {
        margin-left: 2%;
        display: inline-block;
    }
}

/* Small Screens (max-width: 767px) */
@media (max-width: 767px) {
    .footer-about,
    .footer-links,
    .footer-quote {
        text-align: left;
        font-size: 14px !important;
        margin-top: 16%;
    }
}

.footer-services h4 {
    font-size: 18px;
}

.footer-quote .requestquote {
    margin-left: 2%;
    display: inline-block;
}

}

/* Medium Screens (max-width: 991px) */
@media (max-width: 991px) {
    .footer-services h4 {
        font-size: 18px;
    }

    .footer-services ul li {
        justify-content: left;
    }

    .footer-quote .requestquote {
        text-align: center;
        margin-top: 10px;
        margin: 0px;
    }
}

.footer-color {
    color: white;
}
/* Large Screens (min-width: 992px) */
@media (min-width: 992px) {
    .footer-about,
    .footer-links,
    .footer-quote {
        text-align: left;
    }

    .footer-services ul {
        display: flex;
        justify-content: space-between;
    }

    .footer-quote {
        text-align: right;
    }

        .footer-quote .requestquote {
            margin: 0;
        }

    /* Extra TAG for col-lg-3 */
    .footer-col-lg-3 {
        flex: 0 0 auto;
        width: 22%;
        margin-right: 2.8%;
    }

    /* Extra TAG for col-lg-2 */
    .footer-col-lg-2 {
        flex: 0 0 auto;
        width: 15.666667%;
    }
}

/* Extra Large Screens (min-width: 1200px) */
@media (min-width: 1200px) {
    .footer-about,
    .footer-links,
    .footer-quote {
        text-align: left;
        margin-top: 2%;
        margin-right: 1.5%
    }

    .footer-services ul {
        display: flex;
        justify-content: space-between;
    }

    .footer-quote .requestquote {
        margin: 0;
    }
}

/* Extra Extra Large Screens (min-width: 1400px) */
@media (min-width: 1400px) {
    .footer {
        padding: 50px 0;
    }

    .footer-services h4 {
        font-size: 22px;
    }

    .footer-quote {
        text-align: right;
    }

        .footer-quote .requestquote {
            font-size: 16px;
            padding: 12px 20px;
        }
}

footer .footer-links ul li {
    padding: 1% 0;
    color: white; /* Default text color */
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    footer .footer-links ul li {
        color: white; /* Ensure text color is white on mobile */
    }
    /* Default Styling (for smaller screens, like mobile) */
    .contact-copyright {
        display: flex;
        flex-direction: column;
        align-items: center; /* Align content to center by default */
        font-size: 13px; /* Adjust font size for small screens */
        text-align: center; /* Center text for small screens */
    }

        .contact-copyright div {
            /*padding: 10px 0;*/ /* Add some padding for spacing */
            padding: 10px;
            height: 0PX;
            font-size: 10px !important;
        }

    /* Medium Screens (Tablets, 576px and above) */
    @media (min-width: 576px) {
        .contact-copyright {
            flex-direction: column; /* Keep content in a column for tablets */
        }

            .contact-copyright div {
                text-align: center; /* Keep text centered */
            }
    }

    /* Large Screens (Laptops and Desktops, 992px and above) */
    @media (min-width: 992px) {
        .contact-copyright {
            flex-direction: row; /* Switch to row layout for larger screens */
            justify-content: space-between; /* Spread items out */
            align-items: center; /* Align items vertically in the center */
        }

            .contact-copyright div {
                text-align: left; /* Align text to the left for large screens */
                font-size: 1rem; /* Slightly increase font size for larger screens */
            }
    }

    /* Extra Large Screens (Large Desktops, 1200px and above) */
    @media (min-width: 1200px) {
        .contact-copyright div {
            font-size: 1rem; /* Increase font size for extra large screens */
        }
    }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #preloader div {
        width: 4px;
        height: 40px;
        background-color: var(--accent-color);
        margin: 0 4px;
    }

        #preloader div:nth-child(1) {
            animation: animate-preloader 1s ease-in-out -0.45s infinite;
        }

        #preloader div:nth-child(2) {
            animation: animate-preloader 1s ease-in-out -0.3s infinite;
        }

        #preloader div:nth-child(3) {
            animation: animate-preloader 1s ease-in-out -0.15s infinite;
        }

        #preloader div:nth-child(4) {
            animation: animate-preloader 1s infinite;
        }

@keyframes animate-preloader {

    0%, 100% {
        transform: scaleY(0.3);
    }

    50% {
        transform: scaleY(1);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* Style for scroll-top button */
.scroll-top {
    position: fixed; /* Fixed position to stay at the same place on the screen */
    bottom: 20px; /* Place it at the bottom of the screen */
    right: 20px; /* Place it at the right of the screen */
    width: 50px; /* Set the size of the button */
    height: 50px; /* Set the size of the button */
    background-color: #008080;
    /*background-color: #007bff;*/ /* Blue background */
    color: white; /* White icon color */
    border-radius: 50%; /* Circular shape */
    display: none; /* Initially hide the button */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
    cursor: pointer;
    z-index: 1000; /* Ensure it stays on top */
    transition: opacity 0.3s; /* Smooth transition when button appears/disappears */
}

    /* Hover effect */
    .scroll-top:hover {
        background-color: #008080; /* Darker blue when hovered */
        /*background-color: #0056b3;*/ /* Darker blue when hovered */
    }

    /* Icon size adjustment */
    .scroll-top i {
        font-size: 24px; /* Adjust the icon size */
    }
/*    .scroll-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: 15px;
        z-index: 99999;
        background-color: var(--accent-color);
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.4s;
    }

        .scroll-top i {
            font-size: 24px;
            color: var(--contrast-color);
            line-height: 0;
        }

        .scroll-top:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            color: var(--contrast-color);
        }

        .scroll-top.active {
            visibility: visible;
            opacity: 1;
        }*/

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

    .page-title h1 {
        font-size: 24px;
        font-weight: 700;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb,var(--default-color), transparent 70%);
            }
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    /*        padding: 10px 0;*/
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    /*padding-bottom: 60px;*/
    position: relative;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 700;
        position: relative;
    }

        .section-title h2:before,
        .section-title h2:after {
            content: "";
            width: 50px;
            height: 2px;
            background: var(--accent-color);
            display: inline-block;
        }

        .section-title h2:before {
            margin: 0 15px 10px 0;
        }

        .section-title h2:after {
            margin: 0 0 10px 15px;
        }

    .section-title p {
        margin-bottom: 0;
    }
/*section-title h3 command line*/
.section-title {
    text-align: center;
    padding-bottom: 0%;
    position: relative;
}

    .section-title h3 {
        font-size: 26px;
        font-weight: 700;
        position: relative;
       /* margin-top:1.2%;*/
    }

        .section-title h3:before,
        /*            .section-title h3:after {
                content: "";
                width: 50px;
                height: 2px;
                background: var(--accent-color);
                display: inline-block;
            }*/
        .section-title h3:before {
            margin: 0 15px 10px 0;
        }

        .section-title h3:after {
            margin: 0 0 10px 15px;
        }

    .section-title p {
        margin-bottom: 0;
    }
/* Very Small Screens (Mobile) */
@media (max-width: 480px) {
    .section-title h3 {
        font-size: 18px; /* Reduce font size for small mobile screens */
        margin-top: 2%;
    }
}

/* Small Screens (Tablets & Large Mobiles) */
@media (min-width: 481px) and (max-width: 768px) {
    .section-title h3 {
        font-size: 20px; /* Slightly increase font size */
        margin-top: 1.8%;
    }
}

/* Medium Screens (Laptops & Small Desktops) */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-title h3 {
        font-size: 24px; /* Slightly smaller for better proportion */
        margin-top: 1.5%;
    }
}

/* Large Screens (Desktops & Standard Monitors) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .section-title h3 {
        
        margin-top: 1.2%;
    }
}

/* Extra Large Screens (Wide Monitors & Ultra-wide Screens) */
@media (min-width: 1441px) {
    .section-title h3 {
     
        margin-top: 2.2% !important;
    }
}
/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .company-profile-part {
        padding: 20px 0;
        margin-top: 5%;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .company-profile-part {
        padding: 30px 0;
        margin-top: 4%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .company-profile-part {
        padding: 40px 0;
        margin-top: 3%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .company-profile-part {
        padding: 45px 0;
        margin-top: 2.5%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .company-profile-part {
        padding: 50px 0 !important;
        margin-top: 2% !important;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

    .hero .carousel {
        width: 100%;
        min-height: 70vh;
        padding: 0;
        margin: 0;
        position: relative;
    }

@media (max-height: 500px), (max-width: 580px) {
    .hero .carousel {
        min-height: 100vh;
    }
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

    .hero .carousel-item:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 80%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

.hero .container {
    position: relative;
    text-align: center;
    background: color-mix(in srgb, var(--background-color), transparent 40%);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-top: 4px solid var(--accent-color);
    z-index: 3;
}

@media (max-width: 1200px) {
    .hero .container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 4px;
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

    .hero .btn-get-started:hover {
        background: var(--accent-color);
    }

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    transition: 0.3s;
    opacity: 0.5;
}

    .hero .carousel-control-prev:focus,
    .hero .carousel-control-next:focus {
        opacity: 0.5;
    }

    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
        opacity: 0.9;
    }

        .hero .carousel-control-prev:hover .carousel-control-next-icon,
        .hero .carousel-control-prev:hover .carousel-control-prev-icon,
        .hero .carousel-control-next:hover .carousel-control-next-icon,
        .hero .carousel-control-next:hover .carousel-control-prev-icon {
            background: var(--accent-color);
            color: var(--default-color);
        }

.hero .carousel-indicators li {
    cursor: pointer;
    background: var(--default-color);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

    .hero .carousel-indicators li.active {
        opacity: 1;
        background: var(--accent-color);
    }
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 50px 0;
    position: relative;
    clip-path: inset(0);
}

    .call-to-action .container {
        position: relative;
        z-index: 3;
    }

    .call-to-action h3 {
        color: var(--default-color);
        font-size: 28px;
        font-weight: 700;
    }

    .call-to-action p {
        color: var(--default-color);
    }

    .call-to-action .cta-btn {
        background-color: var(--surface-color);
        color: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 4px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid var(--accent-color);
    }

        .call-to-action .cta-btn:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 30px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    border-bottom: 5px solid var(--surface-color);
    /*        height: 100%;*/
    color: black;
    /*        text-align:center;*/
}

    .services .service-item .icon {
        color: var(--contrast-color);
        background: var(--accent-color);
        margin: 0;
        width: 64px;
        height: 64px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 28px;
        transition: ease-in-out 0.3s;
        margin-left: 126px;
    }

    .services .service-item h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 19px;
        transition: ease-in-out 0.3s;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
        color: black;
    }

@media (min-width: 1365px) {
    .services .service-item:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
    }

        .services .service-item:hover h3 {
            color: var(--accent-color);
        }
}
/*Services*/
/* Mobile Responsive Layout */
@media screen and (max-width: 768px) {
    .service-new-row {
        flex-direction: column-reverse; /* Change the order, text on top, image on bottom */
        text-align: left;
    }

    /*.service-new-image-left {*/
    /*max-width: 80%;*/ /* Adjust image size on mobile if necessary */
    /*margin-top: 20px;
    }
    .service-new-image-right {*/
    /*max-width: 80%;*/ /* Adjust image size on mobile if necessary */
    /*margin-top: 20px;
    }*/

    .col-lg-7, .col-lg-5 {
        width: 100%; /* Full width for both columns */
    }
}
/* Starting Tag */

.door-lock-section {
    margin: 30px auto; /* Center the section with some space around it */
    padding: 20px; /* Add padding for better readability */
    background-color: #f9f9f9; /* Light background for distinction */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 800px; /* Restrict the width for better layout */
    text-align: justify; /* Align text for better readability */
}

}

@media (max-width: 1024px) {
    .col-lg-5 {
        order: 2;
        width: 100%;
        padding: 0;
        margin-top: 15px;
    }
}

@media (max-width: 834px) {
    .col-lg-5 {
        order: 1;
        width: 100%;
        padding: 0;
        margin-top: 15px;
    }
}

@media (max-width: 992px) {
    .serviceimage {
        width: 100%;
        height: 93% !important;
        margin-left: 1%;
        margin-right: 1%;
    }
}

.section img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ending Tag */
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .portfolio .portfolio-filters li {
        cursor: pointer;
        display: inline-block;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        margin: 0 10px;
        line-height: 1;
        text-transform: uppercase;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio .portfolio-filters li:hover,
        .portfolio .portfolio-filters li.filter-active {
            color: var(--accent-color);
        }

        .portfolio .portfolio-filters li:first-child {
            margin-left: 0;
        }

        .portfolio .portfolio-filters li:last-child {
            margin-right: 0;
        }

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-item {
    position: relative;
}

    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: color-mix(in srgb, var(--background-color), transparent 10%);
        padding: 15px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            font-weight: 600;
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 14px;
            margin-bottom: 0;
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 50px;
            font-size: 24px;
            top: calc(50% - 14px);
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            transition: 0.3s;
            line-height: 0;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover,
            .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: var(--accent-color);
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 14px;
            font-size: 28px;
        }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 20px;
    }

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

    .clients .client-logo img {
        padding: 15px;
        max-width: 80%;
        transition: 0.3s;
    }

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 30px;
        max-width: 50%;
    }
}

.clients .client-logo:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 0 0 10px 30px;
        position: relative;
    }

    .about .content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: var(--accent-color);
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
    }

    .team .team-member .social {
        position: absolute;
        left: 0;
        bottom: 30px;
        right: 0;
        opacity: 0;
        transition: ease-in-out 0.3s;
        text-align: center;
    }

        .team .team-member .social a {
            background: color-mix(in srgb, var(--contrast-color), transparent 25%);
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0 3px;
            border-radius: 4px;
            width: 36px;
            height: 36px;
            transition: ease-in-out 0.3s;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

            .team .team-member .social a:hover {
                color: var(--contrast-color);
                background: var(--accent-color);
            }

        .team .team-member .social i {
            font-size: 18px;
            line-height: 0;
        }

    .team .team-member .member-info {
        padding: 25px 15px;
    }

        .team .team-member .member-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .team .team-member .member-info span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .team .team-member:hover .social {
        opacity: 1;
        bottom: 15px;
    }

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

    .skills .progress .skill {
        color: var(--heading-color);
        padding: 0;
        margin: 0 0 6px 0;
        text-transform: uppercase;
        display: block;
        font-weight: 600;
        font-family: var(--heading-font);
    }

        .skills .progress .skill .val {
            float: right;
            font-style: normal;
        }

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-item {
    width: 100%;
    margin-bottom: 15px;
}

    .features .nav-item:last-child {
        margin-bottom: 0;
    }

.features .nav-link {
    color: var(--heading-color);
    border: 0;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    cursor: pointer;
}

    .features .nav-link i {
        background-color: var(--surface-color);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        width: 48px;
        height: 48px;
        font-size: 22px;
        flex-shrink: 0;
        border-radius: 50px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .features .nav-link h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 10px 0;
        transition: 0.3s;
    }

    .features .nav-link p {
        font-size: 15px;
        margin: 0;
    }

    .features .nav-link:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
    }

    .features .nav-link.active {
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
        color: var(--default-color);
    }

.features .tab-pane img {
    border-radius: 15px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

    .service-details .services-list a {
        display: block;
        line-height: 1;
        padding: 8px 0 8px 15px;
        border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
        margin: 20px 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: 0.3s;
    }

        .service-details .services-list a.active {
            color: var(--heading-color);
            font-weight: 700;
            border-color: var(--accent-color);
        }

        .service-details .services-list a:hover {
            border-color: var(--accent-color);
        }

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .service-details ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .service-details ul i {
        font-size: 20px;
        margin-right: 8px;
        color: var(--accent-color);
    }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-margin-top {
    margin-top: 2%; /* Default margin-top */
}

/* Heading Style */
.testimonial-heading-top {
    margin-bottom: -1%; /* Default margin-bottom */
    font-weight: 700;
    font-size: 28px; /* Default font size */
    text-align: center;
    color: #004085;
}

/* Media Query for Tablets and Below (max-width: 768px) */
@media (max-width: 768px) {
    .testimonial-margin-top {
        margin-top: 3%; /* Adjust margin-top for smaller screens */
    }

    .testimonial-heading-top {
        font-size: 24px; /* Smaller font size */
    }
}

/* Media Query for Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .testimonial-margin-top {
        margin-top: 4%; /* Further adjust margin-top for mobile screens */
    }

    .testimonial-heading-top {
        font-size: 20px; /* Even smaller font size for mobile */
    }
}

/* Media Query for Medium Screens and Up (min-width: 993px) */
@media (min-width: 993px) {
    .testimonial-margin-top {
        margin-top: 2%; /* Keep the margin-top at 2% for medium screens */
    }

    .testimonial-heading-top {
        font-size: 30px; /* Slightly larger font size for medium screens */
    }
}

/* Media Query for Screens ≤ 1199px (max-width: 1199px) */
@media (max-width: 1199px) {
    .testimonial-margin-top {
        margin-top: 2%; /* Maintain the same margin-top for this range */
    }

    .testimonial-heading-top {
        font-size: 21px; /* Slightly smaller font size for screens ≤ 1199px */
        margin-top: 2%;
    }
}

/* Media Query for Large Screens (min-width: 1200px) */
@media (min-width: 1200px) {
    .testimonial-margin-top {
        margin-top: 1%; /* Keep the margin-top the same for large screens */
    }

    .testimonial-heading-top {
        font-size: 24px; /* Larger font size for large screens */
        margin-top: 1%;
        margin-bottom:0%
    }
}

/* Media Query for Extra-Large Screens (min-width: 1400px) */
@media (min-width: 1400px) {
    .testimonial-margin-top {
        margin-top: 2%; /* Keep the same margin-top for extra-large screens */
    }

    .testimonial-heading-top {
        font-size: 34px; /* Larger font size for extra-large screens */
    }
}


.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    height: 100%;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid var(--background-color);
        float: left;
        margin: 0 10px 0 0;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
    }

    .testimonials .testimonial-item .stars {
        margin: 10px 0;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px 0 0 0;
        padding: 0;
    }

.testimonial-title {
    font-size: 36px; /* Default font size */
    text-align: center; /* Centered text */
    color: #333; /* Text color */
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    /* margin-bottom: 20px; */
    color: #004085;
    text-align: center;
}

.description {
    padding-left: 5%;
    text-align: left;
    margin-top: 5px;
    font-size: 14px;
    color: black;

}
/* Container for the icon box */
.icon-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black !important;
}

/* Center the icon */
.icon {
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    /* Adjust the icon box for mobile */
    .icon-box-container {
        display: block; /* Removes flex to stack content */
        text-align: center; /* Centers everything */
        width: 100%; /* Full width */
        margin: auto; /* Keeps it centered */
    }

    /* Ensure the icon is centered */
    .icon {
        display: block; /* Removes flex to avoid misalignment */
        text-align: center; /* Centers the icon */
        margin: auto; /* Aligns properly */
    }

        /* Adjust icon size for mobile */
        .icon img {
            width: 50px; /* Adjust size as needed */
            height: auto;
            margin-bottom: 10px;
        }

    /* Style the text below the icon */
    .icon-text {
        font-size: 14px; /* Reduce font size for mobile */
        text-align: center; /* Center the text */
        color: black; /* Ensure visibility */
        margin-top: 5px;
    }
}



/* Title (name) styling */
.title {
    text-align: center;
    margin-top: 10px;
}
/* Media query for devices with a max width of 768px (tablets and smaller) */
@media (max-width: 768px) {
    .testimonial-title {
        font-size: 28px; /* Reduce font size for tablets */
        margin-top: 20px; /* Adjust top margin */
        margin-bottom: 20px; /* Adjust bottom margin */
    }
}

/* Media query for devices with a max width of 480px (phones) */
@media (max-width: 480px) {
    .testimonial-title {
        font-size: 18px !important; /* Further reduce font size for small screens */
        margin-top: 15px; /* Reduce top margin further */
        margin-bottom: 15px; /* Reduce bottom margin further */
    }
}

#services {
    padding: 60px 0;
    background-color: #f8f9fa;
    padding-bottom: 0px;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}

Section Title
.section-title h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.section-title a {
    text-decoration: none;
}

Row Layout for the services
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

Service Icon Box
.icon-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #333;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

Icons
.icon-box .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #007bff;
    /*    Blue color for icons*/
}

.testimonials-img {
    width: 50%;
    height: 50%;
}
/* Responsive design for screens 768px and smaller (tablets and smaller devices) */
@media (max-width: 768px) {
    .about-title {
        font-size: 24px; /* Smaller font size on tablets and below */
        text-align: center; /* Ensure it's centered on smaller devices */
    }
}

/* Responsive design for screens 480px and smaller (mobile devices) */
@media (max-width: 480px) {
    .about-title {
        font-size: 20px; /* Even smaller font size on mobile devices */
        text-align: center; /* Ensure it's centered on mobile */
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .pricing .pricing-item h3 {
        padding: 15px;
        margin-top: 15px;
        font-size: 18px;
        font-weight: 600;
    }

    .pricing .pricing-item h4 {
        color: var(--accent-color);
        font-size: 42px;
        font-family: var(--default-font);
        font-weight: 500;
    }

        .pricing .pricing-item h4 sup {
            font-size: 20px;
            top: -15px;
            left: -3px;
        }

        .pricing .pricing-item h4 span {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 16px;
            font-weight: 300;
        }

    .pricing .pricing-item ul {
        padding: 20px 0;
        list-style: none;
        text-align: center;
        line-height: 20px;
        font-size: 14px;
    }

        .pricing .pricing-item ul li {
            padding-bottom: 16px;
        }

        .pricing .pricing-item ul .na {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            text-decoration: line-through;
        }

    .pricing .pricing-item .btn-wrap {
        padding: 15px;
        text-align: center;
    }

    .pricing .pricing-item .btn-buy {
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
        display: inline-block;
        padding: 10px 40px 12px 40px;
        border-radius: 50px;
        font-size: 14px;
        font-family: var(--heading-font);
        font-weight: 600;
        transition: 0.3s;
    }

        .pricing .pricing-item .btn-buy:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

.pricing .recommended .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
}

    .pricing .recommended .btn-buy:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
        border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.pricing .recommended-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 13px;
    padding: 3px 25px 6px 25px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

    .portfolio-details .swiper-button-prev:after,
    .portfolio-details .swiper-button-next:after {
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.15);
        font-size: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .portfolio-details .swiper-button-prev:hover:after,
    .portfolio-details .swiper-button-next:hover:after {
        background-color: rgba(0, 0, 0, 0.3);
    }

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .portfolio-details .portfolio-info h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
    }

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .portfolio-details .portfolio-info ul li {
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
    }

    .portfolio-details .portfolio-info ul strong {
        text-transform: uppercase;
        font-weight: 400;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 14px;
    }

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

    .portfolio-details .portfolio-info .btn-visit:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

    .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid var(--background-color);
        float: left;
        margin: 0 10px 0 0;
    }

    .portfolio-details .portfolio-description .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 15px 0 5px 0;
        padding-top: 20px;
    }

    .portfolio-details .portfolio-description .testimonial-item h4 {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .portfolio-details .portfolio-description .testimonial-item p {
        font-style: italic;
        margin: 0 0 15px 0 0 0;
        padding: 0;
    }

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.blog-posts .post-img {
    max-height: 440px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog-posts .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

    .blog-posts .title a {
        color: var(--heading-color);
        transition: 0.3s;
    }

        .blog-posts .title a:hover {
            color: var(--accent-color);
        }

.blog-posts .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

    .blog-posts .meta-top ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        align-items: center;
        padding: 0;
        margin: 0;
    }

        .blog-posts .meta-top ul li + li {
            padding-left: 20px;
        }

    .blog-posts .meta-top i {
        font-size: 16px;
        margin-right: 8px;
        line-height: 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .blog-posts .meta-top a {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 14px;
        display: inline-block;
        line-height: 1;
    }

.blog-posts .content {
    margin-top: 20px;
}

    .blog-posts .content .read-more {
        text-align: right;
    }

        .blog-posts .content .read-more a {
            background: var(--accent-color);
            color: var(--contrast-color);
            display: inline-block;
            padding: 8px 30px;
            transition: 0.3s;
            font-size: 14px;
            border-radius: 4px;
        }

            .blog-posts .content .read-more a:hover {
                background: color-mix(in srgb, var(--accent-color), transparent 20%);
            }

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

    .blog-pagination ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .blog-pagination li {
        margin: 0 5px;
        transition: 0.3s;
    }

        .blog-pagination li a {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 7px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .blog-pagination li a.active,
            .blog-pagination li a:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
            }

                .blog-pagination li a.active a,
                .blog-pagination li a:hover a {
                    color: var(--contrast-color);
                }

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

    .blog-details .article {
        background-color: var(--surface-color);
        padding: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .blog-details .post-img {
        margin: -30px -30px 20px -30px;
        overflow: hidden;
    }

    .blog-details .title {
        color: var(--heading-color);
        font-size: 28px;
        font-weight: 700;
        padding: 0;
        margin: 30px 0;
    }

    .blog-details .content {
        margin-top: 20px;
    }

        .blog-details .content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }

        .blog-details .content blockquote {
            overflow: hidden;
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }

            .blog-details .content blockquote p {
                color: var(--default-color);
                line-height: 1.6;
                margin-bottom: 0;
                font-style: italic;
                font-weight: 500;
                font-size: 22px;
            }

            .blog-details .content blockquote:after {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background-color: var(--accent-color);
                margin-top: 20px;
                margin-bottom: 20px;
            }

    .blog-details .meta-top {
        margin-top: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .blog-details .meta-top ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
            padding: 0;
            margin: 0;
        }

            .blog-details .meta-top ul li + li {
                padding-left: 20px;
            }

        .blog-details .meta-top i {
            font-size: 16px;
            margin-right: 8px;
            line-height: 0;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

        .blog-details .meta-top a {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 14px;
            display: inline-block;
            line-height: 1;
        }

    .blog-details .meta-bottom {
        padding-top: 10px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .blog-details .meta-bottom i {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            display: inline;
        }

        .blog-details .meta-bottom a {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            transition: 0.3s;
        }

            .blog-details .meta-bottom a:hover {
                color: var(--accent-color);
            }

        .blog-details .meta-bottom .cats {
            list-style: none;
            display: inline;
            padding: 0 20px 0 0;
            font-size: 14px;
        }

            .blog-details .meta-bottom .cats li {
                display: inline-block;
            }

        .blog-details .meta-bottom .tags {
            list-style: none;
            display: inline;
            padding: 0;
            font-size: 14px;
        }

            .blog-details .meta-bottom .tags li {
                display: inline-block;
            }

                .blog-details .meta-bottom .tags li + li::before {
                    padding-right: 6px;
                    color: var(--default-color);
                    content: ",";
                }

        .blog-details .meta-bottom .share {
            font-size: 16px;
        }

            .blog-details .meta-bottom .share i {
                padding-left: 5px;
            }

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
    padding: 10px 0 40px 0;
}

    .blog-author .author-container {
        background-color: var(--surface-color);
        padding: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .blog-author img {
        max-width: 120px;
        margin-right: 20px;
    }

    .blog-author h4 {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 0px;
        padding: 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .blog-author .social-links {
        margin: 0 10px 10px 0;
    }

        .blog-author .social-links a {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            margin-right: 5px;
        }

    .blog-author p {
        font-style: italic;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

    .blog-comments .comments-count {
        font-weight: bold;
    }

    .blog-comments .comment {
        margin-top: 30px;
        position: relative;
    }

        .blog-comments .comment .comment-img {
            margin-right: 14px;
        }

            .blog-comments .comment .comment-img img {
                width: 60px;
            }

        .blog-comments .comment h5 {
            font-size: 16px;
            margin-bottom: 2px;
        }

            .blog-comments .comment h5 a {
                font-weight: bold;
                color: var(--default-color);
                transition: 0.3s;
            }

                .blog-comments .comment h5 a:hover {
                    color: var(--accent-color);
                }

            .blog-comments .comment h5 .reply {
                padding-left: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

                .blog-comments .comment h5 .reply i {
                    font-size: 20px;
                }

        .blog-comments .comment time {
            display: block;
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 5px;
        }

        .blog-comments .comment.comment-reply {
            padding-left: 40px;
        }

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

    .comment-form form {
        background-color: var(--surface-color);
        margin-top: 30px;
        padding: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

        .comment-form form h4 {
            font-weight: bold;
            font-size: 22px;
        }

        .comment-form form p {
            font-size: 14px;
        }

        .comment-form form input {
            background-color: var(--surface-color);
            color: var(--default-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
            font-size: 14px;
            border-radius: 4px;
            padding: 10px 10px;
        }

            .comment-form form input:focus {
                color: var(--default-color);
                background-color: var(--surface-color);
                box-shadow: none;
                border-color: var(--accent-color);
            }

            .comment-form form input::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

        .comment-form form textarea {
            background-color: var(--surface-color);
            color: var(--default-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
            height: 120px;
        }

            .comment-form form textarea:focus {
                color: var(--default-color);
                box-shadow: none;
                border-color: var(--accent-color);
                background-color: var(--surface-color);
            }

            .comment-form form textarea::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

        .comment-form form .form-group {
            margin-bottom: 25px;
        }

        .comment-form form .btn-primary {
            border-radius: 4px;
            padding: 10px 20px;
            border: 0;
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

            .comment-form form .btn-primary:hover {
                color: var(--contrast-color);
                background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .contact .info h3 {
        font-weight: 600;
        font-size: 24px;
    }

    .contact .info p {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 30px;
        font-size: 15px;
    }

.contact .info-item + .info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
    width: 100%;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form textarea {
        color: var(--default-color);
        background-color: var(--surface-color);
        border-radius: 0px;
        box-shadow: none;
        font-size: 14px;
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .contact .php-email-form input[type=text]:focus,
        .contact .php-email-form input[type=email]:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--accent-color);
        }

        .contact .php-email-form input[type=text]::placeholder,
        .contact .php-email-form input[type=email]::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email] {
        height: 48px;
        padding: 10px 15px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
        height: 290px;
    }

    .contact .php-email-form button[type=submit] {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: 0;
        padding: 13px 50px;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
        }

.contact-container {
    /* Custom styles for the contact section */

    margin: 0 auto; /* Center the container */
    padding: 20px; /* Add padding */
    margin-left: 2px;
}

.contact-fade {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

/* Defining the fadeIn keyframe animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.requestquote {
    border: solid 2px;
    margin-right: 50%;
    margin-bottom: 4%;
    font-weight: 700;
    padding: 4px;
    padding-left: 17px;
    padding-right: 17px;
    /* Add other custom styles if needed */
}

    .requestquote:hover {
        background-color: #008080;
        color: white; /* Change text color to white when hovered */
    }
/* Contact Card Section */
.contact-cardsection {
    padding: 2rem 0;
    background-color: #f9f9f9; /* Optional background for the section */
}

    .contact-cardsection h3 {
        color: black;
        font-weight: bold;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .contact-cardsection .row {
        justify-content: center;
        gap: 1rem; /* Spacing between cards */
    }

    .contact-cardsection .card {
        border-radius: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for the cards */
        text-align: center;
        padding: 1rem; /* Inner padding for the card */
        background-color: #ffffff; /* Card background */
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Hover effect */
    }

        .contact-cardsection .card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
        }

    .contact-cardsection .icon {
        margin-bottom: 0.5rem;
    }

        .contact-cardsection .icon img {
            width: 40px;
            height: 40px;
        }

    .contact-cardsection h5 {
        color: black;
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }

    .contact-cardsection p {
        color: black;
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .contact-cardsection a {
        color: blue;
        text-decoration: none;
    }

        .contact-cardsection a:hover {
            text-decoration: underline;
        }

/* General Styles for Contact Section */
.contact-us-section-part {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

    .contact-us-section-part .contact-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #022776;
    }

    .contact-us-section-part .contact-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 1rem;
        color: #333;
    }

    .contact-us-section-part img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

/* Media Queries */

/* Extra Small Devices (max-width: 575px) */
@media (max-width: 575px) {
    .contact-us-section-part {
        flex-direction: column;
        padding-top: 0%;
    }

        .contact-us-section-part .col-lg-6 {
            width: 100%;
            padding-top: 0%;
        }

        .contact-us-section-part .contact-title {
            font-size: 1.5rem;
        }

        .contact-us-section-part .contact-description {
            font-size: 14px;
            color: black;
                }
}

/* Small Devices (min-width: 576px and max-width: 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .contact-us-section-part {
        flex-direction: column;
    }

        .contact-us-section-part .col-lg-6 {
            width: 100%;
        }

        .contact-us-section-part .contact-title {
            font-size: 1.6rem;
            color: black;
        }

        .contact-us-section-part .contact-description {
            font-size: 0.95rem;
            color: black;
        }
}

/* Medium Devices (min-width: 768px and max-width: 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .contact-us-section-part .contact-title {
        font-size: 1.75rem;
        color: black;
    }

    .contact-us-section-part .contact-description {
        font-size: 1rem;
        color: black;
    }
}

/* Large Devices (min-width: 992px and max-width: 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .contact-us-section-part .contact-title {
        font-size: 1.85rem;
        color: black;
    }

    .contact-us-section-part .contact-description {
        font-size: 1.05rem;
        color: black;
    }
}

/* Extra Large Devices (min-width: 1200px) */
@media (min-width: 1200px) {
    .contact-us-section-part .contact-title {
        font-size: 24px;
        color: #004085;
        /*        margin-top: -30%;*/
    }

    .contact-us-section-part .contact-description {
        font-size: 14px;
        color:black;
    }
}
/*contact-us-img*/
.contact-us {
    padding-top: 50px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}


/* Default padding for small devices (mobile/tablet) */
.contact-us {
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

/* For medium devices (like tablets) */
@media (min-width: 576px) {
    .contact-us {
        padding-top: 30px;
        padding-right: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
    }
}

/* For large devices (like desktops) */
@media (min-width: 992px) {
    .contact-us {
        /*        padding-top: 100px;*/
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 50%;
        height: 50%;
    }
}

@media (min-width: 1200px) {
    .contact-us {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        /*        width: 48%;*/
        height: 48%;
        margin-top: 1.3%;
    }
}


@media (min-width: 1400px) {
    .contact-us {
        padding-top: 1%;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        /*        width: 37%;*/
        height: 52%;
    }
}

.contact-us img {
    width: 100%; /* Makes the image responsive, so it scales with the container */
    height: 275px; /* Maintains the image's aspect ratio */
}

/*contact-us-img-end*/
/*End Tag*/
form {
    padding-left: 2%;
    /* You can also set other properties like width, margin, etc. */
}

/* For small screens (Mobile devices) */
@media (max-width: 600px) {
    form {
        padding-left: 5%; /* Adjust for smaller screens */
        padding-right: 5%; /* Optionally add padding-right */
    }
}

/* For medium screens (Tablets and small laptops) */
@media (min-width: 601px) and (max-width: 1024px) {
    form {
        padding-left: 6%; /* Adjust for tablets or smaller laptops */
    }
}

/* For large screens (Large tablets and desktops) */
@media (min-width: 1025px) and (max-width: 1440px) {
    form {
        padding-left: 2%; /* This keeps the original padding for medium to large desktops */
    }
}

/* For extra large screens (Large desktops or full screen) */
@media (min-width: 1441px) {
    form {
        padding-left: 7%; /* You can adjust as needed for very large screens */
    }
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

    .widget-item:last-child {
        margin-bottom: 0;
    }

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    padding: 3px 10px;
    position: relative;
    transition: 0.3s;
}

    .search-widget form input[type=text] {
        border: 0;
        padding: 4px;
        border-radius: 4px;
        width: calc(100% - 40px);
        background-color: var(--background-color);
        color: var(--default-color);
    }

        .search-widget form input[type=text]:focus {
            outline: none;
        }

    .search-widget form button {
        background: var(--accent-color);
        color: var(--contrast-color);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        font-size: 16px;
        padding: 0 15px;
        margin: -1px;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        line-height: 0;
    }

        .search-widget form button i {
            line-height: 0;
        }

        .search-widget form button:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

    .search-widget form:is(:focus-within) {
        border-color: var(--accent-color);
    }

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .categories-widget ul li {
        padding-bottom: 10px;
    }

        .categories-widget ul li:last-child {
            padding-bottom: 0;
        }

    .categories-widget ul a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: 0.3s;
    }

        .categories-widget ul a:hover {
            color: var(--accent-color);
        }

        .categories-widget ul a span {
            padding-left: 5px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 14px;
        }

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

    .recent-posts-widget .post-item:last-child {
        margin-bottom: 0;
    }

    .recent-posts-widget .post-item img {
        width: 80px;
        margin-right: 15px;
    }

    .recent-posts-widget .post-item h4 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 5px;
    }

        .recent-posts-widget .post-item h4 a {
            color: var(--default-color);
            transition: 0.3s;
        }

            .recent-posts-widget .post-item h4 a:hover {
                color: var(--accent-color);
            }

    .recent-posts-widget .post-item time {
        display: block;
        font-style: italic;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

.tags-widget {
    margin-bottom: -10px;
}

    .tags-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .tags-widget ul li {
            display: inline-block;
        }

        .tags-widget ul a {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 14px;
            padding: 6px 14px;
            margin: 0 6px 8px 0;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
            display: inline-block;
            transition: 0.3s;
        }

            .tags-widget ul a:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                border: 1px solid var(--accent-color);
            }

            .tags-widget ul a span {
                padding-left: 5px;
                color: color-mix(in srgb, var(--default-color), transparent 60%);
                font-size: 14px;
            }

/*---------------------------------------------------------------------------------------------------------------------------*/
/*Home page
------------------------------------------------------------------------------------------------------------------*/

.home-carousel {
    position: relative;
    background: linear-gradient(rgb(7, 6, 36) -17.19%, rgba(7, 6, 36, 0) 111.4%), linear-gradient(86.97deg, rgba(255, 168, 0, 0.4) -0.67%, rgba(25, 187, 125, 0.4) 24.91%, rgba(0, 82, 204, 0.4) 48.82%, rgba(69, 164, 236, 0.4) 72.18%, rgba(184, 95, 255, 0.4) 88.31%), rgb(7, 6, 36);
}

    /* Text Styling - Ensuring text is white as per previous request */
    .home-carousel .content-section h1 {
        font-size: 3rem;
        color: #fff; /* White text */
    }

    /* Hide carousel controls (prev/next buttons) */
    .home-carousel .carousel-control-prev,
    .home-carousel .carousel-control-next {
        display: none;
    }

    /* Styling for carousel dots */
    .home-carousel .carousel-indicators {
        position: absolute;
        bottom: 30px; /* Position dots at the bottom of the carousel */
        /*        left: 50%;*/
        /*transform: translateX(-50%);*/ /* Center the dots horizontally */
        z-index: 10; /* Ensure dots are above content */
    }

        /* Style the individual dots */
        .home-carousel .carousel-indicators button {
            background-color: rgba(255, 255, 255, 0.7); /* Light color for inactive dots */
            border-radius: 50%;
            width: 12px; /* Adjust dot size */
            height: 12px; /* Adjust dot size */
            margin: 0 4px;
            border: none;
            transition: background-color 0.3s ease;
        }

        /* Highlight the active dot */
        .home-carousel .carousel-indicators .active {
            background-color: rgba(255, 168, 0, 0.7); /* Active dot color */
        }

        /* Hover effect for the dots */
        .home-carousel .carousel-indicators button:hover {
            background-color: rgba(255, 168, 0, 1); /* Slightly change color on hover */
        }

    /* Styling for Read More button */
    .home-carousel .start-button {
        background-color: #ffb400; /* Button background color */
        color: #fff; /* Text color */
        font-size: 14px; /* Font size */
        font-weight: bold;
        padding: 12px 30px;
        border-radius: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        transition: all 0.3s ease; /* Smooth transition for hover effect */
    }

        /* Hover effect for Read More button */
        .home-carousel .start-button:hover {
            background-color: #e68a00; /* Darker button color on hover */
            color: #fff; /* Ensure text remains white */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Shadow effect */
            transform: translateY(-2px); /* Slight movement effect */
        }

/* Media Queries for responsive design */

/* Extra small screens (mobile phones, <576px) */
@media (max-width: 575.98px) {
    .home-carousel .content-section h1 {
        font-size: 1.8rem; /* Smaller font size for mobile */
        font-weight: 600;
    }

    .home-carousel .carousel-indicators {
        /*display: none;*/ /* Hide dot navigation on mobile */
        display: flex;
        margin-bottom: -3%;
    }

    .home-carousel .start-button {
        font-size: 1rem; /* Adjust button font size on small screens */
        padding: 0.6rem 1.2rem;
    }

    .home-carousel {
        height: 50vh; /* Adjust the carousel height for mobile */
    }
}

/* Small screens (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .home-carousel .content-section h1 {
        font-size: 2rem; /* Adjust font size for smaller screens */
        font-weight: 400;
    }

    .home-carousel .carousel-indicators button {
        width: 8px; /* Slightly larger dots on small screens */
        height: 8px; /* Slightly larger dots on small screens */
    }

    .home-carousel .start-button {
        font-size: 0.9rem; /* Adjust button font size */
        padding: 8px 18px; /* Adjust padding */
    }
}

/* Medium screens (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .home-carousel .content-section h1 {
        font-size: 2.5rem; /* Adjust font size for medium screens */
    }

    .home-carousel .carousel-indicators button {
        width: 12px; /* Medium-sized dots on tablets */
        height: 12px; /* Medium-sized dots on tablets */
    }

    .home-carousel .start-button {
        font-size: 1.2rem; /* Slightly larger button on medium screens */
        padding: 14px 30px; /* Adjust padding */
    }
}

/* Large screens (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .home-carousel .content-section h1 {
        font-size: 3rem; /* Larger font size for larger screens */
    }

    .home-carousel .carousel-indicators button {
        width: 12px; /* Same size dots on large screens */
        height: 12px; /* Same size dots on large screens */
    }

    .home-carousel .start-button {
        font-size: 1.3rem; /* Larger font size for button */
        padding: 16px 35px; /* Larger button padding */
    }
}

/* Extra large screens (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .home-carousel .content-section h1 {
        font-size: 3.5rem; /* Larger font size for extra large screens */
        font-weight: bolder;
    }

    .home-carousel .carousel-indicators button {
        width: 14px; /* Larger dots on extra large screens */
        height: 14px; /* Larger dots on extra large screens */
    }

    .home-carousel .start-button {
        font-size: 1.5rem; /* Larger button font size */
        padding: 18px 40px; /* Larger button padding */
    }
}
/*End Tag*/
/*Services Cards View*/

/*Clinet Css*/
/* Default styling for the swiper */
.swiper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

/* Styling for the swiper slides */
.swiper-slide img {
    max-width: 100%;
    padding-bottom: 10px;
    height: auto;
    display: block;
    border-radius: 10px;
    /*    transform:translate3d(-512px, -10px, 0px);*/
}

/* Custom styles for pagination */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
}

/* Media query for screen sizes less than 768px */
@media (max-width: 768px) {
    .swiper-slide img {
        max-width: 80%; /* Decrease size for smaller screens */
        margin: 0 auto; /* Center the logo */
    }
}

/* Media query for screen sizes less than 480px */
@media (max-width: 480px) {
    .swiper-slide img {
        max-width: 60%; /* Further decrease size for very small screens */
        margin: 0 auto;
    }
}

/*Home page Carousel*/
#homeCarousel {
    /*    min-height:500px;  Adjust this value to increase or decrease the height */
    min-height: 450px;
    /*    Adjust this value to increase or decrease the height*/
}
/* EndHome page Carosel*/
/*home page Carousel img increase*/ /*-23.01.2025*/
.col-lg-6 {
    /*padding-top: 50px;*/ /* Adjust the value as needed */
    /*padding-right: 20px;*/ /* Adjust the value as needed */
    /*padding-bottom: 20px;*/ /* Adjust the value as needed */
    /*padding-left: 20px;*/ /* Adjust the value as needed */
    padding: 1.5rem !important;
}


.about-us {
    padding-top: 50px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
/*col-lg-5*/

/* Default padding for small devices (mobile/tablet) */
.about-us {
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

/* For medium devices (like tablets) */
@media (min-width: 576px) {
    .about-us {
        padding-top: 30px;
        padding-right: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
    }
}

/* For large devices (like desktops) */
@media (min-width: 992px) {
    .about-us {
        padding-top: 100px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 50%;
        height: 50%;
    }
}

@media (min-width: 1200px) {
    .about-us {
        padding-top: 19px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 48%;
        height: 48%;
    }
}


@media (min-width: 1400px) {
    .about-us {
        padding-top: 19px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 37%;
        height: 52%;
    }
}

.about-us img {
    width: 100% !important; /* Makes the image responsive, so it scales with the container */
    height: 175% !important; /* Maintains the image's aspect ratio */
}
@media only screen and (max-width: 768px) {
    .about-us img {
        width: 100% !important; /* Keep the image width 100% */
        height: auto !important; /* Adjust height automatically to maintain aspect ratio */
        margin-left:2%;
    }
}
@media only screen and (max-width: 768px) {
    .about-gap-top {
        margin-top: -58%; /* Apply the margin-top only for mobile screens */
    }
}

/*Home Page*/
/*Services*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 0 0 10px 30px;
        position: relative;
    }

    .about .content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: var(--accent-color);
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}
/* General Card Container */
.aboutpage-services {
    background-color: #f9f9f9;
    padding: 50px 15px; /* Add padding for responsiveness */
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
    justify-content: center; /* Centers the cards */
    gap: 20px; /* Consistent gap between cards */
}

/* Card Design */
.aboutpage-services-item {
    flex: 1 1 calc(33.333% - 20px); /* Responsive: 3 cards per row, minus gap */
    max-width: calc(33.333% - 20px); /* Prevents cards from growing beyond a row */
    /*min-width: 350px;*/ /* Ensures cards are not too narrow on small screens */
    min-width: 300px; /* Ensures cards are not too narrow on small screens */
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid navy;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures consistent height for all cards */
}

    .aboutpage-services-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

/* Card Inner Content */
.aboutpage-services-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*height: 100%;*/ /* Ensures the card stretches to fill available height */
}

/* Image Section */
.aboutpage-services-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

    .aboutpage-services-img img {
        width: 100%;
        /*height: 250px;*/ /* Consistent image height */
        height: 200px; /* Consistent image height */
        object-fit: cover;
        display: block;
    }

/* Title Section */
.aboutpage-services-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.aboutpage-services-title-name .bg-primary {
    background-color: #003a66;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.aboutpage-services-title-name a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
}

    .aboutpage-services-title-name a:hover {
        text-decoration: underline;
    }

/* Content Section */
.aboutpage-services-content {
    text-align: center;
    padding: 20px;
    background: #003a66;
    color: #ffffff;
    flex-grow: 1; /* Fills remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .aboutpage-services-content h4 {
        margin-bottom: 10px;
    }

    .aboutpage-services-content .services-aboutus {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #f2f2f2;
    }

.services-aboutus {
    text-align: left;
}

.aboutpage-services-content .btn {
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

    .aboutpage-services-content .btn:hover {
        background-color: #005bb5;
    }

/* Responsive Design for Different Screen Sizes */
@media (max-width: 1200px) {
    .aboutpage-services-item {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row */
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .aboutpage-services-item {
        flex: 1 1 100%; /* 1 card per row */
        max-width: 100%;
        margin-right: 2px;
    }
}

@media (max-width: 576px) {
    .aboutpage-services {
        padding: 30px 10px;
    }

    .aboutpage-services-content {
        padding: 15px;
    }

        .aboutpage-services-content .btn {
            padding: 8px 20px;
            font-size: 0.8rem;
        }
}

/* Section Title */

.aboutpage-services .section-title .sub-title {
    color: #003a66;
    font-weight: bold;
    font-size: 2.5rem;
}

.aboutpage-services .section-title .sub-style {
    margin-bottom: 30px;
}

    .aboutpage-services .section-title .sub-style h1 {
        color: #003a66;
    }

/* Flex layout for the row of services */

.aboutpage-services .row.g-4 {
    display: flex;
    /*  gap: 20px;*/

    gap: 15px;
    flex-wrap: wrap; /* Ensures responsive wrapping */

    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
}

/* Centered Button */

.centered-button {
    padding: 10px 20px;
    background-color: #008080; /* Teal color */

    color: white;
    font-size: 16px;
    border: none;
    border-radius: 20px; /* Rounded corners */

    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */

    margin-top: auto; /* Push the button to the bottom of the card */
}

.px-4 {
    /*        padding-right: 1.5rem !important;*/
    padding-right: 0.5rem !important;
    padding-left: 1.5rem !important;
    padding-bottom: 2rem;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #022776 !important;
}

/*End Tag*/
/*End home page Carousel img increase*/
/*---------------------------------------------------------------------------------------------------------*/
/*About us PAGE*/
/*---------------------------------------------------------------------------------------------------------*/
/*New css for About us*/
/*Aboutus-Visionmission Buttons*/
/* Base styles for larger screens (Desktops) */
.about-btn {
    height: 40px;
    width: 170px;
    font-size: 16px;
    margin-right: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

    /* Button hover effect */
    .about-btn:hover {
        background-color: #0056b3;
        transform: scale(1.05);
    }

/* Adjust button size and layout for smaller screens */

/* Small screens (phones, portrait) */
@media (max-width: 576px) {
    .about-btn {
        width: 100%; /* Make buttons full width */
        margin-bottom: 10px; /* Space between buttons */
        font-size: 14px;
    }

    .about-card {
        margin-bottom: 20px;
    }

    .about-card-img {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .about-card-text {
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-title-left {
        text-align: center;
    }

    .about-core-values-list {
        padding-left: 20px;
        list-style-type: none;
    }

        .about-core-values-list li {
            text-align: left;
        }
}

/* Medium screens (tablets, portrait) */
@media (min-width: 577px) and (max-width: 768px) {
    .about-btn {
        width: 100%;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-btn-container {
        flex-direction: column;
    }

    .about-card-row {
        flex-direction: column;
    }

    .about-card-img {
        margin-bottom: 15px;
    }

    .about-core-values-list {
        padding-left: 20px;
    }
}

/* Large screens (small laptops, landscape tablets) */
@media (min-width: 769px) and (max-width: 992px) {
    .about-btn {
        width: 150px;
        margin-right: 10px;
        font-size: 15px;
    }

    .about-btn-container {
        flex-direction: row;
    }

    .about-card-row {
        flex-direction: row;
    }

    .about-card-img {
        max-width: 100%;
    }
}

/* Extra large screens (desktops, large laptops) */
@media (min-width: 1200px) {
    .about-btn {
        width: 170px;
        margin-right: 10px;
        font-size: 16px;
    }

    .about-card {
        margin-bottom: 30px;
    }

    .about-card-img {
        max-width: 100%;
    }
}
/*about-certificate*/
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    background-color: #ececec;
    border-radius: 10px;
    max-width: 80%;
    /*    max-height: 80%;*/
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.modal-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.btn {
    padding: 10px 20px;
    background-color: #007bff !important;
    color: white;
    border: none;
    cursor: pointer;
}

/*    .btn:hover {
        background-color: #0056b3;
    }*/
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 85%;
    /*    width: 70%;*/
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}
/* Modal container styling */
#certificateModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background */
    overflow: auto; /* Scroll if needed */
}

/* Modal content styling */
.modal-content {
    position: relative;
    max-width: 90%;
    margin: auto;
    top: 10%;
    top: 15%;
    /*    padding: 20px;*/
    padding: 0px;
    background-color: #fff;
}

/* Close button styling */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    color: #000;
    cursor: pointer;
}

/* Navigation buttons positioning */
.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

/* Button styling */
.btn {
    /*    background-color: rgba(0, 0, 0, 0.5);*/
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        /*        background-color: rgba(0, 0, 0, 0.8);*/
    }
/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .modal-content {
        max-width: 95%; /* Slightly larger for smaller screens */
    }

    .close-btn {
        font-size: 35px; /* Smaller close button on tablets */
        top: 5px;
        right: 5px;
    }

    .modal-nav .btn {
        font-size: 25px; /* Slightly smaller buttons for smaller screens */
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .modal-content {
        max-width: 100%; /* Take up full width on very small screens */
    }

    .close-btn {
        font-size: 30px; /* Smaller close button on mobile */
        top: 5px;
        right: 5px;
    }

    .modal-nav .btn {
        font-size: 20px; /* Even smaller buttons on small screens */
        padding: 6px 12px;
    }
}

@media screen and (max-width: 768px) {
    /* Modal content adjustment for smaller screens */
    .modal-content {
        max-width: 95%;
        /*            padding: 10px;*/
        width: 56%;
        /*               height:82%;*/
    }

    /* Button adjustment for smaller screens */
    .modal-nav .btn {
        font-size: 25px; /* Smaller button size */
        padding: 8px;
    }

    /* Adjusting the grid layout for small screens */
    #certificates-container {
        grid-template-columns: 1fr 1fr; /* Two columns for medium screens */
    }
}

/* For very small screens (phones in portrait mode) */
@media screen and (max-width: 480px) {
    .modal-content {
        max-width: 95%;
        padding: 0px;
        width: 80%;
        /*            height: 63%;*/
        /*            height: 52%;*/
    }

    .modal-nav .btn {
        font-size: 20px; /* Even smaller buttons */
        padding: 5px;
    }

    /* Adjusting grid layout for smaller screens */
    #certificates-container {
        grid-template-columns: 1fr; /* Single column layout for small screens */
    }

    /* Adjust the image scaling on very small screens */
    /*.certificate-img {
        max-height: 150px;*/ /* Limit image height on smaller screens */
    /*}*/
}

@media screen and (max-width: 768px) {
    .close-btn {
        font-size: 35px; /* Slightly smaller font size */
        top: 8px; /* Adjust position if needed */
        right: 8px; /* Adjust position if needed */
    }
}



/* For very small screens (phones in portrait mode) */
@media screen and (max-width: 480px) {
    .close-btn {
        font-size: 45px;
        top: -11px;
        right: 10px;
        /*font-size: 30px;*/ /* Even smaller font size for small screens */
        /*top: 5px;*/ /* Adjust the position for smaller screens */
        /*right: 5px;*/ /* Adjust the position for smaller screens */
    }
}
/* Large screens (small laptops, landscape tablets) */
@media (min-width: 769px) and (max-width: 992px) {
    .modal-content {
        width: 40%;
        /*        height: 81%;*/
    }
}

@media (min-width: 993px) {
    .modal-content {
        width: 30%;
        /*        height: 82%;*/
    }
}


/*about-End-certificate*/
/*End Tag*/

.d-flex .btn {
    font-size: 14px;
    /*        font-size: 16px;*/
    /*height: 40px;*/
    /* width: 170px;*/
}
/*About us Page Vision mission core values Start Tag*/
.about-serviceimage {
    object-fit: cover;
}

.about-container {
    margin-top: 0%;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
}

.about-img {
    margin-bottom: 15px;
}

.about-image {
    border-radius: 8px;
}

.about-text {
    padding: 20px;
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    /*    margin-bottom: 20px;*/
    color: #004085;
    text-align: center;
}

.about-title-left {
    font-size: 28px;
    font-weight: bold;
    /*    margin-bottom: 20px;*/
    color: #004085;
    text-align: left;
}

.about-us-left {
    text-align: left;
}

.about-button-container {
    margin: 20px 0;
    margin-top: -1%;
}

.about-btn {
    height: 40px;
    width: 170px;
    font-size: 16px;
    margin-right: 10px;
}

.about-content-container {
    margin-top: 30px;
}

.about-card {
    margin-top: 20px;
}

.about-card-row {
    display: flex;
    align-items: center;
}

.about-card-text {
    padding: 20px;
}

.about-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-card-image {
    text-align: center;
}

.about-card-img {
    border-radius: 8px;
}

.about-core-values-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}

    .about-core-values-list li {
        width: 50%;
        line-height: 2.5rem;
    }
/* Media Query for Smaller Screens (Mobile Devices) */
@media (max-width: 576px) {
    .about-title {
        font-size: 24px !important;
        text-align: center;
        color: #004085;
    }

    about-title-left {
        font-size: 24px;
        text-align: center;
        color: #004085;
    }

    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .about-img,
    .about-text {
        margin-bottom: 48%;
        text-align:left;
    }

    .about-button-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-btn {
        width: 150px;
        margin-bottom: 10px;
    }

    .about-card-row {
        flex-direction: column;
    }

    .about-card-text,
    .about-card-image {
        width: 100%;
        padding: 10px;
    }

    .about-core-values-list li {
        width: 100%;
        text-align: center;
    }
}

/* Media Query for Medium Screens (Tablets) */
@media (min-width: 577px) and (max-width: 992px) {
    .about-title {
        font-size: 26px;
        color: #004085;
    }

    .about-title-left {
        font-size: 26px;
        color: #004085;
    }

    .about-row {
        flex-wrap: wrap;
    }

    .about-btn {
        width: 160px;
    }

    .about-card-row {
        flex-wrap: wrap;
    }

    .about-card-text,
    .about-card-image {
        width: 50%;
        padding: 15px;
    }

    .about-core-values-list li {
        width: 50%;
    }
}

.home-margin-top {
    margin-top: 0%;
    font-size: 28px;
    font-weight: bold;
    color: #004085; /* Default styles */
    text-align: center;
}

/* Media Query for Tablets and Below (max-width: 768px) */
@media (max-width: 768px) {
    .home-margin-top {
        margin-top: 0%;
        font-size: 24px; /* Smaller font size */
    }
}

/* Media Query for Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .home-margin-top {
        margin-top: 0%;
        font-size: 20px; /* Even smaller font size */
    }
}

/* Media Query for Medium Screens and Up (min-width: 993px) */
@media (min-width: 993px) {
    .home-margin-top {
        margin-top: -4%; /* Adjust margin-top for medium screens */
    }
}

/* Media Query for Screens ≤ 1199px (max-width: 1199px) */
@media (max-width: 1199px) {
    .home-margin-top {
        margin-top: -14%; /* Adjust margin-top for screens ≤ 1199px */
    }
}

/* Media Query for Large Screens (min-width: 1200px) */
@media (min-width: 1200px) {
    .home-margin-top {
        margin-top: -4%; /* Adjust margin-top for large screens */
        font-size: 32px; /* Larger font size for large screens */
    }
}

/* Media Query for Extra-Large Screens (min-width: 1400px) */
@media (min-width: 1400px) {
    .home-margin-top {
        margin-top: -3%; /* Further adjustment for extra-large screens */
    }
}


/* Media Query for Large Screens (≥ 1200px) */
@media (min-width: 1200px) {
    .about-title {
        font-size: 32px; /* Adjust font size for large screens */
        color: #004085; /* Ensure the color remains consistent */
    }
}

/* Media Query for Extra-Large Screens (≥ 1400px) */
@media (min-width: 1400px) {
    .about-title {
        font-size: 28px !important; /* Adjust font size for extra-large screens */
        color: #004085; /* Keep color consistent */
        margin-top: 1% !important; /* Fine-tune margin for extra-large screens */
    }
}

/* Media Query for Large Screens (Desktops) */
@media (min-width: 993px) {
    .about-title {
        font-size: 24px;
        color: #004085;
        margin-bottom: 1.3%;
        /* margin-top: -2% !important;*/
    }

    .about-title-left {
        font-size: 24px;
        color: #004085;
    }

    .about-row {
        display: flex;
    }

    .about-btn {
        width: 170px;
    }

    .about-card-row {
        flex-wrap: nowrap;
    }

    .about-card-text,
    .about-card-image {
        width: 50%;
    }

    .about-core-values-list li {
        width: 50%;
    }
}
/*End Tag*/
/*index page card mobile resposnsiveness*/
.index-page-card {
    margin-left: 0.5%; /* Default margin for very small screens */
}

/* Media Query for Small Screens (Mobile Devices) */
@media (max-width: 767px) {
    .index-page-card {
        /*margin-left: -15.8px;*/ /* Apply margin-left adjustment for mobile view */
        margin-top: -16%;
        /*            margin-top: -25%;*/
    }
}

/* Media Query for Tablets and Medium Screens */
@media (min-width: 768px) and (max-width: 991px) {
    .index-page-card {
        margin-left: -10px; /* Slightly reduced margin for tablets */
        margin-top: -1%;
    }
}

/* Media Query for Large Screens (Desktop) */
@media (min-width: 992px) and (max-width: 1199px) {
    .index-page-card {
        margin-left: -5px; /* Reduced margin for medium-sized desktops */
    }
}

/* Media Query for Very Large Screens (Large Desktop) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .index-page-card {
        margin-left: auto; /* No margin on large desktops */
        margin-top: -4%;
    }
}

/* Media Query for Extra-Large Screens (Wide Desktops) */
@media (min-width: 1400px) {
    .index-page-card {
        margin-left: auto; /* No margin on extra-large screens */
        margin-top: -2%;
    }
}
/*End Tag*/
/*Aboutus Work Flow*/
/* Default styles for larger screens */
.container.section-title {
    margin: 0 auto;
    padding: 10px;
}

.container-fluid {
    max-width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    padding-right: -1%;
}

.et_pb_image_wrap img {
    width: 100%;
    height: auto;
    max-width: 1170px;
    margin: 0 auto;
}

/* Media Queries for different screen sizes */

/* For devices less than 1200px wide (large tablets, small desktops) */
@media (max-width: 1199px) {
    .et_pb_image_wrap img {
        max-width: 100%;
    }

    .container.section-title {
        padding: 30px 0;
    }
}

/* For devices less than 768px wide (tablets and smaller screens) */
@media (max-width: 767px) {
    .et_pb_image_wrap img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .container.section-title {
        padding: 20px 0;
    }

    h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* For devices less than 480px wide (small mobile screens) */
@media (max-width: 479px) {
    .et_pb_image_wrap img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .container.section-title {
        padding: 15px 0;
    }

    h2 {
        font-size: 1.2rem;
        text-align: center;
    }
}
/*End Aboutus WorkFlow */
/*Aboutus-Section*/
.aboutus-service-sub-section-style {
    background-color: #f9f9f9; /* Light grey background */
    padding: 50px 0;
}

.company-profile-part {
    padding: 50px 0;
    margin-top: -2%;
}
@media only screen and (max-width: 768px) {
    .company-profile-part {
        padding: 50px 0;
        margin-top: -47%;
    }
}

.company-profile-part .section-title h1 {
    font-size: 2.5rem;
    color: #003a66; /* Dark blue color for headings */
    font-weight: bold; /* Bold heading for emphasis */
}

    .company-profile-part .section-title .section-description {
        font-size: 1.2rem;
        color: #666; /* Lighter color for subheadings */
        margin-bottom: 20px;
    }

    .company-profile-part .services-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        margin-top: -4%;
    }

    .company-profile-part .service {
        flex: 1 1 20%; /* Adjust card width for desktop */
        text-align: center;
        background: #ffffff; /* White background for services */
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation for hover */
    }

        .company-profile-part .service:hover {
            transform: translateY(-5px); /* Lift effect on hover */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
        }

        .company-profile-part .service h3 {
            font-size: 1.5rem;
            margin: 10px 0;
            color: #003a66; /* Dark color for contrast */
        }

        .company-profile-part .service p {
            font-size: 0.9rem; /* Paragraph size */
            color: #003a66; /* Lighter color for better readability */
            line-height: 1.5; /* Line height for readability */
        }

    .company-profile-part .services-aboutus {
        font-size: 0.9rem; /* Paragraph size */
        color: white !important; /* Lighter color for better readability */
        line-height: 1.5; /* Line height for readability */
    }

    .company-profile-part .service-icon img {
        width: 80px; /* Set icon size */
        margin-bottom: 15px; /* Space below icon */
    }

/* Media Queries for Responsiveness */

/* Small Screens (Mobile: 0px - 576px) */
@media (max-width: 576px) {
    .company-profile-part .services-container {
        flex-direction: column; /* Stack services vertically on small screens */
        align-items: center;
        margin-top: -22%;
        padding-right:11%;
    }

    .company-profile-part .service {
        flex: 1 1 100%; /* Full width on mobile */
        margin: 10px 0; /* Reduce margins for smaller screens */
    }

    .company-profile-part .section-title h1 {
        font-size: 1.8rem; /* Smaller heading for mobile */
    }

    .company-profile-part .service h3 {
        font-size: 1.2rem; /* Smaller heading size */
    }

    .company-profile-part .service p {
        font-size: 0.8rem; /* Smaller paragraph size */
    }
}



/* Medium Screens (Tablet: 577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .company-profile-part .services-container {
        flex-direction: column; /* Stack services vertically */
        align-items: center;
    }

    .company-profile-part .service {
        flex: 1 1 80%; /* Full width with smaller margins */
        margin: 15px 0; /* Reduce margins for tablets */
    }

    .company-profile-part .section-title h1 {
        font-size: 2rem; /* Smaller heading for tablets */
    }

    .company-profile-part .service h3 {
        font-size: 1.3rem; /* Smaller heading size */
    }

    .company-profile-part .service p {
        font-size: 0.9rem; /* Paragraph size */
    }
}

/* Large Screens (Desktop: 769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .company-profile-part .service {
        flex: 1 1 45%; /* Two services per row on tablets */
        margin: 20px;
    }

    .company-profile-part .section-title h1 {
        font-size: 2.2rem; /* Heading size for large screens */
    }

    .company-profile-part .service h3 {
        font-size: 1.5rem; /* Normal heading size */
    }

    .company-profile-part .service p {
        font-size: 1rem; /* Standard paragraph size */
    }
}

/* Extra Large Screens (Desktop: 1025px and above) */
@media (min-width: 1025px) {
    .company-profile-part .service {
        flex: 1 1 20%; /* Smaller card width for desktop */
    }

    .company-profile-part .section-title h1 {
        font-size: 2.5rem; /* Larger heading for extra-large screens */
    }

    .company-profile-part .service h3 {
        font-size: 1.6rem; /* Larger heading size */
    }

    .company-profile-part .service p {
        font-size: 1rem; /* Slightly larger paragraph size */
        text-align: left;
        padding-left: 6%;
        color: black;
    }
}

/* Service Icon Styling */
.company-profile-part .service-icon {
    margin-bottom: 15px; /* Space between icon and title */
    color: #003a66; /* Icon color */
}

    .company-profile-part .service-icon i {
        transition: color 0.3s ease; /* Transition for hover effect */
    }

    .company-profile-part .service-icon:hover i {
        color: #007bff; /* Change color on hover */
    }
/*End Tag for Company Profile*/
/*---------------------------------------------------------------------------------------------------------*/
/*Service page*/
/*---------------------------------------------------------------------------------------------------------*/
.servicetitle h4 {
    display: flex;
    justify-content: center; /* Centers the heading horizontally */
    align-items: center; /* Aligns content vertically if needed */
    font-weight: 700; /* Makes the font bold */
    margin: 0; /* Optional: Adjust margin for spacing */
}

.servicetitle p {
    text-align: left; /* Aligns text to the left */
    margin-top: 10px; /* Adds some space between heading and paragraph */
    margin-left: 23px;
    margin-right: 10px;
}

.service-title,
.service-subtitle {
    color: #004085;
    text-align: center;
    margin-top: 10px;
}

.service-paragraph {
    margin-bottom: 15px;
    font-size: 14px;
}

.service-subtitle-service-right {
    color: #004085;
    text-align: left;
}

.service-new-section {
    width: 100%;
    padding: 1rem 0; /* Adjust top and bottom padding */
    box-sizing: border-box;
}

.service-new-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0; /* Removes unwanted gaps */
}

.service-new-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 2rem; /* Adjust spacing */
    box-sizing: border-box;
}

    .service-new-text h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #2b2b2b;
    }

    .service-new-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555555;
        margin-bottom: 1rem;
    }

.service-new-image-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-right: 50px;
}

.service-new-image-left {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 50px;
}

/* Responsive Design */
@media (max-width: 992px) { /* Tablets and smaller */
    .service-new-row {
        flex-direction: column; /* Stacks columns vertically */
    }

    .service-new-text,
    .service-new-image {
        width: 100%; /* Full width for each column */
        padding: 1rem;
    }
}

@media (max-width: 576px) { /* Mobile Devices */
    .service-new-text h2 {
        font-size: 1.5rem; /* Adjust heading size for smaller screens */
    }

    .service-new-text p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }
}

.service-new-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.service-new-text {
    /*        padding: 1rem 2rem;*/
    box-sizing: border-box;
}

.service-new-image-right,
.service-new-image-left {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 3%;
    padding-right: 3%;
}

/* Media Query for Mobile Devices (Below 768px) */
@media (max-width: 768px) {

    /* First Row: Biometric Attendance */
    .service-new-row:first-of-type {
        flex-direction: column; /* Stack the image and text vertically */
    }

    .service-new-text {
        order: 2; /* Move text after image */
        padding-top: 20px; /* Add some space on top for mobile */
    }

    .service-new-image-right {
        order: 1; /* Move image above text */
        margin-bottom: 20px; /* Add spacing between image and text */
        padding-left: 3%;
        padding-right: 3%;
    }

    /* Second Row: Face Recognition */
    .service-new-row:nth-of-type(2) {
        flex-direction: column; /* Stack the image and text vertically */
    }

    .service-new-text {
        order: 2; /* Move text after image */
        /*padding-top: 20px;*/ /* Add some space on top for mobile */
        padding-top: 4%;
    }

    .service-new-image-left {
        order: 1; /* Move image above text */
        margin-bottom: 20px; /* Add spacing between image and text */
        padding-left: 3%;
        padding-right: 3%;
    }
}
/*End Tag for services mobile column views*/
.about-core-values-list {
    list-style-type: disc; /* Default bullet points */
    padding-left: 20px; /* Adjust padding as needed */
}

    .about-core-values-list li {
        margin-bottom: 10px; /* Adds spacing between list items */
        font-size: 18px; /* Adjust font size */
        line-height: 1.6; /* Adjust line height for readability */
    }
/*carosel image size*/
.img-fluid-carosel {
    max-width: 100%;
    height: auto;
    border-radius: 50px;
}
/*End Carosel image*/

/*Testimonial Page Css*/
/* General Styles */
.skk-testimonial-top-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.skk-testimonial-title {
    text-align: center;
    margin-bottom: 30px;
}

.skk-testimonial-title-text {
    font-size: 2rem;
    font-weight: bold;
    color: #004085;
}

.skk-testimonials {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.skk-testimonial-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 30px;
    color: #333;
}

    .skk-testimonial-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.skk-testimonial-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skk-testimonial-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.skk-testimonial-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.skk-testimonial-description {
    font-size: 1rem;
    color: #666;
}

/* Media Queries */

/* Extra Small Screens (max-width: 576px) */
@media (max-width: 576px) {
    .skk-testimonial-title-text {
        font-size: 1.5rem;
    }

    .skk-testimonial-box {
        padding: 20px;
    }

    .skk-testimonial-description {
        font-size: 0.9rem;
    }
}

/* Small Screens (min-width: 577px and max-width: 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .skk-testimonial-title-text {
        font-size: 1.75rem;
    }

    .skk-testimonial-box {
        padding: 25px;
    }

    .skk-testimonial-description {
        font-size: 0.95rem;
    }
}

/* Medium Screens (min-width: 769px and max-width: 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .skk-testimonial-title-text {
        font-size: 2rem;
    }

    .skk-testimonial-box {
        padding: 30px;
    }

    .skk-testimonial-description {
        font-size: 1rem;
    }
}

/* Large Screens (min-width: 993px and max-width: 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .skk-testimonial-title-text {
        font-size: 2.25rem;
    }

    .skk-testimonial-box {
        padding: 35px;
    }

    .skk-testimonial-description {
        font-size: 1.1rem;
    }
}

/* Extra Large Screens (min-width: 1201px) */
@media (min-width: 1201px) {
    .skk-testimonial-title-text {
        font-size: 2.5rem;
    }

    .skk-testimonial-box {
        padding: 40px;
    }

    .skk-testimonial-description {
        font-size: 1.2rem;
    }
}

/* Icon and Text Styling */
.contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: #fff;
}

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

    .contact .info i {
        font-size: 20px;
        color: #fff;
        float: left;
        width: 44px;
        height: 44px;
        background: #4b7bad;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        margin: 0 auto; /* Center the icon */
    }

    .contact .info h4 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #2b2320;
    }

    .contact .info p {
        margin-bottom: 0;
        font-size: 14px;
        color: #65534c;
    }

    .contact .info:hover i {
        background: #f03c02;
        color: #fff;
    }

}

/*End Tag*/

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/*Horizontal scrollbar*/
* {
    box-sizing: border-box; /* Prevents elements from overflowing */
}

body {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

* {
    box-sizing: border-box; /* Ensures padding and border don't cause overflow */
}

/*Horizontal scrollbar*/


/*scroll-top-start*/
#scroll-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px; /* 20px from the bottom */
    right: 20px; /* 20px from the right */
    background-color:#004085; /* Button color */
    color: white; /* Icon color */
    border: none;
    border-radius: 50%; /* Circle shape */
    width: 50px; /* Width of the button */
    height: 50px; /* Height of the button */
    font-size: 20px; /* Size of the icon */
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s; /* Smooth transition */
}

    #scroll-top:hover {
        background-color: #0056b3; /* Darker color on hover */
    }


/*scroll-top-end*/



/*footer our services start*/
@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        /*        width: 47.666667%;*/
        /*        width: 56.666667%;*/
    }
}

/* Default styles for larger screens (usually for desktop and larger devices) */
footer .footer-links .row {
    display: flex;
    flex-wrap: wrap;
}

/* For extra large screens (1200px and up) */
@media (min-width: 1200px) {
    .footer-links .col-xl-3 {
        width: 25%; /* 4 columns in a row on large screens */
    }
}

/* For large screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .footer-links .col-lg-4 {
        width: 33.33%; /* 3 columns in a row */
    }
}

/* For medium screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-links .col-md-4 {
        width: 33.33%; /* 3 columns in a row */
    }
}

/* For small screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-links .col-sm-6 {
        width: 50%; /* 2 columns in a row */
    }
}

/* For extra small screens (less than 576px) */
@media (max-width: 575px) {
    .footer-links .col-12 {
        width: 100%; /* Stacks all columns in a single column */
    }
}

.footer-our-services {
    /*        text-align: center;*/
    /*    margin-left: 27%;*/
}
/*footer our services end*/
/* For mobile screens, rearrange the order of footer sections */
/* For mobile screens (max-width: 767px), adjust the order of footer sections */
@media (max-width: 767px) {
    .footer-about {
        order: 1; /* Footer About comes first */
    }

    .footer-links {
        order: 2; /* Quick Links comes second */
        padding-left: 12%;
        margin-top: 0%;
        padding-left: 12%;
        font-size:16px !important;
    }

        .footer-links.services {
            order: 3; /* Our Services comes third */
        }

    .footer-quote {
        order: 4; /* Request a Quote comes last */
        margin-left:-4%;
    }

    /* Ensure each column in "Our Services" is stacked on mobile */
    .footer-links.services .row {
        display: block; /* Stack columns vertically */
    }

    .footer-links.services .col-12 {
        width: 100%; /* Make each column full width */
        margin-bottom: 20px; /* Add spacing between columns */
    }
}

/*footer our services end*/
/* Adding space between each card */
.aboutpage-services-item {
    /*    margin-bottom: 30px;  Adjust this value as needed */
    margin-bottom: 2px; /*Adjust this value as needed */
}

/* Alternatively, add some padding between columns */


/**/

.mt-5 {
    margin-top: 0rem !important;
}

/*navbar our services start*/
/*.mx-5 {*/
/*    margin-right: 12% !important;
    margin-left: 12% !important;*/
/*margin-right: 6% !important;
    margin-left: 4% !important;
}

.bio-img {
    width: 21%;
}

.fire-img {
    width: 23%;
}

.access-img {
    width: 23%;
}

.video-img {
    width: 22%;
}

.door-img {
    width: 21%;
}

.electrical-img {
    width: 20%;
}

.public-img {
    width: 20%;
}

.rfid-img {
    width: 23%;
}

.elv-img {
    width: 24%;
}

.bms-img {
    width: 22%;
}

.service-img {
    width: 22%;
}

.facility-img {
    width: 24%;
}

.constructed-img {
    width: 21%;
}

.Mehanical-img {
    width: 21%;
}

.operations-img {
    width: 21%;
}

.Painting-img {
    width: 20%;
}

.generator-img {
    width: 23%;
}

.data-img {
    width: 23%;
}

.fids-img {
    width: 19%;
}

.water-img {
    width: 21%;
}

.bio-text {
    width: 73%;
}

.fire-text {
    width: 73%;
}

.access-text {
    width: 73%;
}

.video-text {
    width: 73%;
}

.Door-text {
    width: 73%;
}

.Electrical-text {
    width: 73%;
}

.AI-text {
    width: 73%;
}

.RFID-text {
    width: 73%;
}

.elv-text {
    width: 73%;
}

.service-text {
    width: 73%;
}

.fac-text {
    width: 73%;
}

.construction-text {
    width: 73%;
    text-wrap: auto !important;
}

.Mehanical-text {
    width: 73%;
    text-wrap: auto !important;
}

.Operation-text {
    width: 73%;
    text-wrap: auto !important;
}

.Painting-text {
    width: 73%;
}

.water-text {
    width: 73%;
}

.Generator-text {
    width: 73%;
}

.bms-text {
    width: 73%;
    text-wrap: auto !important;
}

.dt-text {
    width: 73%;
}

.fids-text {
    width: 73%;
}*/

/*navbar our services end*/


/*footer our services two columns start*/
@media (max-width: 768px) {
    .footer-links .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-links .footer-col-12 {
        width: 50%; /* Adjust the width to have two columns on small screens */
        margin-bottom: -32px;
    }

    .footer-bottom {
        /*width: 50%;*/ /* Adjust the width to have two columns on small screens */
        /*margin-bottom: -32px;*/
        display:none;
    }

    .footer-icon {
        padding-left: -5px;
    }
}

/*footer our services two columns end*/

.contact-us-section-part img {
    width: 100%;
    /*  height: auto;*/
    border-radius: 5px;
}

