@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-family: "Montserrat", sans-serif;
    --accent: #FAFAF9;
    --text: #0A0708;
    --heading: #000000;
    /* --grad: linear-gradient(90deg, #0AC1D6 68.75%, #3CF3FF 100%); */
    --grad: linear-gradient(90deg, #456467 0%, #B1C1B4 100%);
    --grad-blue: linear-gradient(107.44deg, #476589 26.71%, #9CB7CA 185.43%);
    scroll-behavior: smooth;
	--green: #456467;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-optical-sizing: auto;
    font-style: normal;
	font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background: var(--accent);
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#scroll-to-top{
	position: fixed; 
	bottom: 30px; 
	right: 30px; 
	z-index: 999; 
	display: none; 
	background:var(--grad); 
	border: none; 
	padding: 10px; 
	border-radius: 50%; 
	cursor: pointer;
	border:8px solid white;
	
}

#scroll-to-top:hover{
	background: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading);
    font-weight: 800;
}

.separator {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
    width: 90%;
    margin-inline: auto;
    height: 2px;
    opacity: .3;
}

.dark.separator {
    filter: invert(1);
}


a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.text-grad {
    background: var(--grad);
    width: fit-content;
    max-width: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-border {
    /*border: 4px solid;
    border-image-source: linear-gradient(331.81deg, rgba(153, 153, 153, 0) 11.12%, #FFFFFF 83.04%);*/
	border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(150deg, #FFFFFF, #99999900) 1;
}


section>.container {
    padding-block: clamp(2rem, calc(1.7rem + 2.8vw), 4.5rem);
}

.btn-white,
.btn-prime {
    background: var(--prime);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.btn-white {
    background: #fff;
    color: var(--prime);
    transition: all 0.3s ease-in-out;
}

.btn-outline-dark,
.btn-outline-light {
    border-radius: 0;
    font-size: 16px;
    padding: 10px 40px !important;
	background: transparent;
    transition: all 0.5s ease;
	
}
.btn-outline-dark {
    color: var(--green);
    border: 1px solid var(--green);
    letter-spacing: 1px;
}

.btn-outline-dark:hover , .btn-outline-light:hover{
    background: #456467;
    color: #fff;
}
header {
    z-index: 9999;
    position: fixed;
    top: 20px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

header nav a img {
    max-height: 30px;
    transition: all 0.3s ease-in-out;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: calc(1rem + 1vw);
    margin: 0;
    align-items: center;
}

header nav ul li {
    margin-bottom: 0;
    font-size: 16px;
    text-transform: uppercase;
}

header nav ul li a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
}

header nav ul li a:hover,
header nav ul li a.active {
    font-weight: 600;
}

header.stick {
    background: transparent;
}

header.stick nav {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.stick nav ul li a {
    color: var(--text);
}

header:not(.stick) nav a img {
    filter: brightness(0) invert(1);
}

/* Nav Toggle Button */
header .nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    position: relative;
}

header .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 8px;
    top: 19px;
    transition: all 0.3s ease;
}

header .nav-toggle span::before,
header .nav-toggle span::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

header .nav-toggle span::before {
    top: -7px;
}

header .nav-toggle span::after {
    top: 7px;
}

header.stick .nav-toggle span,
header.stick .nav-toggle span::before,
header.stick .nav-toggle span::after {
    background: var(--text);
}

/* Toggle Active State - X shape */
header .nav-toggle.active span {
    background: transparent;
}

header .nav-toggle.active span::before {
    transform: translateY(7px) rotate(45deg);
}

header .nav-toggle.active span::after {
    transform: translateY(-7px) rotate(-45deg);
}
p {
	font-size: 1rem !important;
	font-weight: 400 !important;
	    line-height: 26px;
}

/* Mobile Menu */
@media (max-width: 1023px) {
    header .nav-toggle {
        display: block;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 10px;
        width: calc(100% - 20px);
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 1rem;
        border-radius: 12px;
        display: none;
    }

    header nav ul.show {
        display: flex;
    }

    header nav ul li a {
        color: var(--text);
        padding: 0.75rem 1rem;
        display: block;
    }
}


.page-hero {
    position: relative;
    background: #000;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width:768px) {
    .page-hero {
        min-height: 400px;
    }

    .display-4 {
        font-size: calc(1.2rem + 2vw);
    }



    .btn-outline-dark,
    .btn-outline-light {
        border-radius: 0;
        font-size: 14px;
        padding: 8px 30px;
    }
}

@media (max-width:476px) {
    .footer-top .display-4 {
        font-size: calc(1.2rem + 1vw);
    }

    .page-hero {
        min-height: 300px;
    }
}



.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.page-hero .hero-breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

.page-hero .hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .hero-breadcrumb a:hover {
    color: #fff;
}

.page-hero .hero-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.page-hero .hero-breadcrumb .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    background: none;
    padding: 0;
}

dialog {
    padding: 2rem;
    margin: auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}
footer{
	background: url('../images/space-bg.webp') no-repeat center center;
	background-size: cover;
}
.footer-top {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer-logo img{
	max-width: 550px;
	margin: 0 auto;
}
.footer-logo p {
	color: rgba(35, 31, 32, 0.5);
}
.footer-menu ul li{
	position: relative;
	    padding: 0px 15px;
}
.footer-menu ul li:before{
	content: '';
    position: absolute;
    right: -30px;
    top: 7px;
    width: 10px;
    height: 10px;
    background: #1C1B1F;
    border-radius: 100px;
}
.footer-menu ul li:last-child:before{
	display: none;
}
.footer-menu ul li a{
	color: #0A0708;
	font-weight: 600;
}
.footer-contact{
	align-items: center;
	margin-top: 30px;
}
.footer-social a, .footer-social p {
	background: rgba(255,255,255,0.4);
	border-radius: 40px;
	padding: 11px 20px;
	color: rgba(35, 31, 32, 0.8);
	font-weight: 500;
	margin: 0;
}
.footer-social a img, .footer-social p img{
	width: 30px;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid rgba(0,0,0,0.1);
}

/********/
.philosophy-card p {
    max-width: 420px !important;
}
.expertise-item .expertise-desc, .approach-item p {
    font-size: 1rem !important;
    font-weight: 400 !important;
	    line-height: 26px;
}
.footer-bottom p sup{
	color: #F0681E;
	    top: -3px;
}

/* ============================================
   Animations
   ============================================ */
/* @media (prefers-reduced-motion: no-preference) {
    .animate-this.up {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-in-out;
    }

    .animate-this.up.animated {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.8s ease-in-out;
    }

    .animate-this.swipe {
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .animate-this.swipe.animated {
        opacity: 1;
        animation: text-slice-animation 1.2s ease-in-out forwards;
    }

    @keyframes text-slice-animation {
        0% {
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        }

        100% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }
} */
 @media (max-width: 1439px) {
.display-4, .display-3 , .clients-section h2{
	font-size: 3rem;
}
.footer-logo img {
    max-width: 480px;
}
.page-hero .hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
}
.footer-social{
	    gap: 0.5rem !important;
}
.footer-social a, .footer-social p {
    padding: 11px 16px;
}
}
@media (max-width: 1365px) {
.display-4, .display-3, .clients-section h2 {
	font-size: 2.5rem !important;
}
}
 @media (max-width: 1279px) {
.footer-contact{
	justify-content: center !important;
}
.footer-logo img {
        max-width: 380px;
    }
    .display-4, .display-3 , .clients-section h2 {
        font-size: 2.2rem !important;
    }
	.fs-5 {
    font-size: 1.1rem !important;
}
}
 @media (max-width: 1079px) {
.footer-menu ul li {
    padding: 0px 8px;
}
.footer-social{
	flex-wrap: wrap;
	justify-content: center;
}
}
 @media (max-width: 991px) {
	 .page-hero {
        min-height: 400px;
    }
 }
 @media (max-width: 767px) {
.display-4, .display-3, .clients-section h2 {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
header nav a img {
    max-height: 25px;
}
header nav ul {
        gap: 0.5rem;
}
    .footer-logo img {
        max-width: 330px;
		        margin-bottom: 15px !important;
    }
	footer{
		text-align: center;
	}
.footer-menu ul{ gap: 10px !important; flex-wrap: wrap; }
.footer-menu ul li {
        padding: 0px 3px;
    }
.footer-menu ul li:before { display: none; }
.footer-logo p {
    margin: 0;
}
.footer-contact {
    margin-top: 15px;
}
.footer-social {
        gap: 10px !important;
    }
.footer-social a, .footer-social p {
    padding: 8px 15px;
}
.footer-top .container {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
#scroll-to-top {
    bottom: 15px;
    right: 15px;
    padding: 6px;
    border: 6px solid white;
}
.page-hero {
        min-height: 300px;
    }

	.page-hero .hero-title {
        font-size: clamp(2rem, 4vw, 4rem);    margin-bottom: 5px;
    }
}
 @media (max-width: 576px) {
	header.stick nav {
    width: 94%;
	}
	section>.container{
		padding-inline: 1rem;
	}
}
 @media (max-width: 479px) {
    .display-4, .display-3 , .clients-section h2 {
        font-size: 1.6rem !important;
    }
	.footer-logo img {
        max-width: 260px;
	}
	 header nav a img {
        max-height: 19px;
    }
	
	
	}