* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        h1, h3 {
            color: #d1320d;
        }

        h2, h4 {
            color: #005786;
        }

        p {
            color: #676767;
        }

        body {
            font-family: Lato, sans-serif;
            overflow-x: hidden;
        }

        /**/
        .latest-blogs {
            display: flex;
            gap: 15px;
            align-items: stretch; /* Ensure equal height for each blog column */
        }

        .blog {
            flex: 1;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Space out content within each blog */
            /*border: 1px solid #ddd; /* Optional: add a border for clarity */
            padding: 15px;
            border-radius: 8px;
            /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);*/
        }

            .blog img {
                width: auto;
                height: 100%;
                border-radius: 8px;
                max-height: 200px; /* Optional: limit image height for consistency */
                object-fit: cover; /* Ensure image covers the space while maintaining aspect ratio */
            }

            .blog h2 {
                font-size: 1.2em;
                color: #333;
                margin-top: 10px;
                text-decoration: none;
            }

            .blog a {
                text-decoration: none !important;
            }
        /**/

        /* HEADER STYLE */
        header {
            position: fixed;
            top: 0;
            left: 0;
            height: 80px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 50px;
            padding-right: 50px;
            background-color: #fff;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        /* Prevent content from going under the header */
        .content {
            margin-top: 80px;
        }

        .container {
            width: 85%;
            margin: auto;
            padding: 20px;
            overflow-x: hidden;
        }
        /* Logo styles */
        .logo img {
            max-height: 80px;
        }

        /* Navigation menu styles for desktop */
        nav {
            flex-grow: 1;
            text-align: center;
        }

            nav ul {
                list-style-type: none;
                display: inline-flex;
                gap: 20px;
            }

                nav ul li {
                    display: inline;
                }

                    nav ul li a {
                        text-decoration: none;
                        color: #005786;
                        padding: 8px 16px;
                        transition: color 0.3s ease;
                    }

                        nav ul li a:hover {
                            color: #005786;
                        }

        /* Book Consultation Button */
        .book-consultation {
            background-color: #d1320d;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

            .book-consultation:hover {
                background-color: #d1320d;
            }
#book-consultation {
    display: block; /* Ensure it's visible by default */
}

@media (min-width: 900px) {
    #book-consultation {
        display: none; /* Hide for screens wider than 900px */
    }
}

        /* Responsive Styles for Tablet and Mobile */
        @media (max-width: 900px) {
            header {
                padding-left: 20px;
                padding-right: 20px;
            }

            /* Hide menu and button on small screens */
            nav ul,
            .book-consultation {
                display: none;
            }
           

            /* Icons for menu and calendar */
            .menu-icon,
            .calendar-icon {
                font-size: 24px;
                color: #005786;
                cursor: pointer;
                display: inline;
            }

            /* Flex adjustments for icons */
            .icon-container {
                display: flex;
                gap: 15px;
                align-items: center;
            }

            /* Toggle mobile menu */
            .mobile-menu {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #fff;
                box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
                text-align: left; /* Align menu list to the left */
                padding-left: 20px;
                animation: slideDown 0.3s ease;
            }

                .mobile-menu ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }

                    .mobile-menu ul li {
                        padding: 15px;
                        border-bottom: 1px solid #eee;
                    }

                        .mobile-menu ul li a {
                            color: #005786;
                            text-decoration: none;
                            font-size: 18px;
                            transition: color 0.3s;
                        }

            /* Slide-down animation for mobile menu */
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

        /* Show full navigation and button on screens larger than 900px */
        @media (min-width: 901px) {
            .menu-icon,
            .calendar-icon {
                display: none;
            }

            nav ul,
            .book-consultation {
                display: inline-flex;
            }
        }

        @media (min-width: 900px) {
            .mobile-menu {
                display: none;
            }
        }



        /*footer*/
        footer {
            background: linear-gradient(120deg, #f1c2b6, #d9d9d9);
            padding: 40px 20px;
            color: #333;
        }

        .footer-columns {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

            .footer-columns div {
                flex: 1;
                margin: 0 15px;
                min-width: 200px;
            }

            .footer-columns h2 {
                font-size: 24px;
                margin-bottom: 15px;
                color: #000;
            }

            .footer-columns ul {
                list-style-type: none;
            }

                .footer-columns ul li {
                    margin-bottom: 10px;
                }

                    .footer-columns ul li a {
                        text-decoration: none;
                        color: #005786;
                        transition: color 0.3s ease;
                    }

                        .footer-columns ul li a:hover {
                            color: #005786;
                        }

        /* Separator */
        .separator {
            width: 100%;
            height: 1px;
            background-color: #696969;
            margin: 30px 0;
        }

        /* Bottom section styles */
        .bottom-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-left: 20px;
            padding-right: 20px;
            height: 1px;
        }

            .bottom-section .copyright {
                color: #005786;
            }

        /* Social media icons */
        .social-icons {
            display: flex;
            gap: 15px;
        }

            

            .social-icons a {
                text-decoration: none;
                color: #333;
                font-size: 18px;
                transition: color 0.3s ease;
            }

                .social-icons a:hover {
                    color: #d0132d;
                }


        /*footer end*/

        /*hero section*/
        .hero {
            background-image: url('./ai_agents.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            padding: 20px 0; /* Adds spacing inside the section */
        }

        .hero-text {
            width: 50%;
            padding-right: 15px;
            text-align: left;
        }

            .hero-text h1 {
                font-size: 36px;
                color: #002c43;
                margin-bottom: 20px;
                text-align: left !important;
                line-height: 38px;
            }

            .hero-text p {
                font-size: 20px;
                margin-bottom: 40px;
                color: black;
            }

        .hero-button {
            display: inline-flex; /* Aligns the text and arrow icon */
            align-items: center; /* Centers text and icon vertically */
            justify-content: center; /* Centers content horizontally */
            background: linear-gradient(90deg, #005786, #d1320d);
            color: white; /* Button text color */
            padding: 12px 24px; /* Padding for button */
            border: none; /* Remove default border */
            border-radius: 25px; /* Curved border radius */
            font-size: 1em; /* Font size */
            font-weight: bold;
            cursor: pointer; /* Pointer cursor on hover */
            text-decoration: none; /* Remove underline */
            transition: background-color 0.3s ease; /* Smooth hover transition */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
        }

            .hero-button:hover {
                color: white;
            }

            .hero-button::after {
                content: '➜'; /* Right arrow */
                font-size: 1.2em; /* Adjust icon size */
                margin-left: 8px; /* Space between text and arrow */
                margin-top: -3px;
            }

/* Secondary CTA - outline style */
.hero-button-secondary { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: #d1320d; padding: 12px 24px; border: 2px solid #d1320d; border-radius: 25px; font-size: 1em; font-weight: bold; cursor: pointer; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.hero-button-secondary:hover { border-width: 3px; padding: 11px 23px; }
.hero-button-secondary::after { content: '➜'; font-size: 1.2em; margin-left: 8px; margin-top: -3px; }

        .hero-image {
            width: 50%;
            padding-left: 15px;
        }

            .hero-image img {
                max-width: 100%;
                height: auto;
                border-radius: 8px;
            }


        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
            }

            .hero-text, .hero-image {
                width: 100%;
                padding: 0;
                margin-top: 15px;
                text-align: center;
            }

            .hero-text {
                margin-bottom: 20px;
            }

                .hero-text h1 {
                    font-size: 28px; /* Adjust font size for mobile */
                    text-align: center !important;
                }

                .hero-text p {
                    font-size: 18px; /* Adjust paragraph size for mobile */
                    marign-bottom: 20px;
                }
        }
        /*hero section closed*/
        /*what is the microsoft power platform*/
        /* Center-align the h2 heading */
        .Power-Platform h2 {
            text-align: center;
            font-size: 2em; /* Adjust font size if needed */
            margin-top: 20px; /* Add space above */
            margin-bottom: 20px; /* Add space below */
            color: #005786; /* Optional: heading color */
        }

        /* Style the unordered list */
        .Power-Platform ul {
            list-style-type: none; /* Remove default bullet points */
            padding-left: 0; /* Remove left padding */
            margin-top: 20px; /* Add space above the list */
            margin-bottom: 20px; /* Add space below the list */
            color:#676767;
            text-align: left; /* Align list items to the left */
        }

            /* Style each list item */
            .Power-Platform ul li {
                margin: 10px 0; /* Space between each list item */
                padding-left: 20px; /* Indent the text */
                font-size: 1em; /* Adjust font size if needed */
                color: #676767; /* Optional: text color */
                position: relative; /* Position relative for custom bullet */
            }

                /* Add custom bullet icon */
                .Power-Platform ul li::before {
                    content: '•'; /* Custom bullet symbol */
                    color: black; /* Custom bullet color */
                    font-weight: bold;
                    position: absolute;
                    left: 0;
                    top: 0;
                    transform: translateX(-1px); /* Adjust bullet position */
                }

        .button-container {
            display: flex;
            justify-content: center; /* Center-align the button */
            margin-top: 20px; /* Optional: Add space above the button */
        }

        .custom-button {
            background-color: #d1320d; /* Button background color */
            color: white; /* Button text color */
            padding: 10px 20px; /* Padding for button */
            border: none; /* Remove default border */
            border-radius: 20px; /* Curved border radius */
            font-size: 1em; /* Font size */
            cursor: pointer; /* Pointer cursor on hover */
            text-align: center; /* Center-align text inside the button */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
            transition: background-color 0.3s ease; /* Smooth hover transition */
        }

            /* .custom-button:hover {
                background-color: #b72a0b; /* Darker shade on hover */
            } */

.custom-button:hover { background-color: #b72a0b; border: 1px solid #002c43; }
        .image-row {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left: 0%;
            margin-right: 0%;
            /* Light background to highlight the image */
        }

        @media (max-width: 768px) {
            .image-row {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-left: 0%;
                margin-right: 0%;
                /* Light background to highlight the image */
            }
        }

        .image-row img {
            max-width: 100%;
            height: auto;
            /* border-radius: 8px; Optional rounded corners
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            Optional shadow for better focus */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .image-row {
                padding: 0px;
                margin:0px;
            }
        }



        /*what is the microsoft power platform closed*/

        /*poineer*/
        .pioneer {
            display: flex; /* Use flexbox for layout */
            /* Optional background color */
            padding: 20px; /* Padding for the section */
            align-items: center; /* Center items vertically */
            border-radius: 10px;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
        }

        .pioneer-left {
            flex: 0 0 30%; /* Left column takes 35% */
        }

            .pioneer-left img {
                width: 70%; /* Make image responsive */
                height: auto; /* Maintain aspect ratio */
                border-radius: 5px; /* Optional: rounded corners */
            }

        @media (max-width: 768px) {
            .pioneer-left img {
                width: 40%; /* Make image responsive */
                height: auto; /* Maintain aspect ratio */
                border-radius: 5px; /* Optional: rounded corners */
            }
            /* Light background to highlight the image */
        }

        @media (max-width: 768px) {
            .pioneer-left img {
                width: 60%; /* Make image responsive */
                height: auto; /* Maintain aspect ratio */
                border-radius: 5px; /* Optional: rounded corners */
            }
            /* Light background to highlight the image */
        }

        .pioneer-right {
            flex: 0 0 70%; /* Right column takes 65% */
            padding-left: 20px; /* Space between image and text */
        }

            .pioneer-right h2 {
                text-align: left; /* Ensure left alignment on larger screens */
                margin-bottom: 10px; /* Space below heading */
            }

            .pioneer-right p {
                text-align: left; /* Ensure left alignment on larger screens */
            }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .pioneer {
                flex-direction: column; /* Stack columns on smaller screens */
            }

            .pioneer-right h2 {
                text-align: center;
                margin-bottom: 10px;
            }

            .pioneer-right p {
                text-align: center; /* Ensure left alignment on larger screens */
            }

            .pioneer-left,
            .pioneer-right {
                flex: 1 0 100%; /* Full width on small screens */
                text-align: center; /* Center align text on mobile */
            }

            .pioneer-right {
                padding-left: 0; /* Remove left padding for mobile */
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .pioneer-left,
            .pioneer-right {
                flex: 0 0 50%; /* 50-50% width for tablet */
            }
        }
        /*poineer closed*/

        /*key elements of the power platform*/
        .solutions-key {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .solution-box-key {
            background-color: white;
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

            .solution-box-key img {
                width: 80px;
                height: 80px;
                margin-bottom: 10px;
            }

            .solution-box-key h4 {
                margin-bottom: 10px;
                color: #005786;
                font-size: 20px;
                margin-bottom: 20px;
            }

            .solution-box-key p {
                color: #676767;
                line-height: 24px;
            }

            .solution-box-key button {
                background-color: #d1320d;
                color: white;
                padding: 10px 20px;
                border: none;
                border-radius: 5px;
                margin-top: 10px;
                cursor: pointer;
                font-size: 16px;
            }

                .solution-box-key button a {
                    color: white;
                    text-decoration: none;
                }

                .solution-box-key button:hover {
                    background-color: #a12a1e;
                }
        /*key elements of the power platform closed*/
        /*benefits of MSP*/
        .solutions-benefit {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .solution-box-benefit {
            background-color: white;
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

            .solution-box-benefit img {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }

            .solution-box-benefit h4 {
                margin-bottom: 10px;
                color: #005786;
                font-size: 22px;
                margin-bottom: 15px;
            }

            .solution-box-benefit p {
                color: #676767;
                line-height: 25px;
            }

        /* Responsive grid layout for laptop, tablet, and mobile */
        @media (min-width: 992px) {
            .solutions-benefit {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .solutions-benefit {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .solutions-benefit {
                grid-template-columns: 1fr;
            }
        }
        /*benefits of MSP closed*/
        

        /*industry*/
        /*industry*/
        .industry {
            display: none;
            gap: 20px;
            align-items: center; /* Center-aligns the content vertically */
            padding: 20px;
        }

        /* Left column (Text) - no background or border */
        .industry-text {
            flex: 3;
            padding: 20px;
            text-align: center; /* Center text horizontally */
        }

            .industry-text p {
                margin-bottom: 10px;
                color: #333;
            }

            .industry-text a {
                color: black;
                text-decoration: none;
                font-weight: bold;
            }

        /* Right column (Image) - occupies 40% */
        .industry-image {
            flex: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

            .industry-image img {
                width: 100%;
                height: auto;
                object-fit: cover;
                border-radius: 5px;
            }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .industry {
                display: none;
                flex-direction: column;
            }

            .industry-text,
            .industry-image {
                max-width: 100%;
            }
        }
        /*insdustry close*/

        /*transform section*/
        /* Section Background */
       .transform-section{
            background:#fff;
            border:3px solid #d1320d;
            border-radius:10px;
            padding:40px;
            margin:20px;
            text-align:center;
            box-shadow:0 -5px 10px rgba(0,0,0,.1) !important;
        }


            /* Center-align and color the h2 heading */
            .transform-section h2 {
                color: #d1320d; /* Heading color */
                font-size: 2em; /* Adjust font size if needed */
                margin-bottom: 20px; /* Space below the heading */
            }

            /* Center-align and color the paragraph */
            .transform-section p {
                color: #676767; /* Paragraph color */
                font-size: 1em; /* Adjust font size */
                margin-bottom: 30px; /* Space below the paragraph */
                max-width: 600px; /* Optional: limit width for better readability */
                margin-left: auto;
                margin-right: auto;
            }

            /* Styled button */
            .transform-section .custom-button {
                display: inline-flex; /* Aligns the text and arrow icon */
                align-items: center; /* Centers text and icon vertically */
                justify-content: center; /* Centers content horizontally */
                background: linear-gradient(90deg, #005786, #d1320d);
                color: white; /* Button text color */
                padding: 12px 24px; /* Padding for button */
                border: none; /* Remove default border */
                border-radius: 25px; /* Curved border radius */
                font-size: 1em; /* Font size */
                font-weight: bold;
                cursor: pointer; /* Pointer cursor on hover */
                text-decoration: none; /* Remove underline */
                transition: background-color 0.3s ease; /* Smooth hover transition */
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
            }

                /* Add a right arrow icon to the button */
                .transform-section .custom-button::after {
                    content: '➜'; /* Right arrow */
                    font-size: 1.2em; /* Adjust icon size */
                    margin-left: 8px; /* Space between text and arrow */
                    margin-top: -4px;
                }



        /*transform section closed*/

        /*case study*/
        .case-study {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

.case-study-view {
    text-align:right;
}
    .case-study-view a {
        text-decoration: none;
        color: #005786;
    }
/* Column styling */
.case-study-column {
    flex: 1;
    min-width: 30%;
    text-align: center;
    margin: 10px;
}

            /* Image styling */
            .case-study-column img {
                width: 80%;
                height: auto;
            }
        .case-study a {
            text-decoration:none;
            color:#d1320d;
            }


        /* Tablet adjustments */
        @media (max-width: 1024px) {
            .case-study-column {
                min-width: 45%; /* Two columns on tablets */
            }
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .case-study-column {
                min-width: 100%; /* One column on mobile */
                margin: 10px 0;
            }
        }
        /*case study closed*/