/**
* Template Name: FolioOne
* Template URL: https://bootstrapmade.com/folioone-bootstrap-portfolio-website-template/
* Updated: Aug 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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;
}


/* 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: #1f2735; /* Background color for the entire website, including individual sections */
  --default-color: #e7f2f7; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f68a1e; /* 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: #163658; /* 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. */
}

@font-face {
  font-family: 'Montserrat-Bold'; /* Choose a name for your font family */
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype'); /* Specify the path to your .ttf file */
  /* You can also add font-weight, font-style, etc. if needed for different variations */
}

@font-face {
  font-family: 'Montserrat-Light'; /* Choose a name for your font family */
  src: url('../fonts/Montserrat-Light.ttf') format('truetype'); /* Specify the path to your .ttf file */
  /* You can also add font-weight, font-style, etc. if needed for different variations */
}

@font-face {
  font-family: 'Lato-Bold'; /* Choose a name for your font family */
  src: url('../fonts/Lato-Bold.ttf') format('truetype'); /* Specify the path to your .ttf file */
  /* You can also add font-weight, font-style, etc. if needed for different variations */
}

@font-face {
  font-family: 'Lato-Light'; /* Choose a name for your font family */
  src: url('../fonts/Lato-Light.ttf') format('truetype'); /* Specify the path to your .ttf file */
  /* You can also add font-weight, font-style, etc. if needed for different variations */
}


/* 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;
}



h3,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h1{
  font-family: 'Montserrat-Bold';
}

h1 .highlight{
  font-family: 'Montserrat-Light';
}

h2, h4{
  font-family: 'Lato-Light';
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav 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);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 6px;
  position: relative;
}

.section-title h2 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 50px 0;
  display: flex;
  align-items: center;
  /*border: 2px solid red;*/
}

.hero .hero-content h1 {
  font-size: 43px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
  font-size: 43px;
}

.hero .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--accent-color);
  
}

.hero .hero-content h2 .typed {
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 1.25rem;
  }
}

.hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero .hero-actions .btn {
  margin-top: 30px;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Montserrat-Light';
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.hero .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .hero-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
  }

  .hero .hero-actions .btn {
    text-align: center;
  }
}

.hero .social-links {
  display: flex;
  gap: 1rem;
}

.hero .social-links a {
  width: 45px;
  height: 45px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hero .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-image {
  position: relative;
}

.hero .hero-image .image-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.hero .hero-image .image-wrapper img {
  border-radius: 90px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: transform 0.3s ease;
}


@media (max-width: 768px) {
  .hero .hero-image .image-wrapper img {
    display: block;
    margin: auto;
    width: 60%;
    border-radius: 100px;
  }
  .hero .hero-image  {
    max-width: 450px;
    margin: 0 auto;
    /*border: 2px solid red;*/
  }

  .hero .hero-actions .btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-family: 'Montserrat-Light';
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid;
  max-width: fit-content;
}

.hero .hero-content h1 {
  font-size: 29px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
  font-size: 29px;
}

.hero .hero-content h2 {
  font-size: 17px;
  margin-bottom: 2rem;
  color: var(--accent-color);
  text-align: left;
  margin-left: 18px;
  
}
}


.hero .hero-image .image-wrapper img:hover {
  transform: scale(1.02);
}

.hero .hero-image .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero .hero-image .floating-elements .floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-image .floating-elements .floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-image .floating-elements .floating-card.design {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero .hero-image .floating-elements .floating-card.code {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.hero .hero-image .floating-elements .floating-card.creativity {
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

@media (max-width: 992px) {
  .hero .hero-image .floating-elements .floating-card {
    display: none;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}




/*--------------------------------------------------------------
# LOGO Section
--------------------------------------------------------------*/

.logo_container{
  margin-top: 25px;
  margin-bottom: 10px;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border: 2px solid red;*/
}

.logo_container img{
  width: 20%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo_container img {
    width: 40%;
    height: auto;
    display: block;
  }
}

/*--------------------------------------------------------------
# CONTACT Item Section
--------------------------------------------------------------*/

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  height: fit-content;
  /*border: 2px solid green;*/
}

.contact-item .text-item{

  text-align: justify;
  height: fit-content;
}



.contact-item i {
  font-size: 22px;
  color: #101a20;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}






.contact-item h4 {
  font-size: 14px;
  color: #919191;
  margin: 0;
  font-weight: 500;
}

.contact-item .text-item p {
  margin: 3px 0 0;
  font-size: 22px;
  font-family: 'Lato-Bold';
  margin-bottom: 30px;
  color: #eeeeee;
}


.contact-item a {
  text-decoration: none;
  color: var(--accent-color);
}

.contact-item .map{
  margin-left: 15px;
}


.hero-actions span {
  margin-right: 10px;
}

.h2{
  color: #059652;
}

@media (max-width: 768px) {
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    /*border: 2px solid green;*/
    max-height: fit-content;
  }

  .contact-item .text-item p {
    margin: 3px 0 0;
    font-size: 16px;
    color: #C7C7C7;
    font-family: 'Lato-Bold';
    padding-bottom: 18px;
    /*border: 2px solid yellow;*/
  }

}