/* Description: Master CSS file */



:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --heading-color: #000000;
  --accent-color: #eb5d1e;
  --card-bg: #f9f9f9;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

h1, h2, h3, h4, h5 {
  color: var(--heading-color);
}

a {
  color: var(--accent-color);
}

.card, .skill-card, .text-box {
  background-color: var(--card-bg);
  color: var(--text-color);
}

/* 🌙 Dark Mode overrides */
body.dark-mode {
  --bg-color: #121212;
  --text-color: #eeeeee;
  --heading-color: #ffffff;
  --accent-color: #ff7a3d;
  --card-bg: #1f1f2e;
}

.dark-mode .navbar,
.dark-mode .footer,
.dark-mode #about,
.dark-mode #portfolio,
.dark-mode #skills {
  background-color: #1a1a2c !important;
  color: var(--text-color);
}

.dark-mode a {
  color: var(--accent-color);
}

.dark-mode .btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}


/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- About
- Services
- Details
- Projects
- Works
- Testimonials
- Questions
- Contact
- Footer 
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds, navbar - black #24262a
- Backgrounds - light gray #f7f9fb
- Buttons, icons - blue #0b36a8
- Headings text - black #24262a
- Body text - dark gray #4d5055
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
	width: 100%;
	height: 100%;
}

body,
p {
	color: #ffffffeb;
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
	color: #24262a;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins"
}

h2 {
	color: #e3f2fd;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: "Poppins"
}

h3 {
	color: #24262a;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Poppins"
}

h4 {
	color: #adb5bd;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Poppins"
}

h5 {
	color: #673ab7;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "Poppins"
}

h6 {
	color: #9c27b0bf;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "Poppins"
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #4d5055;
	text-decoration: underline;
}

a:hover {
	color: #4d5055;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.blue {
	color: #2259ec;
}

.bg-gray {
	background-color: #f7f9fb;
	 background: linear-gradient(to bottom, transparent 0%, #222459 50%, transparent 100%);
	/* background: linear-gradient(225deg, #1f1542de, transparent); */
}

.section-divider {
	display: block;
	height: 1px;
	margin: 0;
	border: none;
	background-color: #d3dae2;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #0b36a8;
	/* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #0b36a8;
	/* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #24262a;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.5rem;
	color: #7d838a;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.375rem;
	cursor: text;
	transition: all 0.2s ease;
}

.form-control-input:focus+.label-control,
.form-control-input.notEmpty+.label-control,
.form-control-textarea:focus+.label-control,
.form-control-textarea.notEmpty+.label-control {
	top: 0.125rem;
	color: #4d5055;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block;
	/* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 8px;
	background: linear-gradient(9deg, #222459, transparent);
	box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	color: #4d5055;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}

select {
	/* you should keep these first rules in place to maintain cross-browser behavior */
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-image: url('../images/down-arrow.png');
	background-position: 96% 50%;
	background-repeat: no-repeat;
	outline: none;
}

.form-control-textarea {
	display: block;
	/* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 14rem;
	/* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.5rem;
	padding-left: 1.3125rem;
	border: 1px solid #cbcbd1;
	border-radius: 8px;
	background: linear-gradient(9deg, #222459, transparent);
	box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	color: #4d5055;
	font-size: 0.875rem;
	line-height: 1.5rem;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none;
	/* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

input[type='checkbox'] {
	vertical-align: -10%;
	margin-right: 0.5rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #0b36a8;
	border-radius: 32px;
	background-color: #0b36a8;
	box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	background: linear-gradient(9deg, #222459, transparent);
	box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	color: #f7f9fb;
}

/* custom form-control */
	.my-form {
		max-width: 830px;
		width: 95%;
		padding: 17px 5px;
		background-color: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.3);
		border-radius: 10px;
		backdrop-filter: blur(5px);
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 20px auto;
		box-shadow: 13px 13px 21px rgba(0, 0, 255, 0.3);
	}

	/* 📏 মাঝারি স্ক্রিনের জন্য (ল্যাপটপ ও ট্যাবলেট) */
	@media (max-width: 992px) {
		.my-form {
			max-width: 80%;
			padding: 15px 5px;
			box-shadow: 10px 10px 18px rgba(0, 0, 255, 0.2);
		}
	}

	/* 🌐 ছোট স্ক্রিনের জন্য */
	@media (max-width: 768px) {
		.my-form {
			max-width: 90%;
			padding: 12px 5px;
			box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.2);
		}
	}

	/* 📱 মোবাইল স্ক্রিনের জন্য */
	@media (max-width: 480px) {
		.my-form {
			max-width: 95%;
			padding: 10px 3px;
			box-shadow: 4px 4px 12px rgba(0, 0, 255, 0.2);
		}
	}

/* End form */


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #24262a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.125rem;
	padding-bottom: 0.125rem;
}

.navbar .logo-image img {
	width: 118px;
	height: 36px;
}

.navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem;
	/* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #24262a;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #9c9ead;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
	/* required for the fade animation */
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border: none;
	background-color: #24262a;
}

.navbar .dropdown-item {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #24262a;
	color: #9c9ead;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #505050;
}

/* end of dropdown menu */

.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #0b36a8;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #0b36a8;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/******************/
/*     Header     */
/*****************
.header {
	padding-top: 7rem;
	padding-bottom: 5.5rem;
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}
*/
#background-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -1;
}

.profile-card {
	max-width: 440px;
	background-color: transparent;
}

.profile-card:hover {
	max-width: 460px;
}


.profile-img {
	width: 200px;
	height: 200px;
	box-shadow: 4px 4px 8px rgba(0, 0, 255, 0.3);
	object-fit: cover;
}

.header .h1-large {
	margin-bottom: 1.75rem;
	color: #fff;
}

.header .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.header .btn-outline-lg {
	padding: 1.625rem 1.625rem 1.625rem 1.625rem;
	border: none;
	color: #ffffff;
}

.header .btn-outline-lg:hover {
	background: transparent;
	color: #9c9ead;
	text-decoration: none;
}

.header .btn-outline-lg .fas {
	margin-right: 0.375rem;
}

/* CV Button style start */
.stylish-btn {
	position: relative;
	background: linear-gradient(9deg, #222459, transparent);
	box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.stylish-btn:hover {
	background: linear-gradient(9deg, #222459, transparent);
	box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	/* Change the color on hover */
	transform: scale(1.05);
	/* Slight enlarge effect */
}

.stylish-btn:active {
	transform: scale(0.95);
	/* Shrinks when clicked */
}

/* Stylish Animation */
.stylish-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: left 0.4s ease-in-out;
}

.stylish-btn:hover::before {
	left: 100%;
}

/* CV Button style end */

.card-title {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* --------------- */
/* .card-text {
        font-family: monospace;
        overflow: hidden;
        border-right: 3px solid #333;
        white-space: nowrap;
        animation: typing 3s steps(12), blink-caret 0.5s step-end infinite;
      }

      @keyframes typing {
        from { width: 0; }
        to { width: 100%; }
      }

      @keyframes blink-caret {
        from, to { border-color: transparent; }
        50% { border-color: #333; }
      } */

/* Skill Section style */
.tech-logos img {
	animation: float 4s ease-in-out infinite;
	transition: transform 0.3s ease, filter 0.3s ease;
	margin: 10px;
}

/* Floating animation */
@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* Hover effect */
.tech-logos img:hover {
	transform: scale(1.2) rotate(5deg);
	filter: brightness(1.3);
}


.tech-logos img:nth-child(odd) {
	animation-delay: 0s;
}

.tech-logos img:nth-child(even) {
	animation-delay: 2s;
}

/* Skill style end ----------------------------------------------------------------------------------- */


/*--------------------------------------------------------------
# About Section - Clean & Responsive
--------------------------------------------------------------*/

#about {
  padding: 60px 0;
  background: linear-gradient(to bottom, transparent 0%, #222459 50%, transparent 100%);

}

#about .section-title h3 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
}

#about .about-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 255, 0.3);

  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

#about .content {
  padding: 20px;
}

#about .content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #84f19c;
  margin-bottom: 15px;
}

#about .content .fst-italic {
  font-style: italic;
  color: #f3e4e4;
  margin-bottom: 15px;
}

#about .content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

#about .content ul li {
  padding: 10px 0;
  font-size: 16px;
  color: #f0eeee;
  display: flex;
  align-items: center;
}

#about .content ul i {
  font-size: 18px;
  color: #007bff;
  margin-right: 10px;
}

#about .content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #d6d5d5;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  #about .about-img {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  #about .content h3 {
    font-size: 24px;
  }

  #about .section-title h2 {
    font-size: 28px;
  }
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio Section - Clean & Responsive
--------------------------------------------------------------*/

#portfolio {
  background: linear-gradient(to bottom, transparent 0%, #222459 50%, transparent 100%);
  padding: 60px 0;
}

.portfolio .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.portfolio .section-title p {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 16px;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

#portfolio-flters {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

#portfolio-flters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #444a88;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  background: #eb5d1e;
  color: #fff;
}

.portfolio .portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio .portfolio-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-wrap::before {
  content: "";
  position: absolute;
  background: rgba(34, 36, 89, 0.75);
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: 1;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-links {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
}

.portfolio .portfolio-links a {
  display: inline-block;
  background: #fff;
  color: #eb5d1e;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 18px;
  margin: 0 6px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

.portfolio .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.portfolio .portfolio-info p {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ddd;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  #portfolio-flters li {
    font-size: 14px;
    padding: 6px 14px;
  }
}



/********************/
/*     Skillls     */
/********************/
.skills-section {
  padding: 70px 0;
  background: linear-gradient(to bottom, transparent 0%, #222459 50%, transparent 100%);

}

.skills-section .section-title h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.skills-section .section-title p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 40px;
}

.skill-card {
  background-color: #ffffff10;
  padding: 30px 20px;
  border: 1px solid #ffffff30;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.skill-card:hover {
  transform: translateY(-5px);
}

.skill-card h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #eb5d1e;
  display: inline-block;
  padding-bottom: 5px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tech-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.tech-icons img:hover {
  transform: scale(1.15);
  filter: brightness(1.1);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .skill-card {
    margin-bottom: 20px;
  }
}


/*****************/
/*     Works     */
/*****************/
.basic-4 {
	padding-bottom: 1rem;
	border-radius: 8px;
}

.basic-4 .text-container {
	margin-bottom: 4rem;
}

.basic-4 .image-container {
	margin-bottom: 1rem;
}

/* Hover Animation */
.basic-4 .image-container {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
	border-radius: 3px;
	/* Adds slight rounding */
	box-shadow: 5px 5px 15px rgba(255, 255, 255, 0.3);
	/* Soft white shadow */
}

.basic-4 .image-container img {
	margin: 0;
	transition: all 0.2s;
}

.basic-4 .image-container:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

/* end of hover animation */


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 7.75rem;
	padding-bottom: 7rem;
	text-align: center;
}

.form-1 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.form-1 .p-heading {
	margin-bottom: 4rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.25rem;
	padding-bottom: 2rem;
 	background: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%);
	box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	text-align: center;
}

.footer a {
	text-decoration: none;
}

.footer .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: #0b36a8;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #0b36a8;
}

.footer .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #24262a;
	text-align: center;
}

.copyright .p-small {
	color: #9da6ac;
	text-align: center;
}

.copyright a {
	color: #9da6ac;
}


/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #3a424d url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #0b36a8;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #24262a;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .media-body {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fb;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #0b36a8;
}

.ex-cards-1 .card .fa-stack-1x {
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .media-body {
	margin-left: 0.75rem;
}

.ex-cards-1 .card .list-unstyled .media-body h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.375rem;
}


/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		padding-top: 11rem;
		padding-bottom: 9rem;
	}

	/* end of header */


	/* Services */
	.basic-2 .text-box {
		padding-right: 2.125rem;
		padding-left: 2.125rem;
		border-radius: 8px;
		background: linear-gradient(9deg, #222459, transparent);
		box-shadow: 8px 8px 16px rgba(0, 0, 255, 0.3);
	}

	/* end of services */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}

	/* end of extra pages */
}

/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {

	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: transparent;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-top: 0.5rem;
		background-color: #24262a;
		background: linear-gradient(to top, black, #24262a);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.625rem;
		padding-left: 0.625rem;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}

	/* end of navigation */


	/* Header */
	.header {
		padding-top: 14rem;
		padding-bottom: 13rem;
		text-align: left;
	}

	/* end of header */


	/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
	.portfolio .portfolio-filters-container {
		margin-bottom: 40px;
	}

	.portfolio .portfolio-filters {
		display: flex;
		justify-content: center;
		gap: 15px;
		flex-wrap: wrap;
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.portfolio .portfolio-filters li {
		font-size: 15px;
		font-weight: 500;
		padding: 8px 20px;
		cursor: pointer;
		border-radius: 30px;
		background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
		color: var(--default-color);
		transition: all 0.3s ease-in-out;
	}

	.portfolio .portfolio-filters li:hover {
		background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
		color: var(--accent-color);
		transform: translateY(-2px);
	}

	.portfolio .portfolio-filters li.filter-active {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.portfolio .portfolio-card {
		background-color: var(--surface-color);
		border-radius: 15px;
		overflow: hidden;
		box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
		transition: all 0.3s ease-in-out;
	}

	.portfolio .portfolio-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
	}

	.portfolio .portfolio-card:hover .portfolio-overlay {
		opacity: 1;
		visibility: visible;
	}

	.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
		transform: translateY(0);
	}

	.portfolio .portfolio-card .portfolio-image {
		position: relative;
		overflow: hidden;
		aspect-ratio: 16/10;
	}

	.portfolio .portfolio-card .portfolio-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.6s ease-in-out;
	}

	.portfolio .portfolio-card .portfolio-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s ease-in-out;
		display: flex;
		align-items: flex-end;
		padding: 20px;
	}

	.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
		transform: translateY(20px);
		transition: all 0.4s ease-in-out;
		display: flex;
		gap: 15px;
	}

	.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
		width: 45px;
		height: 45px;
		background-color: var(--surface-color);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--accent-color);
		font-size: 20px;
		transition: all 0.3s ease;
	}

	.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: scale(1.1);
	}

	.portfolio .portfolio-card .portfolio-content {
		padding: 25px;
	}

	.portfolio .portfolio-card .portfolio-content .category {
		font-size: 14px;
		color: var(--accent-color);
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: 500;
		display: block;
		margin-bottom: 10px;
	}

	.portfolio .portfolio-card .portfolio-content h3 {
		font-size: 20px;
		margin: 0 0 15px;
		font-weight: 600;
		transition: color 0.3s ease;
	}

	.portfolio .portfolio-card .portfolio-content h3:hover {
		color: var(--accent-color);
	}

	.portfolio .portfolio-card .portfolio-content p {
		font-size: 15px;
		color: color-mix(in srgb, var(--default-color), transparent 30%);
		margin: 0;
		line-height: 1.6;
	}

	@media (max-width: 768px) {
		.portfolio .portfolio-filters li {
			font-size: 14px;
			padding: 6px 15px;
		}

		.portfolio .portfolio-card .portfolio-content {
			padding: 20px;
		}

		.portfolio .portfolio-card .portfolio-content h3 {
			font-size: 18px;
		}

		.portfolio .portfolio-card .portfolio-content p {
			font-size: 14px;
		}
	}



	/* Details */
	.split {
		height: 760px;
	}

	.split .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}

	.split .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}

	.split .text-container {
		width: 400px;
		margin-left: 3rem;
	}

	/* end of details */



	/* Accordion */
	.accordion-1 .accordion {
		width: 730px;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of accordion */


	/* Contact */
	.form-1 form {
		width: 790px;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of contact */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	/* end of extra pages */
}

/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.h1-large {
		font-size: 3.75rem;
		line-height: 4.625rem;
	}

	/* end of general styles */


	/* Navigation */
	.navbar .container {
		max-width: 1330px;
	}

	/* end of navigation */


	/* Header */
	.header {
		padding-top: 8.25rem;
		padding-bottom: 0.25rem;
	}

	/* end of header */


	/* About */
	.basic-1 .text-container.first {
		margin-right: 2rem;
	}

	.basic-1 .text-container.second {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.basic-1 .text-container.third {
		margin-left: 2rem;
	}

	/* end of about */


	/* Details */
	.split {
		height: 700px;
	}

	.split .text-container {
		width: 460px;
		margin-left: 5rem;
	}

	/* end of details */


	/* Testimonials */
	.cards-1 .card {
		width: 338px;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.625rem;
		margin-left: 2.625rem;
	}

	/* end of testimonials */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}

	/* end of extra pages */
}

/* end of min-width 1200px */