:root {
	--default-font: "montserrat";
	--heading-font: "montserrat";
	--nav-font: "montserrat";
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #ffffff;
	/* Background color for the entire website, including individual sections */
	--default-color: #444444;
	/* Default color used for the majority of the text content across the entire website */
	--heading-color: #283d50;
	/* Color for headings, subheadings and title throughout the website */
	--accent-color: #007bff;
	/* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff;
	/* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff;
	/* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #024286; /* The default color of the main navmenu links */
	--nav-hover-color: #007bff;
	/* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff;
	/* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff;
	/* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #444444;
	/* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #007bff;
	/* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
	--background-color: #ecf5ff;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #1742a4;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #0d358f;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading { 0% {
	transform: rotate(0deg);
}
100%{transform:rotate(360deg);}}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(var(--accent-color) 50%,
		color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
	border-radius: 50%;
	display: block;
	position: relative;
	overflow: hidden;
}

.pulsating-play-btn:before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	animation-delay: 0s;
	animation: pulsate-play-btn 2s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid color-mix(in srgb, var(--accent-color), transparent
		30%);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	animation: none;
	border-radius: 0;
}

.pulsating-play-btn:hover:after {
	border-left: 15px solid var(--accent-color);
	transform: scale(20);
}

@keyframes pulsate-play-btn { 0% {
	transform: scale(0.6, 0.6);
	opacity: 1;
}
100%{transform:scale(1,1);
opacity:0;}}
/*--------------------------------------------------------------
# Global Header (UNCHANGED)
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #f1f7f7;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  position: sticky;
  top: 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 55px;
  margin-right: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# MENU BASE (COMMON)
--------------------------------------------------------------*/

.header,
.nav-container,
.navmenu {
  overflow: visible !important;
}

/* Logo + Menu in ONE LINE */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.navmenu {
  display: flex;
  align-items: center;
  position: relative;
  font-size: small;
}

/* Menu UL */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove bullets */
.menu-list li::marker {
  content: "";
}

/* Menu links */
.menu-list li a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  padding: 10px 14px;
  display: inline-block;
  white-space: nowrap;
  transition: 0.3s ease;
}

/* Hover + Active */
.menu-list li a:hover,
.menu-list li a.active {
  color: #dc6c28;
}


/*--------------------------------------------------------------
# DESKTOP VIEW
--------------------------------------------------------------*/

@media (min-width: 1200px) {

  .menu-list {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
  }

  /* Hide hamburger */
  .mobile-nav-toggle {
    display: none !important;
  }

  /* Underline animation */
  .menu-list li a {
    position: relative;
  }

  .menu-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #dc6c28;
    transition: 0.3s ease;
  }

  .menu-list li a:hover::after,
  .menu-list li a.active::after {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# MOBILE VIEW (FIXED — NO CUT / NO OVERFLOW)
--------------------------------------------------------------*/

@media (max-width:1199px){

/* Hamburger + Close icon base */
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
  position: relative;
}

/* Hamburger icon */
.mobile-nav-toggle::before {
  content: "\2630";
}

/* ===== WHEN MENU OPEN ===== */
#menu-toggle:checked + .mobile-nav-toggle {

  position: fixed;        /* IMPORTANT */
  top: 18px;              /* adjust if needed */
  right: 18px;

  background: #ffffff;
  border-radius: 50%;
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Close icon */
#menu-toggle:checked + .mobile-nav-toggle::before {
  content: "\2715";
  font-size: 22px;
}

/* ===== MENU BOX ===== */

.menu-list {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;

  width: 92%;
  max-width: 420px;

  background: #fff;
  border-radius: 16px;
  padding: 18px 0;

  box-shadow: 0 12px 35px rgba(0,0,0,.2);
  z-index: 10000;
}

#menu-toggle:checked ~ .menu-list {
  display: block;
}

/* Menu alignment */
.menu-list li {
  padding: 10px 18px;
  text-align: left;
}

.menu-list li a {
  display: block;
  padding: 10px 6px;
  font-size: 16px;
}

.menu-list li a::after {
  display: none;
}

}



/*--------------------------------------------------------------
# Breadcrumb / Right Side User Info
--------------------------------------------------------------*/

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-simple {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	max-width: 100vw;
	background: #003366;
	color: white;
	text-align: center;
	padding: 12px 10px;
	z-index: 9999;
}

.footer-simple .credits {
	font-size: 12px;
	color: #e0e0e0;
}

@media ( max-width : 576px) {
	.footer-simple {
		font-size: 12px;
		padding: 10px 5px;
	}
}

.footer-full {
	background-color: #003366;
	font-size: 14px;
}

/* TOP SECTION */
.footer-full .footer-top {
	padding-top: 40px;
	padding-bottom: 25px;
}

/* TITLE */
.footer-full .sitename {
	font-size: 18px;
	font-weight: 700;
}

/* CONTACT TEXT */
.footer-full .footer-contact p {
	margin-bottom: 5px;
}

/* SOCIAL ICONS */
.footer-full .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #ccc;
	font-size: 16px;
	color: #555;
	transition: 0.3s;
}

.footer-full .social-links a:hover {
	color: #0d6efd;
	border-color: #0d6efd;
}

/* COPYRIGHT */
.footer-full .credits {
	font-size: 13px;
	color: #6c757d;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid var(--accent-color);
	border-top-color: color-mix(in srgb, var(--accent-color), transparent
		90%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader { 0% {transform: rotate(0deg);}
100%{transform:rotate(360deg);}}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 20px;
	bottom: 70px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	transition: all 0.4s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-top i {
	font-size: 22px;
	color: white;
	font-weight: bold;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent
		20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 25px 0;
	position: relative;
}

.page-title h1 {
	font-size: 24px;
	font-weight: 700;
}

.page-title .breadcrumbs a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
	color: var(--default-color);
	padding: 40px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media ( max-width : 1199px) {
	section, .section {
		scroll-margin-top: 58px;
	}
}

.section-bg {
	color: var(--default-color);
	background-color: #fff;
	padding: 40px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media ( max-width : 1199px) {
	.section-bg {
		scroll-margin-top: 50px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 0;
	position: relative;
	z-index: 2;
}

.section-title span {
	position: absolute;
	top: 4px;
	color: color-mix(in srgb, var(--heading-color), transparent 95%);
	left: 0;
	right: 0;
	z-index: 1;
	font-weight: 700;
	font-size: 52px;
	text-transform: uppercase;
	line-height: 1;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 90vh;
	position: relative;
	padding: 120px 0;
	display: flex;
	align-items: center;
	background: url(../img/hero-bg.webp) center bottom no-repeat;
	background-size: cover;
}

@media ( max-width : 1200px) {
	.hero {
		padding: 60px 0;
	}
}

.hero h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 75px;
	margin-bottom: 10px;
}

.hero h2 {
	font-size: 30px;
	margin-bottom: 20;
	font-weight: 500;
	color: var(--heading-color);
	margin-bottom: 10px;
}

.hero h3 {
	font-size: 35px;
	margin: 0;
	font-weight: 700;
	color: #09f3b9;
}

.hero p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 5px 0 30px 0;
	font-size: 20px;
	font-weight: 400;
}

.hero .btn-get-started {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px 12px 28px;
	border-radius: 50px;
	transition: 0.5s;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
	font-size: 16px;
	transition: 0.5s;
	margin-left: 25px;
	color: var(--default-color);
	font-weight: 600;
}

.hero .btn-watch-video i {
	color: var(--accent-color);
	font-size: 32px;
	transition: 0.3s;
	line-height: 0;
	margin-right: 8px;
}

.hero .btn-watch-video:hover {
	color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
	color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media ( max-width : 640px) {
	.hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
	.hero p {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
	.hero .btn-get-started, .hero .btn-watch-video {
		font-size: 13px;
	}
}

@keyframes up-down { 0% {
	transform: translateY(10px);
}
100%{transform:translateY(-10px);}}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
	font-size: 2rem;
	font-weight: 700;
}

.about p {
	font-size: 16px;
	text-align: justify;
	font-weight: 500;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	display: flex;
	align-items: flex-start;
	margin-top: 40px;
}

.about .content ul i {
	flex-shrink: 0;
	font-size: 48px;
	color: var(--accent-color);
	margin-right: 20px;
	line-height: 0;
}

.about .content ul h5 {
	font-size: 18px;
	font-weight: 700;
}

.about .content ul p {
	font-size: 15px;
	text-align: justify;
}

.about .content p:last-child {
	margin-bottom: 0;
	text-align: justify;
}

.about .pulsating-play-btn {
	position: absolute;
	left: calc(50% - 47px);
	top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
	margin-top: 100px;
}

@media ( max-width : 640px) {
	.features .features-item+.features-item {
		margin-top: 40px;
	}
}

.features .features-item h3 {
	font-weight: 700;
	font-size: 26px;
}

.features .features-item ul {
	list-style: none;
	padding: 0;
}

.features .features-item ul li {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
}

.features .features-item ul li:last-child {
	padding-bottom: 0;
}

.features .features-item ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}

.features .features-item p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
	background-image: url(../img/cam-bg.webp);
}

.services .service-item {
	background-color: var(--surface-color);
	padding: 40px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent
		85%);
	transition: 0.3s;
}

.services .service-item .icon {
	font-size: 36px;
	line-height: 0;
	margin-right: 15px;
	color: var(--accent-color);
}

.services .service-item .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
}

.services .service-item .title a {
	color: var(--heading-color);
}

.services .service-item p {
	line-height: 30px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
}

.services .service-item:hover {
	border-color: var(--accent-color);
}

.services .service-item:hover .title a {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-3 {
	background-image: url(../img/cam-bg-1.webp);
}

.services-3 .service-item3 {
	background-color: var(--surface-color);
	padding: 40px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent
		85%);
	transition: 0.3s;
}

.services-3 .service-item3.icon {
	font-size: 36px;
	line-height: 0;
	text-align: center;
	color: var(--accent-color);
}

.services-3 .service-item3 .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
}

.services-3 .service-item3 .title a {
	color: var(--heading-color);
}

.services-3.service-item3 p {
	line-height: 30px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
}

.services-3 .service-item3:hover {
	border-color: var(--accent-color);
}

.services-3 .service-item3:hover .title a {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .about {
	padding-top: 5px;
	background-color: color-mix(in srgb, var(--default-color), transparent
		97%);
	border: #024286;
	border-style: dotted;
	border-radius: 10px;
}

.why-us .img-bg {
	min-height: 500px;
	position: relative;
}

.why-us .img-bg img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.why-us h3 {
	font-size: 24px;
	font-weight: 700;
}

.why-us h4 {
	font-size: 18px;
	font-weight: 300;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .swiper {
	margin: 40px 40px 40px 40px;
	overflow: hidden;
}

.why-us .swiper-wrapper {
	height: auto;
}

.why-us .swiper-button-prev:after, .why-us .swiper-button-next:after {
	font-size: 24px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
	background-color: color-mix(in srgb, var(--default-color), transparent
		50%);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

@media ( max-width : 1200px) {
	.why-us .swiper {
		margin: 60px 60px 40px 60px;
	}
	.why-us .swiper-button-prev, .why-us .swiper-button-next {
		display: none;
	}
}

@media ( max-width : 575px) {
	.why-us .swiper {
		margin: 40px 40px 20px 40px;
	}
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
	padding: 0 0 30px 0;
}

.stats .stats-item {
	padding: 30px;
	width: 100%;
}

.stats .stats-item i {
	color: var(--accent-color);
	display: block;
	font-size: 44px;
	float: left;
	line-height: 0;
}

.stats .stats-item .purecounter {
	color: var(--heading-color);
	font-size: 48px;
	line-height: 40px;
	display: block;
	font-weight: 700;
	margin-left: 60px;
}

.stats .stats-item p {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	padding: 15px 0 0 0;
	margin: 0 0 0 60px;
	font-family: var(--heading-font);
	font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}

.portfolio .portfolio-filters li {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px;
	line-height: 1;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover, .portfolio .portfolio-filters li.filter-active
	{
	color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
	margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
	margin-right: 0;
}

@media ( max-width : 575px) {
	.portfolio .portfolio-filters li {
		font-size: 14px;
		margin: 0 5px;
	}
}

.portfolio .portfolio-content {
	position: relative;
	overflow: hidden;
}

.portfolio .portfolio-content img {
	transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	background: rgba(0, 0, 0, 0.6);
	padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
	font-size: 14px;
	padding: 5px 10px;
	font-weight: 400;
	color: #ffffff;
	display: inline-block;
	background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
	position: absolute;
	bottom: 10px;
	text-align: center;
	display: inline-block;
	left: 0;
	right: 0;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link, .portfolio .portfolio-content .portfolio-info .details-link
	{
	position: absolute;
	left: calc(50% - 40px);
	font-size: 26px;
	top: calc(50% - 14px);
	color: #fff;
	transition: 0.3s;
	line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
	.portfolio .portfolio-content .portfolio-info .details-link:hover {
	color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
	left: 50%;
	font-size: 34px;
	line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
	opacity: 1;
}

.portfolio .portfolio-content:hover img {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider
	{
	overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
	border-left: 3px solid var(--accent-color);
	padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
	border-radius: 50%;
	border: 4px solid var(--background-color);
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right
	{
	color: color-mix(in srgb, var(--accent-color), transparent 50%);
	font-size: 26px;
	line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: color-mix(in srgb, var(--default-color), transparent
		85%);
	opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
	position: relative;
}

.team .member .member-img {
	margin: 0 80px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

@media ( max-width : 1024px) {
	.team .member .member-img {
		margin: 0 60px;
	}
}

.team .member .member-img img {
	position: relative;
	z-index: 1;
}

.team .member .member-img .social {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	padding-bottom: 20px;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
}

.team .member .member-img .social a {
	transition: 0.3s;
	color: var(--contrast-color);
	font-size: 20px;
	margin: 0 8px;
}

.team .member .member-img .social a:hover {
	color: var(--accent-color);
}

.team .member .member-info {
	margin-top: 30px;
}

.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 18px;
}

.team .member .member-info span {
	font-style: italic;
	display: block;
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 10px;
}

.team .member .member-info p {
	margin-bottom: 0;
	font-size: 14px;
}

.team .member:hover .member-img .social {
	padding-bottom: 0;
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
	border-top: 1px solid color-mix(in srgb, var(--default-color),
		transparent 85%);
	border-left: 1px solid color-mix(in srgb, var(--default-color),
		transparent 85%);
}

.clients .client-logo {
	background-color: var(--surface-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid color-mix(in srgb, var(--default-color),
		transparent 85%);
	border-bottom: 1px solid color-mix(in srgb, var(--default-color),
		transparent 85%);
	overflow: hidden;
}

.clients .client-logo img {
	padding: 50px;
	max-width: 80%;
	transition: 0.3s;
}

@media ( max-width : 640px) {
	.clients .client-logo img {
		padding: 30px;
		max-width: 50%;
	}
}

.clients .client-logo:hover img {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
	margin-top: 40px;
}

.contact .info-item i {
	color: var(--accent-color);
	background: color-mix(in srgb, var(--accent-color), transparent 92%);
	font-size: 20px;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
}

.contact .info-item h3 {
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 500;
}

.contact .info-item:hover i {
	background: var(--accent-color);
	color: var(--contrast-color);
}

.contact .php-email-form {
	height: 100%;
}

.contact .php-email-form input[type=text], .contact .php-email-form input[type=email],
	.contact .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: color-mix(in srgb, var(--background-color),
		transparent 50%);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus,
	.contact .php-email-form textarea:focus {
	border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder, .contact .php-email-form input[type=email]::placeholder,
	.contact .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
	width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet
	{
	width: 12px;
	height: 12px;
	background-color: color-mix(in srgb, var(--default-color), transparent
		85%);
	opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active
	{
	background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
	background-color: var(--surface-color);
	padding: 30px;
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid color-mix(in srgb, var(--default-color),
		transparent 85%);
}

.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
	margin-top: 10px;
}

.portfolio-details .portfolio-description {
	padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
	padding: 0;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
	background-color: var(--surface-color);
	padding: 10px 30px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent
		90%);
	margin-bottom: 20px;
}

.service-details .services-list a {
	display: block;
	line-height: 1;
	padding: 8px 0 8px 15px;
	border-left: 3px solid color-mix(in srgb, var(--default-color),
		transparent 70%);
	margin: 20px 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	transition: 0.3s;
}

.service-details .services-list a.active {
	color: var(--heading-color);
	font-weight: 700;
	border-color: var(--accent-color);
}

.service-details .services-list a:hover {
	border-color: var(--accent-color);
}

.service-details .services-img {
	margin-bottom: 20px;
}

.service-details h3 {
	font-size: 26px;
	font-weight: 700;
}

.service-details h4 {
	font-size: 20px;
	font-weight: 700;
}

.service-details p {
	font-size: 15px;
}

.service-details ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.service-details ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.service-details ul i {
	font-size: 20px;
	margin-right: 8px;
	color: var(--accent-color);
}

.wrapper {
	overflow: hidden;
	max-width: 100%;
	background: #ffffff;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.wrapper .title-text {
	display: flex;
	width: 200%;
	color: #0171d3;
}

.wrapper .title {
	width: 50%;
	font-size: 35px;
	font-weight: 600;
	text-align: center;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .slide-controls {
	position: relative;
	display: flex;
	height: 50px;
	width: 100%;
	overflow: hidden;
	margin: 30px 0 10px 0;
	justify-content: space-between;
	border: 1px solid lightgrey;
	border-radius: 5px;
}

.slide-controls .slide {
	height: 100%;
	width: 100%;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	line-height: 48px;
	cursor: pointer;
	z-index: 1;
	transition: all 0.6s ease;
}

.slide-controls label.signup {
	color: #000;
}

.slide-controls .slider-tab {
	position: absolute;
	height: 100%;
	width: 50%;
	left: 0;
	z-index: 0;
	border-radius: 5px;
	background: -webkit-linear-gradient(left, #0171d3, #4167b2);
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* input[type="radio"]{
    display: none;
} */
#signup:checked ~ .slider-tab {
	left: 50%;
}

#signup:checked ~ label.signup {
	color: #fff;
	cursor: default;
	user-select: none;
}

#signup:checked ~ label.login {
	color: #000;
}

#login:checked ~ label.signup {
	color: #000;
}

#login:checked ~ label.login {
	cursor: default;
	user-select: none;
}

.wrapper .form-container {
	width: 100%;
	overflow: hidden;
}

.form-container .form-inner {
	display: flex;
	width: 200%;
}

.form-container .form-inner form {
	width: 50%;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-inner form .field {
	height: 50px;
	width: 100%;
	margin-top: 20px;
}

.form-inner form .field input {
	height: 100%;
	width: 100%;
	outline: none;
	padding-left: 15px;
	border-radius: 5px;
	border: 1px solid lightgrey;
	border-bottom-width: 2px;
	font-size: 17px;
	transition: all 0.3s ease;
}

.form-inner form .field input:focus {
	border-color: #fc83bb;
	/* box-shadow: inset 0 0 3px #fb6aae; */
}

.form-inner form .field input::placeholder {
	color: #999;
	transition: all 0.3s ease;
}

form .field input:focus::placeholder {
	color: #b3b3b3;
}

.form-inner form .pass-link {
	margin-top: 5px;
}

.form-inner form .signup-link {
	text-align: center;
	margin-top: 30px;
}

.form-inner form .pass-link a, .form-inner form .signup-link a {
	color: #0171d3;
	font-weight: 600;
	text-decoration: none;
}

.form-inner form .pass-link a:hover, .form-inner form .signup-link a:hover
	{
	text-decoration: underline;
}

form .btn {
	height: 50px;
	/* width: 50%; */
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

form .btn .btn-layer {
	height: 100%;
	width: 300%;
	position: absolute;
	left: -100%;
	background: -webkit-linear-gradient(right, #0171d3, #4167b2, #0171d3, #4167b2);
	border-radius: 5px;
	transition: all 0.4s ease;
	;
}

form .btn:hover .btn-layer {
	left: 0;
}

form .btn input[type="submit"] {
	height: 100%;
	width: 100%;
	z-index: 1;
	position: relative;
	background: none;
	border: none;
	color: #fff;
	padding-left: 0;
	border-radius: 5px;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
}

/*** Section Title Start ***/
.section-title {
	max-width: 900px;
	text-align: center;
	margin: 0 auto;
}

.section-title .sub-style {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	color: var(--bs-primary);
}

.section-title .sub-style::before {
	content: "";
	width: 100px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	margin-top: 8px;
	margin-left: -100px;
	border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
	content: "";
	width: 50px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	margin-bottom: 5px;
	margin-left: -50px;
	border: 1px solid var(--bs-primary) !important;
}

.sub-title {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	color: var(--bs-primary);
}

.sub-title::before {
	content: "";
	width: 100px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	margin-top: 8px;
	margin-right: -100px;
	border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
	content: "";
	width: 50px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	margin-bottom: 8px;
	margin-right: -50px;
	border: 1px solid var(--bs-primary) !important;
}

/*--------------------------------------------------------------
# process Section
--------------------------------------------------------------*/
.process .nav-tabs {
	border: 0;
}

.process .nav-link {
	background-color: var(--surface-color);
	color: var(--color-secondary);
	border: 0;
	padding: 10px 10px;
	box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0s;
	cursor: pointer;
	height: 100%;
}

.process .nav-link i {
	font-size: 32px;
	line-height: 0;
	margin-right: 10px;
}

.process .nav-link h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 10px;
}

.process .nav-link:hover {
	color: var(--accent-color);
}

.process .nav-link:hover, .process .nav-link.active {
	transition: 0.3s;
	background: var(--accent-color);
	color: var(--contrast-color) !important;
	border-color: var(--accent-color);
}

.process .nav-link:hover h4, .process .nav-link.active h4 {
	color: var(--contrast-color);
}

.process .nav-link:hover i, .process .nav-link.active i {
	color: var(--contrast-color) !important;
}

.process .tab-content {
	margin-top: 30px;
}

.process .tab-pane.active {
	animation: fadeIn 0.5s ease-out;
}

.process .tab-pane h3 {
	font-weight: 600;
	font-size: 28px;
}

.process .tab-pane ul {
	list-style: none;
	padding: 0;
}

.process .tab-pane ul li {
	padding-bottom: 10px;
}

.process .tab-pane ul i {
	font-size: 20px;
	margin-right: 4px;
	color: #d8c655;
}

.process .tab-pane p:last-child {
	margin-bottom: 0;
}

/* ===================== */
/* BASE TABLE STYLE (DESKTOP) */
/* ===================== */
table.tableizer-table {
	background-color: var(--surface-color);
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
	height: 100%;
	position: relative;
	z-index: 1;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid #CCC;
	color: #000;
}

.tableizer-table td {
	padding: 15px;
	margin: 5px;
	border: 1px solid #CCC;
}

.tableizer-table th {
	background-color: #10238B;
	color: #FFF;
	font-weight: bold;
	font-size: 18px;
	padding: 15px;
	text-align: center;
	border: 1px solid #ffffff;
}

/* ===================== */
/* MOBILE RESPONSIVE FIX */
/* ===================== */
@media ( max-width : 768px) {
	table.tableizer-table {
		font-size: 13px;
	}
	.tableizer-table th {
		font-size: 14px;
		padding: 8px;
		white-space: normal;
		line-height: 1.3;
	}
	.tableizer-table td {
		font-size: 13px;
		padding: 8px;
		white-space: normal;
		line-height: 1.3;
	}
}

.services-2 .service-item {
	padding: 30px;
	border: 1px;
	border-color: #0a2d70;
	transition: 0.3s;
	color: #000;
	font-weight: 500;
}

.services-2 .service-item .icon {
	font-size: 36px;
	line-height: 0;
	margin-right: 30px;
	color: var(--accent-color);
}

.services-2 .service-item .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
}

.services-2 .service-item .title a {
	color: var(--heading-color);
}

.services-2 .service-item .description {
	line-height: 24px;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}

.services-2 .service-item:hover {
	border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
	color: var(--accent-color);
}

.light {
	background-color: #fff;
}

.dark {
	margin-left: 65px;
}

/*********** application process ****************/
:root {
	--pink: linear-gradient(45deg, #ff9a9e, #fecfef);
	--purple: linear-gradient(45deg, #a18cd1, #fbc2eb);
	--deep: linear-gradient(45deg, #667eea, #764ba2);
	--blue: linear-gradient(45deg, #4facfe, #00f2fe);
	--green: linear-gradient(45deg, #43e97b, #38f9d7);
	--orange: linear-gradient(45deg, #f6d365, #fda085);
	--indigo: linear-gradient(45deg, #30cfd0, #330867);
}

/* SECTION */
.hex-section {
	background: #f6f9ff;
	padding: 50px 10px;
}

/* GRID */
.hex-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 25px;
	justify-items: center;
}

/* HEX */
.hex {
	width: 160px;
	height: 180px;
	padding: 12px;
	cursor: pointer;
	transition: 0.3s;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hex-inner {
	background: #fff;
	width: 100%;
	height: 100%;
	clip-path: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* COLORS */
.hex-1 {
	background: var(--pink);
}

.hex-2 {
	background: var(--purple);
}

.hex-3 {
	background: var(--deep);
}

.hex-4 {
	background: var(--blue);
}

.hex-5 {
	background: var(--green);
}

.hex-6 {
	background: var(--orange);
}

.hex-7 {
	background: var(--indigo);
}

/* TEXT */
.hex-inner span {
	font-weight: bold;
	font-size: 18px;
}

.hex-inner h5 {
	font-size: 13px;
	margin-top: 5px;
	text-align: center;
}

/* HOVER */
.hex:hover {
	transform: scale(1.07);
}

/* MODAL HEADER */
#modalHeader {
	color: white;
	transition: background 0.4s ease;
}

#modalHeader .btn-close {
	filter: invert(1);
}

/* MOBILE */
@media ( max-width : 576px) {
	.hex {
		width: 130px;
		height: 150px;
	}
	.hex-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

/************* Dates *************/
.important-dates {
  padding: 50px 0;
}

/* CARD STYLE */
.date-card {
  background: #fff;
  padding: 25px 20px 45px;
  border-radius: 14px;
  position: relative;
  min-height: 140px;
  height: 100%;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* DATE TITLE */
.date-card h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 6px;
  line-height: 1.3;
}

/* DESCRIPTION */
.date-card p {
  font-size: 15px;
  margin-bottom: 0;
  color: #555;
}

/* CIRCLE ICON */
.date-circle {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);
}

/* ICON */
.date-circle i {
  color: #fff;
  font-size: 18px;
}

/* HOVER EFFECT */
.date-card:hover {
  transform: translateY(-6px);
}

/* MOBILE FIX */
@media (max-width: 576px) {

  .date-card {
    min-height: auto;
    padding: 20px 15px 40px;
  }

  .date-card h5 {
    font-size: 16px;
  }

}
