body
{
	padding: 0;
	margin: 0;
	font-family: Inter, sans-serif; 
}
.main-container
{
	display: flex;
	height: 976px;
	padding: 320px 80px 0 80px;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
}
.header
{
	display: grid;
	grid-template-columns: 1fr auto 1fr;
    align-items: center;
	justify-content: space-between;
	align-items: center;
	padding: 32px 80px;
}
.app-logo
{
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	gap: 12px;
	justify-self: start;
}
.menu
{
	display: flex;
	width: auto;
	align-items: center;
	gap: 2px;
	justify-self: center;
}
.menu-item
{
	display: flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border-radius: 8px;
	font-family: Inter, sans-serif; 
	font-size: 16px;
	color: #111;
	text-decoration: none;
}
.menu-item-active
{
	background: rgba(28, 34, 37, 0.10);
	font-weight: 600;
}
.menu-item:hover
{
	background: #ddd;
}
.button
{
	width: auto;
	justify-self: end;
	height: 48px;
	padding: 0 24px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	background: var(--Black-Black, #1C2225);
	border: 0;
	color: #FEFDFD;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 160%; /* 25.6px */
	letter-spacing: 0.64px;
	text-transform: uppercase;
}
.button:hover
{
	opacity: 90%;
}
.banner
{
	width: 100%;
	padding: 0;
	height: 800px;
	background-image: url("../images/bg-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	min-height: 600px;
}
.about-banner
{
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	background: none;
}
.hero {
	display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center;     /* Vertical center */
	text-align: center;
    color: #111;
	min-height: 600px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    color: var(--Black-Black, #1C2225);
	text-align: center;
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	line-height: 150%; /* 70.4px */
	letter-spacing: 2.64px;
}

.hero p {
    color: #666;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	line-height: 150%; /* 27px */
	letter-spacing: 0.72px;
}
.testimonial-container
{
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
	flex-direction: row;
	margin-top: 40px;
}
.button-primary, .button-secondary
{
	
	height: 60px;
	padding: 0 24px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	background: var(--Main-Yellow, #F9CE43);
	box-shadow: 0 1px 4px 0 rgba(84, 64, 0, 0.25);
	color: #111;
}
.button-secondary
{
	border: 2px solid var(--Black-Black, #1C2225);
	background: var(--White-Soft, #FEFDFD);
	box-shadow: 0 1px 4px 0 rgba(84, 64, 0, 0.25);
}
.button-secondary-s
{
	height: 48px;
}
.client-logo
{
	display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center;     /* Vertical center */
}
.video-container
{
	float: left;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}
.video-container video
{
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.services, .stats
{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 150px 0;
	height: 800px;
	background-image: url("../images/bg-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	min-height: 600px;
	align-items: center;
	justify-content: center;
}
.usps
{
	background: #fff;
}
.vision
{
	background-color: #F5F5F7;
	background-image: url("../images/bg-vision.svg");
}
.stats
{
	background-image: url("../images/bg-stats.png");
}
.heading {
	width: 100%;
    color: var(--Black-Black, #1C2225);
	text-align: center;
	justify-content: center;
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 2.64px;
}
.tag-container
{
	display: flex;
	width: 100%;
    justify-content: center; /* Horizontal center */
    align-items: center;
	
}
.vision-card .tag-container
{
	justify-content: left; /* Horizontal center */
    align-items: left;
	gap: 8px;
}
.tag
{
	background: #fff;
	gap: 8px;
	padding: 8px 16px;
	width: auto;
	border-radius: 32px;
	border: 1.5px solid var(--Black-Black, #1C2225);
	box-shadow: 0 1px 4px 0 rgba(84, 64, 0, 0.25);
	margin-bottom: 16px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}
.service-container, .vision-container
{
	display: flex;
    gap: 16px;
	margin-top: 40px;
}
.vision-container
{
	gap: 32px;
}
.service-card
{
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 8px;
	width: 252px;
	padding: 24px;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	background: #ffffff;	
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card h3 {
	text-align: left;
    font-size: 21px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    margin-bottom: 24px;
}
.service-card p {
	text-align: left;
    font-size: 16px;
    line-height: 150%;
    color: #555;
}
.service-icon {
	width: 300px;
    height: 80px;
}
.service-card img
{
	float: left;
	width: 80px;
}
.vision p {
    color: #666;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	letter-spacing: 0.72px;
	font-weight: 400;
}
.vision-card
{
    flex: 1;
    text-align: left;
    border-radius: 8px;
	width: 405px;
	justify-content: left;
	align-items: flex-start;
	gap: 16px;	
}
.vision-icon {
	width: 405px;
    height: 250px;
}
.vision-card img
{
	float: left;
	height: 250px;
}
.text-container
{
	float: left;
	margin-top: 24px;
	
}

.vision-card h3
{
	color: var(--Black-Black, #1C2225);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 26px */
	padding: 0;
	margin: 0;
}

.vision-card p, .stats p
{
	text-align: center;
	color: var(--Black-Black, #333);
	font-size: 14px;
	font-style: normal;
	line-height: 130%; /* 18.2px */
	letter-spacing: 0.28px;
	font-weight: 400;
	color: #555;
}

.tag-vision
{
	flex: 0 0 auto;
	padding: 2px 8px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 4px;
	border: 1.25px solid #999;
	background: #FFF;
	font-size: 12px;
	text-transform: uppercase;
	color: #555;
}
.vision-card .button-container
{
	display: flex;
    align-items: flex-start; 
	justify-content: flex-start;
	gap: 16px;
	padding-top: 12px;
}
.button-container
{
	display: flex;
	gap: 16px;
	justify-content: center;
}
.stats-section
{
	display: flex;
	width: 300px;
	padding: 24px;
	align-items: center;
	gap: 40px;
	border-radius: 32px;
	border: 1px solid var(--Black-Grey, #DDDDDE);
	background: var(--White-Soft, #FEFDFD);
	grid-column: span 2;
}
.stats-section:nth-child(4) {
    grid-column: 2 / span 2;
}

.stats-section:nth-child(5) {
    grid-column: 4 / span 2;
}
.stats-section h4
{
	color: var(--Black-Black, #1C2225);
	text-align: left;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 52px */
	text-transform: uppercase;
	padding: 0;
	margin: 0;
}
.stats-section p
{
	color: #555;
	text-align: center;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%; /* 19.5px */
	letter-spacing: 0.3px;
	padding: 0;
	margin: 0;
}
.stats-row
{
	display: flex;
	float: left;
    gap: 20px;   
}
.stats-container
{
	display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1400px;
}
.testimonial-card
{
	display: flex;
	width: 376px;
	padding: 48px 24px;
	flex-direction: column;	
	justify-content: center;
	align-items: center;
	gap: 32px;
	border-radius: 16px;
	border: 1px solid var(--Black-Grey, #DDDDDE);
	background: #FFF;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}
.review
{
	color: var(--Black-Black, #1C2225);
	text-align: center;
	font-family: "Libre Baskerville", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 33.6px */
	letter-spacing: 0.63px;
	padding: 32px;
}
.line
{
	width: 328px;
	height: 2px;
	background: linear-gradient(90deg, #FFF 0%, #B4B4B4 50.48%, #FFF 100%);
}
.reviewer
{
	color: var(--Black-Black, #1C2225);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 27px */
	letter-spacing: 0.72px;
	text-transform: uppercase;
}
.reviewer-container
{
	display: flex;
    justify-content:center;
    align-items:center;
	flex-direction: column;
    gap: 16px;
}
.reviewer-designation
{
	color: #666;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 200;
	line-height: 150%; /* 24px */
	letter-spacing: 0.64px;
}
.text-container p
{
	text-align: left;
}
.social-media {
	display: flex;
	padding: var(--Spacing-L, 24px) var(--Spacing-S, 16px);
	flex-direction: column;
	align-items: center;
	gap: var(--Spacing-XXS, 8px);
	flex: 1 0 0;
	border-radius: var(--Spacing-XXS, 8px);
	border: 1px solid var(--Supporting-Gainsboro, #DDD);
	background: linear-gradient(0deg, #FFF 0%, #FFF 100%), var(--Essential-White-Color, #FFF);
	width: 144px;
	height: 78px;
	text-decoration: none;
	overflow: hidden;
	color: var(--Essential-Black-Color, #111);
	text-overflow: ellipsis;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px; /* 142.857% */
	letter-spacing: 0.1px;
}
.social-media:hover
{
	opacity: 0.9;
	background: #eee;
}
.footer
{
	display: flex;
	width: 1320px;
	padding: 32px 80px;
	justify-content: space-between;
	align-items: center;
	color: var(--Black-Black, #1C2225);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 25.6px */
	letter-spacing: 0.32px;
}

.banner-inner
{
	background: #F3F7F5;
	display: flex;
	padding: 60px 196px 60px 196px;
	border-radius: 16px;
	align-items: center;
	place-items: center;
	flex-direction: column;
}
.banner-inner img
{
	align-items: center;
}
.about-text
{
	display: flex;
	margin-top: 24px;
}
.about-text h1, p
{
	margin: 0;
	padding: 0;
}
.about-text h1
{
	font-size: 56px;
}
.about-text p
{
	color: #666;
}
.about-founder
{
	display: flex;
	padding: 40px 80px 16px 80px;
	flex-direction: row;
	align-items: flex-start;
	gap: 48px;
	align-self: stretch;
}
.about-founder .inner
{
	display: flex;
	align-items: left;
	gap: 48px;
	align-self: stretch;

}
.founder-image
{
	width: 320px;
	height: 316px;
	flex-shrink: 0;
	aspect-ratio: 80/83;
	background: url("../images/founder.png") no-repeat, bottom;
	border-radius: 8px;
}
.founder
{
	display: flex;
	align-items: left;
	gap: 48px;
	align-self: stretch;
}
.founder-info
{
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: flex-start;
	gap: 40px;
	flex: 1 0 0;
}
.info-inner
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}
.info-inner h2
{
	align-self: stretch;
	color: var(--Black-Black, #1C2225);
	font-size: 64px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 96px */
	padding: 0;
	margin: 0;
}
.info-inner p
{
	align-self: stretch;
	color: var(--Main-Navy-Blue, #183787);
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 42px */
	letter-spacing: 0.28px;
	opacity: 0.8;
}
.info-inner .highlight
{
	width: 110px;
	height: 4px;
	background: #183787;
	border-radius: 4px;
	opacity: 0.8;
}
.experience
{
	display: flex;
	align-items: center;
	gap: 24px;
	align-self: stretch;
}
.badge
{
	display: flex;
	align-items: center;
	gap: 16px;
	border-right: 1px solid #ccc;
}
.badge-image
{
	display: flex;
	width: 96px;
	height: 96px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	aspect-ratio: 1/1;
	border-radius: 48px;
	background: var(--Main-Navy-Blue, #183787);
}
.experience-text
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	display: flex;
	width: 200px;
	height: 56px;
	flex-direction: column;
	justify-content: center;
	gap: -16px;
}
.experience-text p
{
	color: var(--Black-Black, #1C2225);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
	letter-spacing: 0.8px;
}
.experience-text h3
{
	color: var(--Main-Navy-Blue, #183787);
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 72px */
	letter-spacing: 1.92px;
	margin: 0;
	padding: 0;
}
.founder-writeup
{
	color: var(--Black-Black, #1C2225);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: 0.72px;
	width: 500px;
	padding-left: 16px;
}
.divider
{
	display: flex;
	padding: 24px 80px;
}
.divider .line
{
	height: 1px;
	background: #ddd;
	width: 1320px;
}
.about-pointers
{
	display: flex;
	align-self: stretch;
	align-items: flex-start;
	flex: 1 0 0;
	padding: 0 80px;
	color: var(--Main-Navy-Blue, #183787);
	gap: 40px;
}
.about-pointers .pointer
{
	display: flex;
	width: 330px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	flex: 1 0 0;
	color: #555;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: 0.72px;
	padding-right: 40px;
	border-right: 1px solid #ddd;
}
.about-pointers .heading
{
	display: flex;
	color: var(--Main-Navy-Blue, #183787);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 33px */
	letter-spacing: 0.88px;
	text-transform: uppercase;
	justify-content: flex-start;
	line-height: 380%;
	gap: 12px;
}
.about-pointers .noborder
{
	border: 0;
	border-right: none;
}
.about-pointers .pointer ul
{
	padding: 0;
	margin: 0;
	margin-left: 16px;
}
.pointer .count
{
	color: var(--Main-Navy-Blue, #183787);
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 72px */
	letter-spacing: 1.92px;
}
.keypeople
{
	display: flex;
	padding: 24px 24px 24px 24px;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 1 0 0;
	border-radius: 32px;
	background: rgba(221, 221, 222, 0.20);
	color: #555;
	font-size: 16px;
	line-height: 150%;
}
.kp-name
{
	align-self: stretch;
	color: var(--Black-Black, #1C2225);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 48px */
	letter-spacing: 0.64px;
	padding-top: 16px;
}
.kp-text
{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	width: 100%;
	gap: 8px;
}
.kp-container
{
	margin: 24px 0;
}
.contact-card-container
{
	background: #E3F3FF;
	width: 100%;
	border-radius: 0;
}
.contact-card-container p
{
	color: rgba(28, 34, 37, 0.60);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%; /* 36px */
	letter-spacing: 0.96px;
}
.contact-card
{
	display: flex;
	width: 300px;
	height: 302px;
	padding: 32px 24px;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
	gap: 24px;
	border-radius: 16px;
	background: var(--White-Soft, #FEFDFD);
}
.contact-card img
{
	display: flex;
	width: 80px;
	height: 80px;
	align-items: flex-start;
	gap: 8px;
}
.contact-card .text
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}
.contact-card .contact-heading
{
	color: var(--Black-Black, #1C2225);
	font-size: 21px;
	font-weight: 600;
	line-height: 160%; /* 33.6px */
	letter-spacing: 0.42px;
}
.contact-card .text
{
	align-self: stretch;
	color: #555;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 21px */
	text-align: left;
}
.contact-card .text-link
{
	text-decoration: underline;
	color: #333;
}
.contact-card b
{
	color: #111;
	padding-top: 10px;
}
.container-box
{
	display: flex;
	gap: 16px;
	align-items: center;
	flex-direction: row;
	justify-content: center;
}
.social-media-contact
{
	height: 500px;
	padding: 0;
	min-height: 500px;;
}
.height500
{
	height: 500px;
}

.clients {
    display: grid;
	padding: 0 60px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-items: center;
    justify-items: center;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    text-decoration: none;
}

.client img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;

    /* Black & White */
    filter: grayscale(100%) brightness(1);
    opacity: .75;

    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;
}

.client:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.vision-text
{
	display: flex;
	flex-direction: column;
	gap: 8px;
}