
   
        :root {
            --navy: #0d2f5e;
            --navy-dark: #051b38;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #17a2b8;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
           /* Hero Section */
        .consulting-hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%), url('../../Content/Images/SlideDeck/it-consulting-bg.jpg') center/cover no-repeat;
            color: var(--light-text);
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .consulting-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 47, 94, 0.85);
        }
        
        .consulting-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .consulting-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--light-text);
        }
        
        .consulting-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .ExploreBtn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--teal);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .ExploreBtn:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
      
        
        /* Banner Section */
       /* .imageaboutus {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .imageaboutus img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .innerbannercontent {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, rgba(13, 47, 94, 0.85), rgba(13, 47, 94, 0.7));
            color: var(--light-text);
            text-align: center;
        }
        
        .innerbannercontent h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .Bannernavigater {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .Bannernavigater li {
            display: inline-block;
            margin: 0 10px;
            color: var(--light-text);
        }
        
        .Bannernavigater li a {
            color: var(--teal);
            font-weight: 500;
        }
        
        .Bannernavigater li a:after {
            content: "\f101";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-left: 10px;
        }
        
        /* Main Content Section */
        .content-section {
            padding: 80px 0;
        }
        
        .content-section h2 {
            color: var(--navy);
            margin-bottom: 30px;
            position: relative;
        }
        
        .content-section h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--teal);
            bottom: -10px;
            left: 0;
        }
        
        .content-section h2.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .content-section p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        /* Services Section */
        .services-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            padding: 80px 0;
        }
        
        .service-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            transition: var(--transition);
            height: 100%;
            border-left: 4px solid var(--teal);
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .service-item .icon {
            font-size: 2.5rem;
            color: var(--teal);
            margin-bottom: 20px;
        }
        
        .service-item h4 {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
            background: var(--light);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box .icon {
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        .feature-box .icon i {
            color: var(--teal);
            font-size: 2rem;
        }
        
        .feature-box h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Service Desk Section */
        .service-desk-section {
            padding: 80px 0;
            background: white;
        }
        
        .service-desk-section ul {
            padding-left: 20px;
        }
        
        .service-desk-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        
      /*  .service-desk-section li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--teal);
            position: absolute;
            left: 0;
            top: 0;
        }
      */
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            color: var(--light-text);
            text-align: center;
        }
        
        .cta-section h3 {
            margin-bottom: 20px;
        }
        
        .cta-section p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--navy);
            color: white;
            border: 2px solid var(--navy);
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .cta-btn:hover {
            background: transparent;
            color: var(--navy);
        }
        
       
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .innerbannercontent h3 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar {
                padding: 10px 0;
            }
            
            .navbar-collapse {
                background: var(--navy);
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }
            
            .innerbannercontent h3 {
                font-size: 2rem;
            }
            
            .imageaboutus {
                height: 300px;
            }
            
            .content-section, .services-section, .why-choose-section, .service-desk-section, .cta-section {
                padding: 60px 0;
            }
            
            /* Mobile dropdown styles */
            .dropdown-menu {
                background: rgba(255, 255, 255, 0.05);
                margin-top: 10px;
            }
            
            .dropdown-item {
                padding-left: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            #TopNav {
                text-align: center;
            }
            
            .TopNavLeft, .TopNavRight {
                text-align: center !important;
            }
            
            .TopNavRight .DetailsInTopNav {
                margin: 0 10px;
            }
            
            .innerbannercontent h3 {
                font-size: 1.8rem;
            }
            
            .imageaboutus {
                height: 250px;
            }
            
            .Bannernavigater li {
                display: block;
                margin: 5px 0;
            }
            
            .content-section, .services-section, .why-choose-section, .service-desk-section, .cta-section {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .innerbannercontent h3 {
                font-size: 1.5rem;
            }
            
            #back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }
