	/* Reset and Basic Styles (from previous) */
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	.logo {
		font-size: 20px;
		max-width: 80%;
		display: flex;
		align-items: center;
		/* Centers the text and logo vertically */
		margin-left: 0;
		margin-right: 0;
	}

	.logo-image {
		width: 30px;
		/* Adjust size of logo */
		height: auto;
		/* Keeps aspect ratio */
		margin-right: 10px;
		/* Space between logo and text */
	}

	body {
        font-family: sans-serif;
        color: #fff;

        background: linear-gradient(to bottom, #2D2D2D, #C33F2A ,#E98144);
        background-attachment: fixed;
        background-size: 200% 200%; /* Make the gradient larger */
        animation: gradientMove 5s ease infinite; /* Add animation */
    }

    /* Define the animation */
    @keyframes gradientMove {
        0% {
            background-position: 0% 0%;
        }
        50% {
            background-position: 100% 100%;
        }
        100% {
            background-position: 0% 0%;
        }
    }

	.buller-points {
		list-style-type: none;
	}

	.main-heading {
		text-align: center;
		font-size: 42px;
	}

	.content {
		margin-top: 5%;
		padding: 10px;
	}

	.submenu {
		display: none;
		list-style-type: none;
		padding: 0;
		background-color: #c53e29;
		position: relative;
		top: 100%;
		left: 0;
		width: 200px;
		z-index: 10;
	}

	@media (max-width: 768px) {
		.submenu {
			display: none;
			list-style-type: none;
			padding: 0;
			background-color: #c53e29;
			position: relative;
			top: 100%;
			left: 0;
			width: 100%;
			z-index: 10;
		}
	}

	.has-submenu:hover .submenu {
		display: block;
		/* Show submenu on hover */
	}

	/* Styling for the submenu */
	.submenu li {
		padding: 10px;
		text-align: center;
	}

	.submenu li a {
		color: white;
		text-decoration: none;
	}

	.grid-container-blog {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		/* 3 columns */
		grid-template-rows: repeat(2, auto);
		/* 2 rows */
		gap: 20px;
		/* Space between the boxes */
		padding-top: 74px;
	}

	.box {
		background-color: white;

		border-radius: 8px;
		border: 1px solid #ddd;
		overflow: hidden;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease-in-out;
		height: 400px;
	}

	.image-container {
		position: relative;
	}

	.image-container img {
		width: 100%;
		height: 240px;
		border-radius: 8px;
	}

	.time {
		position: absolute;
		bottom: 10px;
		right: 10px;
		background-color: rgba(0, 0, 0, 0.6);
		color: white;
		padding: 5px;
		font-size: 12px;
		border-radius: 5px;
	}



	.content h1 {
		font-size: 13px;
		margin-bottom: 10px;
		color: rgba(35, 31, 32, 1);
	}

	.content p {
		font-size: 14px;
		color: #555;
	}

	.container {
		max-width: 1000px;
		margin: 0 auto;
		padding: 0 20px;
	}

	a {
		text-decoration: none;
		color: #fff;
	}

	/* Header Styles (from previous) */
	header {
		padding: 20px 0;
	}

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

	.logo {
		font-size: 24px;
		font-weight: bold;
		color: #fff;
	}

	nav ul {
		list-style: none;
		display: flex;
	}

	nav ul li {
		margin-left: 25px;
	}

	nav ul li a {
		font-size: 16px;
		opacity: 0.8;
		transition: opacity 0.3s ease;
	}

	nav ul li a:hover {
		opacity: 1;
	}

	.get-started-btn {
		background-color: #C53E29;
		/* Orange button color */
		color: #fff;
		padding: 12px 25px;
		border-radius: 30px;
		font-weight: bold;
		display: inline-block;
		transition: background-color 0.3s ease;
	}

	.get-started-btn:hover {
		background-color: #e66a4d;
	}

	/* Hero Section Styles (from previous) */
	.hero-section {
		padding: 100px 0;
		text-align: center;
	}

	.hero-title {
		font-size: 3.5rem;
		font-weight: bold;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	.hero-subtitle {
		font-size: 1.1rem;
		color: #ddd;
		margin-bottom: 40px;
		line-height: 1.6;
	}

	.hero-get-started-btn {
		background-color: #C53E29;
		/* Orange button color */
		color: #fff;
		padding: 15px 35px;
		border-radius: 30px;
		font-size: 1.2rem;
		font-weight: bold;
		display: inline-block;
		transition: background-color 0.3s ease;
	}

	.hero-get-started-btn:hover {
		background-color: #e66a4d;
	}

	/* Discover Section Styles (from previous) */
	.discover-section {
		padding: 80px 0;
		text-align: center;
	}

	.discover-title {
		font-size: 2.5rem;
		font-weight: bold;
		margin-bottom: 60px;
	}

	.card-container {
		display: flex;
		justify-content: space-between;
		gap: 20px;
		flex-wrap: wrap;
		/* Allow cards to wrap on smaller screens */
	}

	.card {
		background-color: rgba(255, 255, 255, 0.05);
		/* Dark card background with slight transparency */
		border-radius: 15px;
		padding: 30px;
		text-align: left;
		flex: 1;
		/* Equal width distribution */
		min-width: 250px;
		/* Minimum width for cards */
	}

	.card-icon {
		font-size: 2.5rem;
		margin-bottom: 20px;
		opacity: 0.7;
	}

	.card-title {
		font-size: 1.5rem;
		font-weight: bold;
		margin-bottom: 15px;
	}

	.card-description {
		color: #ddd;
		line-height: 1.5;
		margin-bottom: 25px;
		font-size: 0.9rem;
	}

	.card-arrow-btn {
		background-color: #ff7a59;
		/* Orange button color */
		color: #fff;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		float: right;
		/* Align arrow to the right */
		transition: background-color 0.3s ease;
	}

	.card-arrow-btn:hover {
		background-color: #e66a4d;
	}

	.card-arrow-btn::after {
		content: '\2192';
		/* Unicode arrow right */
		font-size: 1.2rem;
	}

	/* Web Portal Section Styles (from previous) */
	.web-portal-section {
		padding: 100px 0;
	}

	.web-portal-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 50px;
	}

	.web-portal-text {
		flex: 1;
		text-align: left;
	}

	.web-portal-text h2 {
		font-size: 2.8rem;
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 20px;
	}

	.web-portal-text p {
		color: #ddd;
		line-height: 1.6;
		margin-bottom: 30px;
	}

	.learn-more-btn {
		background-color: #ff7a59;
		/* Orange button color */
		color: #fff;
		padding: 12px 30px;
		border-radius: 30px;
		font-weight: bold;
		display: inline-block;
		transition: background-color 0.3s ease;
		font-size: 1.1rem;
	}

	.learn-more-btn:hover {
		background-color: #e66a4d;
	}

	.web-portal-image {
		flex: 1;
		max-width: 50%;
		/* Adjust as needed */
	}

	.web-portal-image img {
		max-width: 100%;
		height: auto;
		border-radius: 10px;
		/* Optional: if you want rounded corners for image */
	}

	/* Why Better Section Styles (from previous) */
	.why-better-section {
		padding: 80px 0;
		text-align: center;
	}

	.why-better-title {
		font-size: 2.5rem;
		font-weight: bold;
		margin-bottom: 60px;
	}

	.why-better-cards {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		/* Responsive grid */
		gap: 25px;
	}

	.why-better-cards .card {
		background-color: rgba(255, 255, 255, 0.05);
		/* Dark card background with slight transparency */
		border-radius: 15px;
		padding: 35px;
		text-align: center;
		/* Center text in these cards */
	}

	.why-better-cards .card-icon {
		font-size: 3rem;
		/* Larger icons for why better section */
		margin-bottom: 20px;
		opacity: 0.7;
	}

	.why-better-cards .card-title {
		font-size: 1.3rem;
		font-weight: bold;
		margin-bottom: 0;
		/* Reduced margin for title */
	}

	/* Memberships Section Styles (from previous) */
	.memberships-section {
		padding: 80px 0;
		text-align: center;
	}

	.memberships-title {
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 40px;
	}

	.membership-logos {
		display: flex;
		justify-content: center;
		/* Center logos horizontally */
		gap: 30px;
		flex-wrap: wrap;
		/* Allow logos to wrap on smaller screens */
	}

	.membership-logos img {
		height: 80px;
		/* Adjust logo height as needed */
		width: auto;
		opacity: 0.8;
		transition: opacity 0.3s ease;
	}

	.membership-logos img:hover {
		opacity: 1;
	}

	/* Regional Coverage Section Styles (from previous) */
	.regional-coverage-section {
		padding: 80px 0;
		text-align: center;
	}

	.regional-coverage-title {
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 40px;
	}

	.regional-map img {
		max-width: 100%;
		height: auto;
		border-radius: 10px;
		/* Optional: rounded corners for map */
	}

	/* They Trust Us Section Styles (from previous) */
	.trust-us-section {
		padding: 80px 0;
		text-align: center;
	}

	.trust-us-title {
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 40px;
	}

	.trust-us-logos {
		display: flex;
		justify-content: center;
		/* Center logos horizontally */
		gap: 50px;
		flex-wrap: wrap;
		/* Allow logos to wrap */
	}

	.trust-us-logos img {
		height: 60px;
		/* Adjust logo height as needed */
		width: auto;
		opacity: 0.8;
		transition: opacity 0.3s ease;
	}

	.trust-us-logos img:hover {
		opacity: 1;
	}

	/* Testimonials Section Styles (from previous) */
	.testimonials-section {
		padding: 80px 0;
		text-align: center;
	}

	.testimonials-title {
		font-size: 2.5rem;
		font-weight: bold;
		margin-bottom: 60px;
	}

	.testimonials-container {
		display: flex;
		gap: 30px;
		overflow-x: auto;
		/* Enable horizontal scrolling for testimonials */
		padding-bottom: 20px;
		/* Space for scrollbar */
		scroll-snap-type: x mandatory;
		/* Enable snapping for smooth scrolling */
	}

	.testimonial-card {
		background-color: rgba(255, 255, 255, 0.05);
		border-radius: 15px;
		padding: 30px;
		text-align: left;
		flex: 0 0 350px;
		/* Fixed width for each card */
		scroll-snap-align: start;
		/* Snap to the start of each card */
		min-width: 300px;
		/* Minimum width for small screens */
	}

	.testimonial-card p {
		color: #ddd;
		line-height: 1.6;
		margin-bottom: 20px;
		font-size: 0.95rem;
	}

	.testimonial-author {
		font-weight: bold;
		margin-bottom: 5px;
	}

	.testimonial-role {
		font-size: 0.9rem;
		color: #ccc;
		margin-bottom: 5px;
	}

	.testimonial-company {
		font-size: 0.9rem;
		color: #ccc;
	}

	.testimonial-nav {
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	.testimonial-nav-btn {
		background-color: rgba(255, 255, 255, 0.1);
		color: #fff;
		border: none;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 10px;
		cursor: pointer;
		opacity: 0.7;
		transition: opacity 0.3s, background-color 0.3s;
	}

	.testimonial-nav-btn:hover {
		opacity: 1;
		background-color: rgba(255, 255, 255, 0.2);
	}

	.testimonial-nav-btn:disabled {
		opacity: 0.3;
		cursor: default;
	}

	.testimonial-nav-btn::after {
		font-size: 1.2rem;
	}

	.testimonial-nav-btn.prev::after {
		content: '\2190';
		/* Left arrow */
	}

	.testimonial-nav-btn.next::after {
		content: '\2192';
		/* Right arrow */
	}


	/* Next Step Section Styles (from previous) */
	.next-step-section {
		padding: 100px 0;
		text-align: center;
	}

	.next-step-title {
		font-size: 2.8rem;
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 20px;
	}

	.next-step-subtitle {
		color: #ddd;
		line-height: 1.6;
		margin-bottom: 40px;
		font-size: 1.1rem;
	}

	.next-step-get-started-btn {
		background-color: #ff7a59;
		/* Orange button color */
		color: #fff;
		padding: 15px 35px;
		border-radius: 30px;
		font-size: 1.2rem;
		font-weight: bold;
		display: inline-block;
		transition: background-color 0.3s ease;
	}

	.next-step-get-started-btn:hover {
		background-color: #e66a4d;
	}




	/* Responsive Design (from previous + modifications) */
	@media (max-width: 960px) {
		.hero-title {
			font-size: 2.8rem;
		}

		.discover-title,
		.why-better-title,
		.memberships-title,
		.regional-coverage-title,
		.trust-us-title,
		.testimonials-title,


		nav ul {
			display: none;
			/* Hide navigation on smaller screens, consider hamburger menu */
		}

		.header-container {
			justify-content: space-around;
			/* Distribute space more evenly */
		}

		.web-portal-container {
			flex-direction: column;
			/* Stack text and image vertically */
			text-align: center;
		}

		.web-portal-text {
			text-align: center;
			/* Center align text when stacked */
		}

		.web-portal-image {
			max-width: 80%;
			/* Make image smaller when stacked */
			margin: 20px auto 0;
			/* Center image */
		}

		.membership-logos,
		.trust-us-logos {
			justify-content: space-around;
			/* Distribute logos more evenly on smaller screens */
		}

		.testimonials-container {
			overflow-x: scroll;
			/* Re-enable scroll on smaller screens if needed */
			justify-content: flex-start;
			/* Align items to start in scroll view */
		}

		.testimonial-card {
			margin-right: 20px;
			/* Add spacing between cards in scroll view */
		}

		.next-step-title,


		.call-container {
			grid-template-columns: 1fr;
			/* Stack columns on smaller screens */
			text-align: center;
			/* Center text in stacked columns */
		}




	}

	@media (min-width: 769px) {
		.hamburger {
			display: none;
		}

		.navbar {
			display: flex;
			justify-content: center;
			align-items: center;
		}

		.nav-links {
			display: flex;
		}

		.nav-links li {
			margin: 0 20px;
		}

		.has-submenu {
			position: relative;
		}

		/* Show submenu when parent list item is hovered */
		.has-submenu:hover .submenu {
			display: block;
		}

		.submenu {
			display: none;
			position: absolute;
			left: -53px;
			top: 100%;
			background-color: #c53e29;
			width: 200px;
			box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
		}

	.submenu li {
        padding: 10px;
        margin-left: 0px;
    }

		.submenu li a {
			color: white;
			text-decoration: none;
		}


	}

	.button-container {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: 10px;
		/* Optional: adjust spacing from top */
	}

	@media (max-width: 768px) {
		.hero-title {
			font-size: 2.2rem;
		}

		.hero-section {
			padding: 80px 0;
		}

		.discover-section,
		.why-better-section,
		.memberships-section,
		.regional-coverage-section,
		.trust-us-section,
		.testimonials-section,
		.next-step-section {
			padding: 60px 0;
			/* Reduced padding for smaller screens */
		}

		.card {
			flex: 1 1 100%;
			/* Cards take full width on smaller screens in discover section */
			margin-bottom: 20px;
		}

		.card-container {
			flex-direction: column;
			/* Stack cards vertically on smaller screens in discover section*/
		}

		.why-better-cards {
			grid-template-columns: 1fr;
			/* Stack cards in why better section */
		}

		.membership-logos,
		.trust-us-logos {
			gap: 20px;
			/* Reduce logo gap on very small screens */
		}

		.testimonial-card {
			flex: 1 1 100%;
			/* Testimonial cards full width on very small screens */
			margin-right: 0;
			/* Remove right margin when full width */
			margin-bottom: 20px;
		}

		.testimonials-container {
			flex-direction: column;
			/* Stack testimonials vertically on smaller screens */
			overflow-x: hidden;
			/* Disable horizontal scroll when stacked */
		}

		.next-step-title,


		.hamburger {
			display: flex;
			/* Show hamburger icon on mobile */
			flex-direction: column;
			cursor: pointer;
			margin-left: 20px;
		}

		.hamburger .bar {
			width: 25px;
			height: 3px;
			background-color: white;
			margin: 4px 0;
		}

		/* Hide "Get Started" button on mobile */
		.get-started-btn {
			display: none;
		}



		.hamburger.active .hamburger-menu {
			display: block !important;
			background-color: #c53e29;
			position: absolute;
			top: 86px;
			height: 100%;
			right: 0;
			z-index: 999;

			width: 100%;
			padding: 10px 0;
			transition: background-color 0.3sease;
		}


		.hamburger-menu:hover {
			background-color: #ff5722;
		}

		.hamburger-menu ul {
			list-style-type: none;
			padding: 0;
			text-align: center;
		}

		.hamburger-menu ul li {
			margin: 10px 20;
		}

		.hamburger-menu ul {
			list-style-type: none;
			padding: 0;
			text-align: center;
		}

		.hamburger-menu ul li {
			margin: 10px 20;
		}

		/* Hide submenu by default */
		.submenu {
			display: none;
			background-color: #c53e29;
		}

		/* Show submenu when parent list item is clicked on mobile */
		.has-submenu.active .submenu {
			display: block;
		}

		.has-submenu>a:after {
			content: " ▼";
			/* Add an arrow to indicate a dropdown */
		}

		.has-submenu.active>a:after {
			content: " ▲";
			/* Change arrow direction when the submenu is visible */
		}

		.grid-container-blog {
			grid-template-columns: 1fr;
			/* 1 column layout on mobile */
			gap: 10px;
			/* Adjust the gap between boxes for mobile */
			padding: 10px;
			/* Reduce padding for smaller screens */
		}

		.box {
			height: auto;
			/* Allow box height to adjust based on content */
		}

		.time {
			font-size: 10px;
			/* Smaller font size for time on mobile */
		}
	}
