        :root {
            --primary-blue: #2c5aa0;
            --secondary-blue: #1e4280;
            --light-blue: #f0f4f8;
            --orange: #ff6b35;
            --dark-text: #333;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .top-bar {
            background-color: #2d3748;
            padding: 12px 0;
        }

        .top-bar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .top-bar-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
			
        }

        .top-bar-contact:hover {
            color:#FFBB00;
        }

        .top-bar-contact i {
            font-size: 14px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .top-social-icon {
            width: 35px;
            height: 35px;
            background-color: #fbbf24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d3748;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .top-social-icon:hover {
            background-color: #f59e0b;
            transform: scale(1.1);
            color: #2d3748;
        }

        @media (max-width: 768px) {
            .top-bar-container {
                flex-direction: column;
                gap: 15px;
                padding: 15px 20px;
            }

            .top-bar-left {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                text-align: center;
            }

            .top-bar-right {
                justify-content: center;
            }
        }

        

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 80px 0;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://via.placeholder.com/1920x600/2c5aa0/ffffff?text=Government+Services') center/cover;
            opacity: 0.2;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

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

        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .btn-hero {
            background: var(--orange);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-hero:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            color: white;
        }
		
		
		.service-mian-title{
			font-family:"Rajdhani", Sans-serif;
			color: #FFFFFF;
			font-size: 42px;
			font-weight: 700;
			margin-bottom: 20px;
			text-align: center;
		}
		 .services-section {
            background: #ffbb00;
            padding: 80px 0;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
			width:1164px;
        }

        .service-card {
            background:#33354b;
            padding: 40px 30px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            min-height: 320px;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-icon-wrapper {
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .service-card:nth-child(odd) .service-icon-wrapper {
            background: white;
        }

        .service-card:nth-child(even) .service-icon-wrapper {
            background: #151515;
        }

        .service-icon {
            font-size: 40px;
            color: #fbbf24;
            position: relative;
            z-index: 2;
        }

        .service-grid-title {
            color: #fbbf24;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            position: relative;
			top:45px;
            z-index: 1;
        }

        .service-grid-description {
            color: #e2e8f0;
            font-size: 16px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
			padding:52px 0px 0px 0px;
        }

        .explore-btn-wrapper {
            text-align: center;
        }

        .btn-explore {
            background-color: #3a4356;
            color: white;
            padding: 18px 50px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            border-radius: 5px;
        }

        .btn-explore:hover {
            background-color: #2d3748;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            color: white;
        }

        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .services-section {
                padding: 60px 0;
            }

            .services-container {
                padding: 0 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                min-height: 280px;
            }

            .service-title {
                font-size: 22px;
            }

            .service-description {
                font-size: 15px;
            }
        }

        
        /* News Section */
        .news-section {
            padding: 60px 0;
            background: var(--light-blue);
        }

        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

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

        .news-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: var(--primary-blue);
        }

        .news-content {
            padding: 20px;
        }

        .news-date {
            color: var(--orange);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .news-card h4 {
            color: var(--primary-blue);
            font-size: 20px;
            margin-bottom: 10px;
        }

        .news-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .btn-read-more {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .btn-read-more:hover {
            color: var(--secondary-blue);
            text-decoration: underline;
        }

        
	.header-container {
            background-color: #ffffff;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 80px;
            height: 80px;
        }

        .logo svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text span {
            font-weight: 800;
            font-size: 14px;
            letter-spacing: 1px;
            color: #000;
            text-transform: uppercase;
        }

        .navigation {
            display: flex;
            align-items: center;
            gap: 391px !important;
			font-family:"Istok Web", Sans-serif;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 40px;
        }

        .nav-menu li a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu li a:hover {
            color: #fbbf24;
        }

        .nav-menu li a.active {
            color: #fbbf24;
        }

        .nav-menu li a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #fbbf24;
        }

        .capability-btn {
            background-color: transparent;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .capability-btn:hover {
            background-color: #fbbf24;
            color: #fff;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        @media (max-width: 992px) {
            .navigation {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }
        }
		
		/* Hero Slider Section */
        .hero-slider {
            position: relative;
            height: 800px;
            overflow: hidden;
        }

        .slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slider-item.active {
            opacity: 1;
        }

        .slider-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .slider-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            color: white;
            padding: 0 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .slider-content h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            line-height: 1.2;
            max-width: 800px;
			font-family: Rajdhani;
        }

        .slider-content p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .btn-slider {
            background-color: #fbbf24;
            color: #000;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-slider:hover {
            background-color: #f59e0b;
            transform: translateY(-2px);
            color: #000;
        }

        /* Slider Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #fbbf24;
            width: 30px;
            border-radius: 6px;
        }

        /* Widgets Section */
        .widgets-section {
            background: white;
            padding: 0px 0;
          
            position: relative;
            z-index: 5;
        }

        .widgets-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 30px;
			position: relative;
		bottom: 140px
        }

        .widgets-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            background: white;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        .widget-item {
            text-align: center;
            padding: 20px;
            transition: all 0.3s;
        }

        .widget-item:hover {
            transform: translateY(-10px);
        }

        .widget-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: #fff9e6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #fbbf24;
            transition: all 0.3s;
        }

        .widget-item:hover .widget-icon {
            background: #fbbf24;
            color: white;
        }

        .widget-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        @media (max-width: 992px) {
            .widgets-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .slider-content {
                padding: 0 30px;
            }

            .slider-content h1 {
                font-size: 40px;
            }
        }

        @media (max-width: 576px) {
            .widgets-row {
                grid-template-columns: 1fr;
            }

            .slider-content h1 {
                font-size: 32px;
            }
        }
		
		
		  .about-section {
            background: #f5f5f5;
            padding: 80px 0;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

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

        .about-label {
            color: #fbbf24;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 1px;
			font-family:"Istok Web", Sans-serif;
        }

        .about-title {
            color: #33354A;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 30px;
			font-family:"Istok Web";
        }

        .about-description {
            color: #718096;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .quote-box {
            border-left: 4px solid #fbbf24;
            padding: 25px 30px;
            background: white;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .quote-text {
            color: #2d3748;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .quote-author {
            color: #4a5568;
            font-size: 16px;
            font-weight: 600;
        }

        .quote-author-title {
            color: #718096;
            font-weight: 400;
        }

        .btn-about {
            background-color: #fbbf24;
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }

        .btn-about:hover {
            background-color: #f59e0b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
            color: white;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .about-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image:first-child {
            height: 400px;
        }

        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-title {
                font-size: 36px;
            }

            .about-text {
                padding-right: 0;
            }
        }

        @media (max-width: 576px) {
            .about-section {
                padding: 60px 0;
            }

            .about-container {
                padding: 0 20px;
            }

            .about-title {
                font-size: 28px;
            }

            .quote-text {
                font-size: 18px;
            }

            .about-image {
                height: 250px;
            }

            .about-image:first-child {
                height: 300px;
            }
        }
		
		  .stats-section {
            background: #3a4356;
            padding: 60px 0;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 120px;
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-icon {
            font-size: 50px;
            color: #fbbf24;
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 18px;
            color: #e2e8f0;
            font-weight: 400;
        }

        /* Animation on scroll */
        .stat-item.animate .stat-number {
            animation: countUp 2s ease-out;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px 0;
            }

            .stat-item:nth-child(2)::after,
            .stat-item:nth-child(3)::after {
                display: none;
            }

            .stat-item:nth-child(odd)::after {
                display: block;
            }

            .stat-item:nth-child(4)::after {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .stats-section {
                padding: 50px 0;
            }

            .stats-container {
                padding: 0 20px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stat-item::after {
                display: none !important;
            }

            .stat-icon {
                font-size: 40px;
            }

            .stat-number {
                font-size: 40px;
            }

            .stat-label {
                font-size: 16px;
            }
        }
		
		
		.naics-section {
            background: #f0f0f0;
            padding: 80px 0;
        }

        .naics-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .naics-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .naics-title {
            color: #fbbf24;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .naics-subtitle {
            color: #718096;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .naics-primary {
            color: #2d3748;
            font-size: 18px;
            font-weight: 600;
        }

        .naics-primary-code {
            font-weight: 700;
        }

        .naics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        /* White Box - Left Side */
        .naics-box-white {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .naics-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid #e2e8f0;
        }

        .naics-item:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
            transform: translateX(5px);
        }

        .naics-item-text {
            color: #2d3748;
            font-size: 16px;
            font-weight: 500;
        }

        .naics-item-code {
            font-weight: 700;
            margin-right: 10px;
        }

        .naics-item-arrow {
            color: #cbd5e0;
            font-size: 18px;
        }

        /* Yellow Box - Right Side */
        .naics-box-yellow {
            background: #fbbf24;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
        }

        .naics-item-yellow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            transition: all 0.3s;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
        }

        .naics-item-yellow:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .naics-item-yellow .naics-item-text {
            color: white;
            font-weight: 600;
        }

        .naics-item-yellow .naics-item-arrow {
            color: white;
        }

        @media (max-width: 992px) {
            .naics-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .naics-title {
                font-size: 36px;
            }
        }

        @media (max-width: 576px) {
            .naics-section {
                padding: 60px 0;
            }

            .naics-container {
                padding: 0 20px;
            }

            .naics-title {
                font-size: 32px;
            }

            .naics-box-white,
            .naics-box-yellow {
                padding: 30px 20px;
            }

            .naics-item,
            .naics-item-yellow {
                padding: 15px;
                font-size: 15px;
            }
        }
		
		.testimonials-section {
            background-image: url('images/1675923274616.jpeg');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 100px 0;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.65);
        }

        .testimonials-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonials-title {
            color: #fbbf24;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .testimonials-subtitle {
            color: white;
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonials-slider {
            position: relative;
            padding: 0 60px;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            gap: 30px;
            overflow: visible;
            transition: transform 0.5s ease;
            width: max-content;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            width: 380px;
            flex-shrink: 0;
        }

        .testimonial-quote {
            color: #718096;
            font-size: 17px;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 30px;
            min-height: 150px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-name {
            color: #2d3748;
            font-size: 18px;
            font-weight: 700;
            margin: 0;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            border-radius: 5px;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .slider-arrow.prev {
            left: 0;
        }

        .slider-arrow.next {
            right: 0;
        }

        @media (max-width: 992px) {
            .testimonial-card {
                width: 340px;
            }

            .testimonials-title {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 0;
            }

            .testimonials-container {
                padding: 0 20px;
            }

            .testimonials-title {
                font-size: 36px;
            }

            .testimonials-subtitle {
                font-size: 16px;
            }

            .testimonials-slider {
                padding: 0 50px;
            }

            .testimonial-card {
                width: calc(100vw - 140px);
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .testimonial-quote {
                font-size: 16px;
                min-height: auto;
            }
        }
		
		.blogs-section {
            background: #fafafa;
            padding: 80px 0;
        }

        .blogs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .blogs-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .blogs-title {
            color: #fbbf24;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .blogs-subtitle {
            color: #718096;
            font-size: 18px;
        }

        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .blog-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.1);
        }

        .blog-date {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: #fbbf24;
            color: white;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 3px;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #718096;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-meta i {
            color: #cbd5e0;
        }

        .blog-title {
            color: #2d3748;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .blog-read-more {
            color: #2d3748;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .blog-read-more:hover {
            color: #fbbf24;
            gap: 15px;
        }

        .blog-read-more i {
            font-size: 14px;
        }

        @media (max-width: 992px) {
            .blogs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .blogs-title {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .blogs-section {
                padding: 60px 0;
            }

            .blogs-container {
                padding: 0 20px;
            }

            .blogs-title {
                font-size: 36px;
            }

            .blogs-subtitle {
                font-size: 16px;
            }

            .blogs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-image-wrapper {
                height: 240px;
            }

            .blog-title {
                font-size: 22px;
            }
        }
		
		
	.council-section {
            background: #f5f5f5;
            padding: 80px 0;
        }

        .council-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .council-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .council-title {
            color: #fbbf24;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .council-subtitle {
            color: #718096;
            font-size: 18px;
        }

        .council-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .council-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .council-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .council-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .council-info {
            padding: 30px 25px;
        }

        .council-name {
            color: #2d3748;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .council-position {
            color: #0066cc;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .council-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #718096;
            font-size: 15px;
        }

        .contact-item i {
            color: #cbd5e0;
            font-size: 16px;
            width: 20px;
        }

        .contact-item a {
            color: #718096;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #fbbf24;
        }

        @media (max-width: 1200px) {
            .council-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .council-section {
                padding: 60px 0;
            }

            .council-container {
                padding: 0 20px;
            }

            .council-title {
                font-size: 36px;
            }

            .council-subtitle {
                font-size: 16px;
            }

            .council-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .council-image {
                height: 320px;
            }
        }
 /* Partners Section */
        .partners-section {
            background: #f5f5f5;

            padding: 60px 0;
        }

        .partners-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            align-items: center;
        }

        .partner-logo {
            text-align: center;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .partner-logo:hover {
            opacity: 1;
        }

        .partner-logo img {
            max-width: 150px;
            height: auto;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        /* Social Bar */
        .social-bar {
            background: #2d3748;
            padding: 20px 0;
            border-top: 1px solid rgba(251, 191, 36, 0.3);
        }

        .social-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
        }

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

        .social-icon {
            width: 45px;
            height: 45px;
            background: #fbbf24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: #f59e0b;
            transform: translateY(-3px);
            color: white;
        }

        /* Main Footer */
        .main-footer {
            background: #232534;
            padding: 60px 0 30px;
            color: #e2e8f0;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-logo {
            width: 120px;
            margin-bottom: 25px;
        }

        .footer-logo svg {
            width: 100%;
            height: auto;
        }

        .footer-description {
            color: #cbd5e0;
            font-size: 15px;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:before {
            content: '›';
            color: #fbbf24;
            font-size: 20px;
            font-weight: 700;
        }

        .footer-links a:hover {
            color: #fbbf24;
            padding-left: 5px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            width: 20px;
            color: #fbbf24;
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-text {
            color: #cbd5e0;
            font-size: 15px;
            line-height: 1.6;
        }

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

        .contact-text a:hover {
            color: #fbbf24;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #white;
            font-size: 14px;
        }

        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .partners-section {
                padding: 40px 0;
            }

            .partners-container,
            .footer-container,
            .social-container {
                padding: 0 20px;
            }

            .partners-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .social-container {
                justify-content: center;
            }

            .main-footer {
                padding: 40px 0 20px;
            }
        }
		
		
		/*services page*/
		.page-hero {
            background-image: url('images/coreservice.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 120px 0;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: capitalize;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
        }

        .breadcrumb-nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-nav a:hover {
            color: #fbbf24;
        }

        .breadcrumb-separator {
            color: #fbbf24;
            font-weight: 700;
        }

        .breadcrumb-current {
            color: #fbbf24;
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 80px 20px;
                min-height: 300px;
            }

            .hero-title {
                font-size: 40px;
            }

            .breadcrumb-nav {
                font-size: 14px;
            }
        }
		
		.services-detail-section {
            background: white;
            padding: 80px 0;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .service-item:nth-child(even) {
            direction: rtl;
        }

        .service-item:nth-child(even) > * {
            direction: ltr;
        }

        .service-content {
            padding: 20px 0;
        }

        .service-title {
            color: #202b5d;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
			font-family:Istok Web;
			
        }

        .service-description {
            color: #718096;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #4a5568;
            font-size: 15px;
          
            padding: 8px 0;
        }

        .service-features li:before {
           content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #fbbf24;
            font-size: 16px;
            flex-shrink: 0;
        }

        .service-image-wrapper {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

        .service-item:hover .service-image {
            transform: scale(1.05);
        }

        @media (max-width: 992px) {
            .service-item {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 60px;
            }

            .service-item:nth-child(even) {
                direction: ltr;
            }

            .service-title {
                font-size: 28px;
            }

            .service-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .services-detail-section {
                padding: 60px 0;
            }

            .services-container {
                padding: 0 20px;
            }

            .service-title {
                font-size: 24px;
            }

            .service-description {
                font-size: 15px;
            }

            .service-image {
                height: 250px;
            }
        }
		
		.cta-section {
            background-image: url('images/serviceovelayimg.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 100px 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .cta-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
        }

        .cta-label {
            color: #fbbf24;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: capitalize;
        }

        .cta-title {
            color: white;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .cta-subtitle {
            color: #e2e8f0;
            font-size: 18px;
            margin-bottom: 40px;
        }

        .cta-button {
            background-color: #fbbf24;
            color: white;
            padding: 18px 45px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            border-radius: 5px;
        }

        .cta-button:hover {
            background-color: #f59e0b;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
            color: white;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 80px 0;
            }

            .cta-container {
                padding: 0 20px;
            }

            .cta-label {
                font-size: 16px;
            }

            .cta-title {
                font-size: 32px;
            }

            .cta-subtitle {
                font-size: 16px;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 16px;
            }
        }
		
		
        .contact-section {
            background: white;
            padding: 80px 0;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
        }

        /* Left Column */
        .contact-info-column {
            padding-right: 40px;
        }

        .contact-main-title {
            color: #2d3748;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-intro {
            color: #718096;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-info-title {
            color: #2d3748;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 35px;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            color: #fbbf24;
            font-size: 18px;
            width: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-detail-content {
            display: flex;
            flex-direction: column;
        }

        .contact-label {
            color: #2d3748;
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 3px;
        }

        .contact-value {
            color: #718096;
            font-size: 15px;
        }

        .contact-value a {
            color: #718096;
            text-decoration: none;
        }

        .contact-value a:hover {
            color: #fbbf24;
        }
		
		 /* Right Column - Form */
        .contact-form-column {
            background: #f7fafc;
            padding: 50px;
            border-radius: 10px;
        }

        .form-title {
            color: #2d3748;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 5px;
            font-size: 15px;
            transition: all 0.3s;
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
        }

        .form-control::placeholder {
            color: #a0aec0;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #fbbf24;
            color: white;
            padding: 15px 45px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #f59e0b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
        }

        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info-column {
                padding-right: 0;
            }

            .contact-form-column {
                padding: 40px 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }

            .contact-container {
                padding: 0 20px;
            }

            .contact-main-title {
                font-size: 32px;
            }

            .form-title {
                font-size: 26px;
            }

            .contact-form-column {
                padding: 30px 20px;
            }
        }
		
		 .social-icon-contact1 {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon-contact1.facebook {
            background: #3b5998;
        }

        .social-icon-contact1.youtube {
            background: #ff0000;
        }

        .social-icon-contact1.linkedin {
            background: #0077b5;
        }

        .social-icon-contact1:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

 .main-header {
            background-color: #ffffff;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #fbbf24;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background: #f59e0b;
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(251, 191, 36, 0.4);
        }


.map-section {
            width: 100%;
            height: 500px;
            padding: 0;
            margin: 0;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        @media (max-width: 768px) {
            .map-section {
                height: 400px;
            }
        }
		
		
		.social-icons-contact {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .social-icon-contact {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon-contact.facebook {
            background: #3b5998;
        }

        .social-icon-contact.youtube {
            background: #ff0000;
        }

        .social-icon-contact.linkedin {
            background: #0077b5;
        }

        .social-icon-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
/* Brand-color baseline for .page-hero (added for TFS migration).
 * Demo CSS hardcodes background-image: url(coreservice.jpg) on .page-hero
 * (under the misleading "services page" comment — but the selector is
 * global, so it bleeds onto every sub-page). Clear it here and apply a
 * brand-color baseline so pages without a featured image render a clean
 * colored banner. When a page DOES have a featured image, the partial
 * sets an inline style="background-image: url(...)" which (being inline)
 * wins over this rule. */
.page-hero {
    background-image: none;
    background-color: #2c5aa0;
}

