/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/*--------------------------------------------------------------
# Color Style
--------------------------------------------------------------*/

:root
{
	--red-color: 	#FF0000;
	--gold-color:  	#a67c00;
	--black-color: 	#000000;
	--white-color: 	#FFFFFF;
	--accent-color: #2bc4b6;
	--dark-blue: 	#0d1220;
}

/*--------------------------------------------------------------
# File Pagination - No SQL
--------------------------------------------------------------*/

.pagination-container
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 20px;
	width: 100%;
	padding: 0 5px;
}

.pagination-left,
.pagination-right
{
	display: flex;
	align-items: center;
	gap: 10px;
}

.button-group
{
	display: inline-flex;
	background-color: var(--dark-blue);
	border-radius: 7px; /* Was 20px*/
	overflow: hidden;
}

.action-button
{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 80px;
	height: 36px;
	padding: 0 12px;
	background: none;
	border: none;
	color: var(--accent-color);
	cursor: pointer;
	font-family: sans-serif;
	font-size: 14px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.action-button:hover,
.action-button.active
{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.action-button:disabled
{
	background-color: #404040;
	color: #212121;
	cursor: not-allowed;
}

.action-button:not(:last-child)::after
{
	content: "";
	position: absolute;
	right: 0;
	top: 8px;
	width: 1px;
	height: 20px;
	background-color: #444;
}

.action-button-icon svg
{
	display: block;
}

.action-button-text
{
	display: inline-block;
	line-height: 1;
}

@media (max-width: 768px)
{	  
	.pagination-left,
	.pagination-right
	{
		gap: 5px;
	}
	
	.action-button
	{
		gap: 2px;
		min-width: 70px;
		height: 36px;
		padding: 0 6px;
	}
  
	.mobile-hide
	{
		display: none;
	}
}

/*--------------------------------------------------------------
# Global Style
--------------------------------------------------------------*/

body
{
	font-family: var(--default-font);
}

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

.heading
{
	margin: 25px 0 0 0;
}

section
{
	padding: 45px 0;
}

.text-danger
{
	color: var(--gold-color) !important;
}

/*--------------------------------------------------------------
# Navigation Style
--------------------------------------------------------------*/

.navbar
{
	background: var(--dark-blue);
	
	/*background: rgba(13, 18, 32, 0.8);	
	backdrop-filter: blur(20px);*/
	
	transition: all 0.4s ease-in-out;
	padding: 1rem 0; /* Initial padding */
	top: 0px;	
}

.nav-item .nav-link
{
	text-transform: uppercase;
	margin: 0 10px;
	padding: 8px 8px;
	font-size: 14px;
    font-family: var(--nav-font);
	outline:none;
	transition: all 0.3s ease-in-out;
	border-radius: 12px;
}

.nav-item .nav-link:hover,
.nav-item .nav-link:active
{
	background: var(--accent-color);
	color: #000000;
	outline:none;
}

.navbar-brand img {
    max-width: 80px; 
    height: auto;
}

/* Overlapping Logo logic for Desktop */
@media (min-width: 992px) {
	.navbar {
		position: fixed;
		top: 12px; /* the nav bar pushed down to allow logo to be centered */
		width: 100%;
		z-index: 1030;		
	}

	.navbar-brand img {
		height: 120px; /* Large "Break-out" size */
		max-width: 120px; 
		width: auto;
		transition: all 0.4s ease-in-out;
		position: absolute;
		top: -30px; /* Adjust this to make it overlap top/bottom */
		z-index: 1040;
	}

	/* State when scrolled */
	.navbar.scrolled {
		top: 0px;
		box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	}

	.navbar.scrolled .navbar-brand img {
		height: 60px; /* Shrinks to fit inside nav */
		top: -10px; /*Aligns back into the center of the bar */
	}
	
	/* Push nav links over so they don't hit the absolute logo */
	.navbar-collapse {
		margin-left: 140px; /* Space for the large logo */
		transition: margin 0.4s ease-in-out;
	}
	
	.navbar.scrolled .navbar-collapse {
		margin-left: 80px; 
	}
}

section > :first-child {
    margin-top: 50px;
}

/* Container for the text */
.brand-text-container {
    transition: all 0.4s ease-in-out;
    line-height: 1.2;

}

/* The Main Title */
.brand-name {
    font-size: 1.5rem; /* Large on desktop initially */
    font-weight: 700;
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}

/* The Slogan */
.brand-slogan {
    font-size: 0.85rem;
    color: var(--accent-color) !important; /* Or whatever your secondary color is */
    transition: all 0.4s ease-in-out;
}

/* SCROLLED STATE: Shrink the text when the navbar shrinks */
.navbar.scrolled .brand-name {
    font-size: 1.1rem;
}

.navbar.scrolled .brand-slogan {
    font-size: 0.7rem;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .brand-name {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px)
{
    .navbar-brand
	{
        display: flex !important;
        align-items: center;
        /* Reduce min-width for tablets, increase for large desktops */
        min-width: 300px; 
        position: relative;
    }

    /* Extra large screens can have the wider brand area */
    @media (min-width: 1200px) {
        .navbar-brand {
            min-width: 450px;
        }
    }

    .brand-text-container {
        margin-left: 130px !important; 
        transition: all 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 1041;
    }

    /* Scrolled state for both tablet and desktop */
    .navbar.scrolled .brand-text-container {
        margin-left: 70px !important; 
    }
}

/* Tighten up Nav Link spacing on Tablet specifically */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-item .nav-link {
        margin: 0 2px; /* Reduce from 10px */
        font-size: 12px; /* Slightly smaller text for tablet */
        padding: 8px 2px;
    }
    
    .navbar-collapse {
        margin-left: 80px !important; /* Pull the menu closer to the logo area */
    }
	
	.brand-name {
        font-size: 1.0rem;
    }
}

/*--------------------------------------------------------------
# Carousel Hero
--------------------------------------------------------------*/

.carousel-item img
{
    height: 50vh;
    object-fit: cover;
}

.carousel-caption
{
	text-shadow: 1px 1px 2px #212121;
	z-index: 999;
}

.carousel-caption h2
{
	color: #d60c00;
}

/*--------------------------------------------------------------
# Back to Top Styles
--------------------------------------------------------------*/

.back-to-top
{
    position: fixed;
    display: none;
    background: rgba(166, 126, 0, 0.5);
	color: #FFFFFF;
	right: 45px;
    bottom: 45px;
    z-index: 99;	
	border: none;
	text-aligh: center;
	margin: 0 auto;
	
}
.back-to-top:hover
{
	background: var(--gold-color);
	color: #FFFFFF;
}
@media(max-width: 990px)
{
	.back-to-top
	{
		right: 5px;
		bottom: 5px;	
	}
}

/*--------------------------------------------------------------
# Image Styles
--------------------------------------------------------------*/

.mainsitelogo
{
	display: block;
	width: 130px;
	height: auto;
	margin: 0 auto 22px;	
}

.navlogolong
{
	width: 100%;
	height: auto;
}


/*--------------------------------------------------------------
# Parallax Styles
--------------------------------------------------------------*/

.parallax
{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;  
	padding: 20px 0;   
}

.parallax .text-muted
{
	color: var(--accent-color);
}

.parallax,
.parallax h1, 
.parallax h2, 
.parallax h3, 
.parallax h4, 
.parallax h5, 
.parallax h6
{
  color: #fff;
}

#CallToAction
{
	background-image: url(../img//static/calltoaction-bg.jpg);
}

#Founder
{
	background-image: url(../img//static/calltoaction-bg.jpg);
}

.defaultbg
{
	background-image: url(../img//static/calltoaction-bg.jpg);
}

#polygraphbg
{
	background-image: url(../img//static/polygraph-bg.jpg);
}

#trainingbg
{
	background-image: url(../img//static/training-bg.jpg);
}

.parallax .ctaButton
{
	color: #FFFFFF;
	background: rgba(0,0,0,0.5);
	
}

.parallax .ctaButton:hover
{
	color: var(--accent-color);
	background: rgba(0,0,0,1);
}

@media(max-width: 990px)
{
	.parallax
	{
		text-align: center;
	}	
}

.accent-bar
{
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 10px;
}

.list-inline-item
{
	padding: 8px 12px;
	color: var(--dark-blue);
	background: var(--accent-color);
	border-radius: 20px;
	font-weight: 600;
	margin: 5px;
}

/*--------------------------------------------------------------
# Trust Pills Style
--------------------------------------------------------------*/

 .trust-pill
 {
	background: #ffffff;
	border-radius: 50px;
	border: 1px solid #e0e0e0;
	padding: 20px 30px;
	font-weight: 500;
	color: #333;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.trust-pill i
{
	color: #32d0aa;
	font-size: 1.4rem;
}

.trust-pill:hover
{
	background: var(--dark-blue);
	color: #fff;
	border-color: var(--accent-color);
}

.trust-pill:hover i
{
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Pills Style
--------------------------------------------------------------*/

.service-pill
{
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	border: 2px solid var(--dark-blue);
	color: var(--accent-color);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
	background-color: var(--dark-blue);
}

.service-pill:hover
{
	background-color: var(--accent-color);
	color: #FFFFFF;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.clients .owl-item img {
  width: 60%;
  opacity: 0.8;
  transition: 0.3s;
}

.clients .owl-item img:hover {
  opacity: 1;
}

.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: var(--d-purple) !important;
}

/*--------------------------------------------------------------
# Service Cards Style
--------------------------------------------------------------*/

.Profile
{
    display: flex; /* Enables Flexbox */
    flex-direction: column; /* Align items in a column (vertical layout) */
    justify-content: center; /* Centers items vertically */
    align-items: center; /* Centers items horizontally */
    margin: 10px auto;
    text-align: center;
    width: 100%; /* Adjust the width to allow it to fit dynamically */
    max-width: 350px; /* Set a max-width for the card */
    padding: 10px;
    /*background: #dbdbdb;*/
    /*border: 1px solid #C1C1C1;*/
    /*border-radius: 10px;  Softer rounded corners for elegance */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  Add a subtle shadow */
	
}

.Profile img {
    max-width: 60%; /* Ensure the image fits within the card */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 50%; /*  Make the image circular */
    margin-bottom: 15px; /* Add spacing below the image */
    border: 3px solid #FFF; /* Add a white border around the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for the image */
}

.Profile h4
{
	display: inline-block; /* Makes the heading fit its content */
    font-size: 16px; /* Larger font size for emphasis */
    font-weight: bold;
    margin: 5px 0; /* Add some space above and below */
    color: #000000; /* White text for contrast */
	text-align: center; /* Center-align the text */
    width: 100%; /* Allow the text to take the full width of the container */
    max-width: 280px; /* Limit the maximum width to keep it proportional */   
    word-wrap: break-word; /* Break long words to avoid overflow */
}

.Profile sub {
    font-size: 14px; /* Smaller font for the subtitle */
    color: #404040;
    opacity: 0.9; /* Slight transparency for elegance */
	margin: 5px 0 10px;
}

@media(max-width: 990px)
{
    .Profile
	{
		width: 100%;
		max-width: 100%;
		margin: 16px 0;
    }
}

/*--------------------------------------------------------------
# Service Card
--------------------------------------------------------------*/

.service-card
{
	display: flex;
	flex-direction: column;
	padding: 10px;
	border: 2px solid rgba(200,200,200,0.12);
	border-radius: 20px;
	height: auto;
	background: var(--dark-blue);
}

.service-card .title
{
	color: #FFFFFF;
	font-size: 1.3rem;
}

.service-card .icon
{
	margin: 0 0.5rem 0 0;
}

.service-card button
{
	margin-top: auto; /* Pushes the button to the bottom */
	color: 
}		
	
/* Desktop: 4 cards per row */
@media (min-width: 992px)
{
	.service-card
	{
		width: 24%;
	}
}

/* Tablet: 2 cards per row */
@media (min-width: 576px) and (max-width: 991px)
{
	.service-card 
	{
		width: 48%;
	}
}

/* Mobile: full width stacked */
@media (max-width: 575px) {
	.service-card
	{
		width: 100%;
	}
}

.btn-accent
{
	background-color: #10252F;
	color: var(--accent-color);
	font-weight: bold;
	border-radius: 6px;
}

.btn-accent:hover
{
	color: #10252F;
	background-color:  var(--accent-color);		
}

/*--------------------------------------------------------------
# Testimonial-card
--------------------------------------------------------------*/

.testimonial-card {
    background: #0d1220;
    border-radius: 14px;
    border: 1px solid #1d2333;
    color: #d0d0d0;

    /* Important for equal height */
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
	overflow: hidden;
}



.subheading {

padding: 10px 0 0 10px;

}

.testimonial-card:hover {
    border-color: #32d0aa;
}

.icon-box {
    background: rgba(50, 210, 190, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #32d0aa;
}

.quote-icon {
    font-size: 40px;
    opacity: 0.25;
    color: #32d0aa;
}

.testimonial-text 
{
    flex-grow: 1;	
    font-size: 0.95rem;
    color: #c7c7c7;
    margin-top: 10px;
    line-height: 1.5;
}

.testimonial .text-smaller
{
	color: #32d0aa;
}

.arrow-link i {
    color: #32d0aa;
    font-size: 18px;
    transition: 0.2s;
}

.arrow-link i:hover {
    transform: translateX(4px);
}


/*--------------------------------------------------------------
# Insight pdf and card css
--------------------------------------------------------------*/

.form-img
{	
	width: 100%;
	height: auto;
	cursor: pointer;	
}

.tally
{
	color: #777777;
	padding: 0 7px;
	text-align: right;	
}

#pdfViewerContainer {
	background: #0f172a;      
	padding: 1rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,.4);
	scroll-margin-top: 100px;
}

#pdfViewer {
	background: #111;        
	border-radius: 8px;
	border: 1px solid #222;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.container.gallery-container {
    min-height: 100vh;
}

.tz-gallery {
    padding: 40px;
}

.tz-gallery .lightbox img {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.tz-gallery .lightbox img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.tz-gallery img {
    border-radius: 4px;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px)
{
    .container.gallery-container {
        border-radius: 0;
    }
}

/*--------------------------------------------------------------
# Contact CSS
--------------------------------------------------------------*/

.alert {
    border-radius: 5px;
}

.btn-danger {
    background-color: #e50914;
    border-color: #e50914;
}

.btn-danger:hover {
    background-color: #b2060f;
    border-color: #b2060f;
}

.form-control,
.form-group
{
	box-shadow: none !important;
	outline: none;
	margin-bottom: 10px;
}

textarea.form-control
{
	background: #D5D5D5;
	border: 2px solid #202020;
	box-shadow: none !important;
	outline: none !important;
	transition: background 0.25s ease-in-out, border 0.5s ease-in-out;
}

input[type='text'],
input[type='email'],
input[type='tel']
{
	background: #D5D5D5;
	border: 2px solid #202020;
	transition: all 0.5ms ease-in-out;
	box-shadow: none !important;
	outline: none !important;
	transition: background 0.25s ease-in-out, border 0.5s ease-in-out;
}

input[type='text']:hover,
input[type='email']:hover,
input[type='tel']:hover,
textarea.form-control:hover,
input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
textarea.form-control:focus
{
	background: #FFFFFF;
	border: 2px solid var(--gold-color);	
	box-shadow: none !important;
	outline: none !important;
}

.btn-gold
{
	color: #FFFFFF;
	background: var(--gold-color);
	transition: all 0.25s ease-in-out;
}

.btn-gold:hover
{
	color: #FFFFFF;
	background: var(--gold-color);
	filter: brightness(85%);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--white-color);
  background-color: var(--dark-blue);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--dark-blue) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
  text-decoration: none;  
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--gold-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a 
{
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	font-size: 16px;
	margin-right: 10px;
	transition: 0.3s;
	text-decoration: none;  
}

.footer .social-links a:hover 
{
	text-decoration: none;
	color: var(--gold-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links
{
  margin-bottom: 30px;
}

.footer .footer-links ul
{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i 
{
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li 
{
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-contact p 
{
  margin-bottom: 5px;  
}

.footer .copyright 
{
  padding: 30px 0;
  text-decoration: none;  
}

.footer .copyright p 
{
  margin-bottom: 0;
}

.footer .credits a
{
	text-decoration: none;
	color: #C1C1C1;
}

.footer .credits a:hover
{
	text-decoration: none;
	color: #00CC00;
}

.footer .credits 
{
	margin-top: 5px;
	font-size: 13px;   

}