/* Hero Section */
.new-hero {
min-height: 100vh;
background: url('../njs-bg.png') no-repeat center center;
background-size: cover;
position: relative;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
padding: 180px 80px 60px;
}
.new-hero .hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:]
linear-gradient(180deg,
rgba(26, 26, 26, 0) 0%,
rgba(26, 26, 26, 0.88) 50.68%,
#1A1A1A 84.43%,
rgba(26, 26, 26, 0.98) 100%);
z-index: 1;
}
.new-hero .hero-content {
position: relative;
z-index: 2;
max-width: 1170px;
margin: 0;
text-align: center;
}
.new-hero  .hero-meta {
text-align: center;
margin-bottom: 2rem;
}
.new-hero .hero-category {
font-size: 24px;
color: #fff;
margin-bottom: 1rem;
font-weight: 500;
max-width: 1170px;
line-height: 40px;
}
.new-hero h1 {
font-size: 64px;
font-weight: 700;
line-height: 80px;
margin-bottom: 4rem;
max-width: 1170px;
color: #fff;
}
.new-hero .hero-details {
display: grid;
grid-template-columns: repeat(3, minmax(200px, 1fr));
gap: 10px;
max-width: 900px;
margin: 0 auto;
background: #1A1A1A66;
padding: 10px;
}
.detail-item {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.detail-item .label {
font-size: 1rem;
color: rgba(255, 255, 255, 0.7);
text-transform: none;
letter-spacing: normal;
}
.detail-item .value {
font-size: 1.25rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.95);
}
.new-hero .hero-details .detail-item {
position: relative;
}
.hero-details .detail-item:nth-child(1)::after {
content: '';
position: absolute;
top: 0;
right: -10px;
width: 0.5px;
height: 100%;
background-color: #C6C6C6;
}
.hero-details .detail-item:nth-child(2)::after {
content: '';
position: absolute;
top: 0;
right: -10px;
width: 0.5px;
height: 100%;
background-color: #C6C6C6;
}
/* Client Section */
.client-section {
margin-top: 150px;
text-align: left;
max-width: 1170px;
margin-left: auto;
margin-right: auto;
}
.client-content {
display: flex;
gap: 40px;
align-items: center;
}
.client-logo {
flex: 0 0 auto;
width: 350px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
}
.client-logo img {
width: 200px;
height: 200px;
object-fit: contain;
}
.client-info {
flex: 1;
}
.client-info h2 {
font-size: 32px;
font-weight: 600;
margin-bottom: 20px;
color: #fff;
}
.client-info p {
font-size: 18px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.9);
}
/* Services Section */
.services {
padding: 100px 0;
background-color: var(--light-bg);
}
.services h2 {
text-align: center;
margin-bottom: 60px;
font-size: 2.5rem;
font-weight: 700;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
}
.service-card {
background: var(--white);
padding: 2.5rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: var(--transition);
}
.service-card:hover {
transform: translateY(-10px);
}
.service-icon {
width: 80px;
height: 80px;
background-color: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}
.service-icon i {
font-size: 2.5rem;
color: var(--primary-color);
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-color);
}
.service-card p {
color: var(--gray);
font-size: 1.1rem;
}
/* About Section */
.about {
padding: 100px 0;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.about-text {
padding-right: 2rem;
}
.about h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
}
.about p {
font-size: 1.2rem;
color: var(--gray);
margin-bottom: 2rem;
line-height: 1.8;
}
.about-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Contact Section */
.contact {
padding: 100px 0;
background-color: var(--light-bg);
}
.contact h2 {
text-align: center;
margin-bottom: 60px;
font-size: 2.5rem;
font-weight: 700;
}
.contact-form {
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-form input,
.contact-form textarea {
padding: 1rem;
border: 1px solid #e5e7eb;
border-radius: 8px;
font-size: 1.1rem;
transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.contact-form textarea {
min-height: 150px;
resize: vertical;
}
/* Footer */
.footer {
background-color: var(--text-color);
color: var(--white);
padding: 60px 0 20px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-section h3 {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}
.footer-section p {
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.social-links {
display: flex;
gap: 1.5rem;
}
.social-links a {
color: var(--white);
font-size: 1.5rem;
transition: var(--transition);
}
.social-links a:hover {
color: var(--primary-color);
transform: translateY(-3px);
}
.copyright {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.7);
}
/* Responsive Design */
@media (max-width: 1024px) {
.new-hero {
padding: 160px 60px 60px;
}
.new-hero h1 {
font-size: 3.25rem;
}
}
@media (max-width: 768px) {
.new-hero {
padding: 140px 40px 40px;
}
.new-hero h1 {
margin-bottom: 3rem;
}
.new-hero .hero-details {
grid-template-columns: 1fr;
gap: 10px;
}
.new-hero .hero-details .detail-item:nth-child(1)::after,
.new-hero .hero-details .detail-item:nth-child(2)::after {
display: none;
}
.new-hero .hero-details .detail-item:nth-child(1),
.new-hero .hero-details .detail-item:nth-child(2) {
border-bottom: 0.5px solid #C6C6C6;
padding-bottom: 20px;
}
.hero-category {
font-size: 1.1rem;
}
.client-section {
margin-top: 100px;
}
.client-content {
flex-direction: column;
gap: 30px;
align-items: center;
text-align: center;
}
.client-logo {
width: 250px;
height: 150px;
}
.client-info h2 {
font-size: 28px;
}
.client-info p {
font-size: 16px;
}
.problem-section-wrapper {
padding: 20px 0 !important;
}
.problem-content h2 {
font-size: 28px;
text-align: center;
}
.problem-text {
gap: 20px;
padding: 20px;
}
.problem-text p {
font-size: 16px;
text-align: center;
}
.solution-section {
padding: 80px 0;
}
.solution-content h2 {
font-size: 28px;
margin-bottom: 40px;
}
}
@media (max-width: 480px) {
.hero {
padding: 120px 20px 40px;
}
.hero h1 {
font-size: 2.25rem;
}
.new-hero .hero-details {
grid-template-columns: 1fr;
gap: 10px;
}
.new-hero .hero-category {
font-size: 1rem;
}
.service-card {
padding: 2rem;
}
.client-logo {
width: 200px;
height: 120px;
}
.problem-section {
margin-top: 50px;
}
.problem-content {
gap: 24px;
}
.solution-section {
padding: 30px 0;
}
.solution-content h2 {
font-size: 24px;
margin-bottom: 30px;
}
}
/* Problem Section */
.problem-section-wrapper {
background: #1A1A1A;
z-index: 1;
padding: 100px 0;
}
.problem-section {
text-align: left;
max-width: 1170px;
margin-left: auto;
margin-right: auto;
}
.problem-content {
display: flex;
flex-direction: column;
gap: 30px;
padding:20px;
}
.problem-content h2 {
font-size: 32px;
font-weight: 600;
color: #fff;
}
.problem-text {
display: flex;
flex-direction: column;
gap: 24px;
}
.problem-text p {
font-size: 18px;
line-height: 1.6;
color: #fff;
}
.problem-text ul {
display: inline-block;
text-align: left;
margin: 0 auto;
padding-left: 1.5rem;
list-style-type: disc;
color: #fff;
}
.highlight {
color: #1A1A1A;
background-color: #FFE16B;
border-radius: 1px;
font-weight: 500;
}
/* Solution Section */
.solution-section {
padding: 0 0 100px;
background: #1A1A1A;
}
.solution-content {
max-width: 1170px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.solution-content h2 {
font-size: 32px;
font-weight: 600;
color: #fff;
margin-bottom: 60px;
margin-top: 0;
}
.solution-image-wrapper {
position: relative;
max-width: 1170px;
margin: 0 auto;
}
.solution-image {
position: relative;
overflow: hidden;
}
.solution-image .main-solution-image {
max-width: 700px;
margin: 0 auto;
}
.solution-image img {
width: 70%;
height: auto;
display: block;
}
/* Icon styling */
.solution-image .top-right-icon,
.solution-image .bottom-left-icon {
position: absolute;
width: 80px;
height: auto;
z-index: 2;
}
.solution-image .top-right-icon {
top: 10px;
right: 10px;
}
.solution-image .bottom-left-icon {
bottom: 10px;
left: 10px;
}
@media (max-width: 768px) {
.solution-section {
padding: 80px 0;
}
.solution-content h2 {
font-size: 28px;
margin-bottom: 40px;
}
.problem-text ul {
padding-left: 1.25rem;
}
.solution-image .main-solution-image {
max-width: 600px;
margin: 0 auto;
}
.solution-image .top-right-icon,
.solution-image .bottom-left-icon {
width: 45px;
}
}
@media (max-width: 480px) {
.solution-section {
padding: 0 0 60px;
}
.solution-content h2 {
font-size: 24px;
margin-bottom: 30px;
}
.solution-image .main-solution-image {
max-width: 300px;
margin: 0 auto;
}
.solution-image .top-right-icon,
.solution-image .bottom-left-icon {
width: 24px;
}
}
/* Process Cards Section */
.process-cards {
position: relative;
background:
linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
url('../black-pattern-bg.png') no-repeat center center;
background-size: cover;
padding: 40px 20px;
}
.process-cards .cards-container {
max-width: 1170px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 10px;
}
.process-cards .main-heading {
font-family: 'IBM Plex Sans';
font-weight: 500;
font-size: 24px;
line-height: 40px;
text-align: center;
padding: 0 0 40px;
color: #fff;
}
.process-cards .process-card {
display: flex;
align-items: stretch;
gap: 0;
background: #333333;
padding: 0;
border-radius: 2px;
}
.process-cards .card-icon {
flex-shrink: 0;
width: 150px;
height: auto;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.process-cards .card-separator {
width: 1px;
background-color: #686868;
}
.process-cards .card-icon img {
width: 48px;
height: 48px;
object-fit: contain;
}
.process-cards .card-content {
flex: 1;
padding: 30px;
}
.process-cards .card-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.process-cards .card-number {
font-family: 'IBM Plex Sans';
font-weight: 500;
font-size: 24px;
line-height: 40px;
color: white;
}
.process-cards .card-header h3 {
font-family: 'IBM Plex Sans';
font-weight: 500;
font-size: 32px;
line-height: 48px;
color: white;
margin: 0;
}
.process-card p {
font-family: 'IBM Plex Sans';
font-weight: 500;
font-size: 24px;
line-height: 40px;
color: #C6C6C6;
margin: 0 0 0 40px;
}
/* Responsive adjustments for process cards */
@media (max-width: 768px) {
.process-cards {
padding: 60px 20px;
}
.process-cards .card-icon {
width: 70px;
}
.process-cards .card-icon img {
width: 40px;
height: 40px;
}
.process-cards .card-header {
flex-direction: row;
align-items: center;
}
.process-card p{
margin: 0 0 0 30px
}
}
@media (max-width: 480px) {
.process-cards {
padding: 40px 15px;
}
.process-card {
padding: 20px;
}
.process-cards .card-icon {
width: 70px;
}
.process-cards .card-icon img {
width: 36px;
height: 36px;
}
}
/* Impact Section */
.impact-section {
padding: 80px 0;
color: white;
}
.impact-container {
max-width: 1170px;
margin: 0 auto;
text-align: center;
background: #333333;
}
.impact-container h2 {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 32px;
font-weight: 600;
padding: 40px 0 10px;
color: #fff;
}
.impact-subheading {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 18px;
color: #fff;
margin-bottom: 40px;
padding: 0 10px;
}
.impact-metrics {
display: flex;
justify-content: space-around;
gap: 20px;
padding: 20px;
margin-bottom: 60px;
}
.impact-section .metric-item {
display: flex;
flex-direction: column;
gap: 10px;
position: relative;
flex: 1;
}
.impact-section .metric-item:not(:last-child)::after {
content: '';
position: absolute;
right: -15px;
top: 0;
height: 100%;
width: 1px;
background-color: rgba(255, 255, 255, 0.15);
}
.metric-value {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 32px;
font-weight: 500;
color: #FFE16B;
line-height: 48px;
}
.metric-description {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 18px;
line-height: 28px;
color: #fff;
}
hr.testimonial-separator {
border-bottom: 1px solid #686868;
}
.testimonial {
padding: 40px;
border-radius: 8px;
position: relative;
text-align: center;
margin-top: 40px;
}
.quote-icon {
position: absolute;
font-size: 72px;
color: #767676;
font-family: serif;
line-height: 1;
}
.quote-icon img {
width: 36px;
height: 36px;
}
.start-quote {
top: 25px;
left: 20px;
}
.end-quote {
bottom: 20px;
right: 20px;
}
.quote-text {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 24px;
font-weight: 500;
line-height: 1.6;
margin-bottom: 30px;
font-style: normal;
color: white;
max-width: 900px;
margin-left: auto;
margin-right: auto;
border: none;
}
.author-info {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.author-image {
width: 60px;
height: 60px;
object-fit: cover;
}
.author-details {
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
}
.author-name {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 18px;
font-weight: 500;
color: white;
}
.author-title {
font-family: 'IBM Plex Sans', sans-serif;
font-size: 14px;
color: #9F9F9F;
}
/* Responsive adjustments for impact section */
@media (max-width: 768px) {
.impact-section {
padding: 60px 20px;
}
.impact-section .impact-metrics {
flex-direction: column;
gap: 40px;
}
.impact-section .metric-item:not(:last-child)::after {
right: 0;
top: auto;
bottom: -20px;
/* Half of the gap between items */
width: 100%;
height: 1px;
}
.impact-section .metric-item {
padding-bottom: 20px;
/* Add some space for the separator */
}
.impact-section .metric-item:last-child {
padding-bottom: 0;
}
.quote-text {
font-size: 20px;
}
.quote-icon {
font-size: 60px;
}
.quote-icon img {
width: 20px;
height: 20px;
}
.start-quote {
top: 25px;
left: 15px;
}
.end-quote {
bottom: 15px;
right: 15px;
}
}
@media (max-width: 480px) {
.impact-section {
padding: 40px 0;
}
.impact-container h2 {
font-size: 28px;
}
.impact-subheading {
font-size: 16px;
}
.metric-value {
font-size: 24px;
}
.metric-description {
font-size: 13px;
}
.testimonial {
padding: 30px;
}
.quote-text {
font-size: 18px;
}
.author-info {
flex-direction: column;
gap: 10px;
}
.author-details {
align-items: center;
text-align: center;
}
.author-name {
font-size: 16px;
}
.author-title {
font-size: 13px;
}
.quote-icon {
font-size: 48px;
}
.start-quote {
top: 20px;
left: 10px;
}
.end-quote {
bottom: 10px;
right: 10px;
}
}
/* Features Section */
.features-section {
padding: 80px 0;
background-color: #ffffff;
}
.features-section h3 {
font-size: 32px;
margin-bottom: 5rem;
}
.features-section .subtitle {
color: #666;
margin-bottom: 50px !important;
}
.features-row {
background-color: #F6F6F6;
padding: 20px;
border-radius: 2px;
}
.feature-item {
position: relative;
padding: 0;
}
.feature-item:not(:last-child)::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
height: 80%;
width: 2px;
background-color: #000000;
opacity: 0.2;
}
.feature-item img {
width: 60px;
height: 60px;
margin-bottom: 20px;
}
.feature-item h4 {
font-size: 18px;
/* margin-top: 15px; */
/* padding: 0 25px; */
}
/* Responsive Styles */
@media (max-width: 768px) {
.info-banner {
margin-top: -70px; /* Adjusted for 50% overlap on mobile */
}
.feature-item:not(:last-child)::after {
display: none; /* Hide vertical lines on mobile */
}
.features-section {
margin-top: 40px;
}
}
.text-center {
text-align: center;
}
.feature-subtext{
max-width: 800px;
margin: auto;
}
.feature-bordered {
position: relative;
}
.feature-bordered::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
height: 100%;
width: 1px;
background-color: #E5E5E5;
}
@media (max-width: 767.98px) {
.feature-bordered::after {
display: none;
}
.cloud-card-content{
padding:20px;
}
}
/* cloud card section*/
.cloud-container {
margin-top: 50px;
}
.cloud-card {
background-color: #333;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.cloud-card img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
.cloud-card-text {
margin-top: 20px;
}
.cloud-text-center {
text-align: center;
}
/* Flex layout for medium and up */
@media (min-width: 768px) {
.cloud-card .cloud-flex-row {
display: flex;
align-items: center;
}
.cloud-card .cloud-flex-row > div {
flex: 1;
}
.cloud-card .cloud-flex-row .cloud-card-content {
padding: 20px;
}
.cloud-card-content h3{
margin-bottom:0;
}
.carousel-container {
        margin-top: 8rem;
}
}
.cloud-card-section{
position: relative;
background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../black-pattern-bg.png) no-repeat center center;
background-size: cover;
padding: 8rem 0;
}
.cloud-card-section h3,
.cloud-card-section p {
color: white !important;
}
.carousel-container .results-header h2 , .features-section h3 {
font-weight: 600 !important;
}
.transformative-results {
margin: 0px auto auto !important;
}
.common-section-content h1, .common-section-content h3, .common-section-content p {
   color: white !important;
   }
   .category-slide {
    background: #12B76A !important;
   }