/* General Styles */
*::-webkit-scrollbar {
    width: 9px; 
}

*::-webkit-scrollbar-track {
    background: #ffffff; 
}

*::-webkit-scrollbar-thumb {
    background: #337a8d; 
    border-radius: 4px; 
}

*::-webkit-scrollbar-thumb:hover {
    background: #21b0c7; 
}



.container {
	max-width: 1300px;
	margin: auto;
}


/* ------------------------------------------- */
/* NAVBAR SECTION */
/* ------------------------------------------- */

.floating-navbar {
	position: fixed;
	top: 15px;
	left: 10px;
	right: 10px;
	padding-top: 20px;
	/* Adjust as desired */
	padding-bottom: 25px;
	/* Adjust as desired */
	z-index: 1000;
	border-bottom-left-radius: 25px;
	border-top-right-radius: 25px;
	border-top-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: rgba(14, 51, 75, 0.9);
	/* Semi-transparent white background */
	backdrop-filter: blur(5px);
	/* Blurring effect */
}


.floating-navbar .navbar-nav>.nav-item {
	margin-right: 25px;
	/* Adjust this value for your preferred spacing */
}

.floating-navbar .navbar-nav>.nav-item:last-of-type {
	margin-right: 0;
}

.floating-navbar .nav-link {
	color: white;
	font-size: 15px;
	padding-top: 12px;
	font-family: 'Barlow', sans-serif;
}

.floating-navbar .nav-link:hover {
	color: #ddd;
	/* Light gray color on hover for some contrast */
}

.floating-navbar .btn {
	background: linear-gradient(45deg, #c061e6, #5792e9);
	border: none;
	color: white;
	transition: 0.3s;
	padding: 10px 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
	font-family: 'Barlow', sans-serif;
}


.login-link {
	padding-left: 20px;
	padding-right: 20px;
}

.floating-navbar .btn:hover {
	background: linear-gradient(45deg, #b8f1e0, #a7dcee);
	/* Reversed gradient for hover effect */
	color: #16346d;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'%3e%3c/path%3e%3c/svg%3e");
}

#active-nav {
	text-decoration: overline;
}

@media (max-width: 768px) {
	.floating-navbar {
		top: 0;
		left: 0;
		right: 0;
		border-radius: 0;
		background-color: rgb(12, 43, 65);
		/* Semi-transparent white background */
	}

	.floating-navbar .nav-link {
		font-size: 18px;
	}

	#active-nav {
		text-decoration: none;
	}
}

.scroll-top-icon {
	position: fixed;
	bottom: 4%;
	right: 4%;
	z-index: 1000;
	background: linear-gradient(45deg, #189aa3, #045da5);
	color: white;
	border-radius: 50%;
	padding: 15px 24px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	font-size: 22px;
	cursor: pointer;
	transition: background 0.3s;
	display: none;
	/* Default state is hidden */
}

.scroll-top-icon-hidden {
	display: none;
}

@media (max-width: 768px) {
	.scroll-top-icon {
		display: none;
		/* Will be overridden by JavaScript when scrolling */
	}
}


/* ------------------------------------------- */
/* HERO SECTION */
/* ------------------------------------------- */

.hero-section {
	min-height: 69vh;
	padding: 50px 0;
	padding-bottom: 100px;
	background:
		/* url('/img/bg.svg'), */
		linear-gradient(159deg, rgb(45, 90, 143) 0%, rgb(24, 50, 121) 100%);
	background-size: cover, cover;
	/* Make sure both the gradient and image cover the entire div */
	background-position: center center, center center;
	background-repeat: no-repeat;
}

.hero-title,
.hero-description,
.hero-buttons {
	font-family: 'Barlow', sans-serif;
}

.fade-in-element {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.visible {
	opacity: 1;
}

.hero-title {
	font-size: 4.1rem;
	font-weight: bold;
	padding-bottom: 20px;
	padding-top: 150px;
	color: #fff;
	letter-spacing: -0.5px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
	font-size: 1.2rem;
	max-width: 80%;
	/* Limiting the width ensures text readability */
	color: #e7ecf3;
	padding-bottom: 12px;
	text-shadow: 2px 2px 4px rgba(92, 92, 92, 0.4);
}

.hero-buttons .btn {
	font-family: 'Barlow', sans-serif;
	padding: 10px 50px;
	border-radius: 10px;
	font-size: 16px;
	/* Increase font size for more prominence */
	margin-right: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);

	/* Gradient: Example transitions from light blue to deeper blue */
	background: linear-gradient(45deg, #288a9b, #1aafc9);
	border: none;
	/* To remove the default border */
	color: white;
	/* Text color for better contrast */
	transition: 0.3s;
	/* Smoothens the hover effect */
}

/* Optional: You can add a hover effect where the gradient is reversed */
.hero-buttons .btn:hover {
	background: linear-gradient(45deg, #b8cff1, #a7dcee);
	/* Reversed gradient for hover effect */
	color: #16346d;
}

/* If you have a button with the class btn-outline-secondary from earlier, this will handle its gradient */
.hero-buttons .btn-outline-secondary {
	background: linear-gradient(45deg, #288a9b, #1aafc9);
}

.hero-buttons .btn-outline-secondary:hover {
	background: linear-gradient(45deg, #b8cff1, #a7dcee);
	/* Reversed gradient for hover effect */
	color: #16346d;
}

.hero-buttons .btn-learn-more {
	font-family: 'Barlow', sans-serif;
	padding: 10px 45px;
	border-radius: 10px;
	font-size: 16px;
	margin-right: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
	background: transparent;
	border: 1px solid white;
	color: white;
	transition: 0.3s;
}

.hero-buttons-learn-more .btn:hover {
	background: linear-gradient(45deg, #d1ebf1, #63cab0);
}

@media (max-width: 768px) {

	/* Adjust this breakpoint according to your needs */
	.hero-section {
		min-height: auto;
		padding: 30px 0;
	}

	.hero-title {
		font-size: 3.1rem;
		/* Adjust to your liking for smaller screens */
		text-shadow: none;
		text-align: center;
	}

	.hero-description {
		font-size: 1.4rem;
		text-shadow: none;
		text-align: center;
		max-width: 100%;
	}

	.hero-buttons .btn {
		display: block;
		/* Stack buttons vertically on smaller screens */
		width: 100%;
		/* Full width for a more touch-friendly button */
		margin-bottom: 10px;
		/* Add space between vertically stacked buttons */
	}

	/* To remove extra margin from the last button */
	.hero-buttons .btn:last-child {
		margin-bottom: 0;
	}
}


/* ------------------------------------------- */
/* LOGO SECTION */
/* ------------------------------------------- */

.trusted-section {
	background-color: #fff;
	font-family: 'Barlow', sans-serif;
}

.trusted-section h2 {
	font-size: 2em;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.trusted-section .lead {
	font-size: 1.2em;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(92, 92, 92, 0.2);
}

.logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	/* This will vertically align all logos */
}

.logo-container {
	width: 121px;
	height: 80px;
	margin: 0 25px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.logo-container img {
	max-width: 100%;
	max-height: 100%;
}
  
  .NEX-exchange-section {
	background: #f7f9fc;
	padding: 60px 0;
  }
  
  .section-title {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 40px;
	color: #333;
  }
  
  .NEX-card {
	background: #ffffff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .NEX-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  .NEX-card-icon {
	font-size: 2.5rem;
	color: #007bff;
	margin-bottom: 20px;
  }
  
  .NEX-card h3 {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 15px;
  }
  
  .NEX-card p {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
  }
  
  .middle-card {
	background: linear-gradient(135deg, #1e5ea3, #068099);
	color: white;
  }
  
  .middle-card h3,
  .middle-card p {
	color: #ffffff;
  }
  
  
  .employment-roi-section {
	background: #eef2f7;
	padding: 60px 0;
  }
  
/* Overall section styling */
.NEX-roi-section {
    padding: 50px 0;
    background-color: #ffffff;
	letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
	letter-spacing: 0.9px;
}

/* Tab Navigation */
.roi-tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.roi-tabs {
    display: flex;
    gap: 15px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    color: #888;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: #fff;
    background-color: rgba(14, 51, 75, 0.9);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-item:hover {
    color: rgba(14, 51, 75, 0.9);
    background-color: #e2e7ee;
}

/* Tab content area */
.tab-pane {
    text-align: center;
    display: none;
    padding: 30px 0;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.tab-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #000000;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center; /* Centers the paragraph */
}

/* Center the <ul> content as before */
.roi-list {
    list-style-type: none;
    padding-left: 0;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}



/* Animate <li> elements to appear one by one */
.roi-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.5s ease-in-out forwards;
    animation-delay: calc(0.2s * var(--li-index)); /* Delays each <li> */
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style for list icons */
.roi-list li:before {
    content: '\f00c'; /* FontAwesome checkmark */
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #34bb71;
}

h3 {
    font-size: 1.8rem;
    color: #415e72;
    margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .tab-item {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

  
.more-features {
	display:none;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-card {
    background-color: #486f88;
    padding: 0; /* No padding for the card */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
	
    /* Flexbox to center content */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
    align-items: center; /* Horizontally center */
    min-height: 50px; /* Ensure the card has a minimum height of 50px */
}

.feature-title {
    font-size: 1.2rem;
    margin: 0; /* Remove any margins */
    padding: 0; /* Remove padding */
    line-height: 50px; /* Ensure the title is vertically centered */
    height: 50px; /* Match the card height */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
	letter-spacing: 0.9px;
}

.feature-description {
    font-size: 1rem;
    opacity: 0;
    height: 0; /* Hidden initially */
    overflow: hidden;
    margin: 0; /* No margins */
    padding: 0; /* No padding initially to avoid affecting the title */
    transition: opacity 0.3s ease; /* Transition opacity only */
    visibility: hidden; /* Keep hidden initially */
}

/* On hover, expand the card */
.feature-card:hover {
    height: auto; /* Let the card expand naturally */
	transition: all 0.6s ease;
}

.feature-card:hover .feature-description {
    opacity: 1;
    height: auto; /* Let the height adjust to content size */
    padding: 10px 20px; /* Add padding when the description becomes visible */
    visibility: visible; /* Make the description visible */
}

.feature-card:hover .feature-title {
    display: none; /* Hide the title completely to prevent layout space issues */
}

/* Reveal cards one at a time */
.feature-card.show {
    opacity: 1;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: #ebebeb;
}

.feature-card p {
    font-size: 1rem;
    color: #ebebeb;
}

/* Styling for "More Features" link */
.more-features-link {
    display: inline-block;
    margin-top: 15px;
    color: #035e7a;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.more-features-link:hover {
    color: #636363;
}


  
#testimonials {
	background-color: #f9f9f9;
	padding-top: 60px;
	padding-bottom: 60px;
  }
  
  #testimonials h2 {
	font-size: 2em;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	letter-spacing: 0.9px;
  }
  
  .testimonial-text blockquote {
	font-size: 1.1rem;
	font-style: italic;
	color: #555;
	position: relative;
	padding-left: 20px;
	border-left: 3px solid #346981;
  }
  
  .testimonial-text blockquote footer {
	font-size: 1rem;
	color: #346981;
	margin-top: 10px;
  }
  
  .testimonial-text blockquote footer .person-title {
	font-weight: bold;
  }
  
  .testimonial-text blockquote footer .company {
	font-style: italic;
	color: #555;
  }
  
  @media (max-width: 768px) {
	#testimonials h2 {
	  font-size: 1.75rem;
	}
  
	.testimonial-text blockquote {
	  font-size: 1rem;
	}
  }
  








