
@font-face {
  font-family: 'MyCustomFont';
  src: url('msx-international.ttf') format('truetype');
}


html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: rgb(255, 255, 255);
    color: white;
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; 
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;               
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6%;         
  gap: 1rem;
  background-color: rgba(0,0,0,0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2000;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    #256fff,
    #257fff,
    #258fff,
    #259fff,
    #25afff,
    #256fff
  );

  background-size: 400%; 
  border-radius: 2px;
  animation: moveGradient 6s linear infinite; 
}

.logo {
  color: #254aa5;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease;
 animation: footerColorr 10s linear infinite; 
}

@keyframes footerColorr {
    0% {
        color: #256fff;
    }
    20% {
        color: #257fff	;
    }
    40% {
        color: #258fff	;
    }
    60% {
        color: #259fff;
    }
    80% {
        color: #25afff;
    }
    100% {
        color: #256fff;
    }
}

.logo:hover { transform: scale(1.05); }

.nav-menu {
  display: flex;
  gap: 2rem;                
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;      
  padding: .25rem .25rem;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-menu a.active,
.nav-menu a:hover {
  color: #254aa5;
 animation: footerColorr 10s linear infinite; 
}

@keyframes footerColorr {
    0% {
        color: #256fff;
    }
    20% {
        color: #257fff	;
    }
    40% {
        color: #258fff	;
    }
    60% {
        color: #259fff;
    }
    80% {
        color: #25afff;
    }
    100% {
        color: #256fff;
    }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: .25rem;
  width: 42px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 4px 0;
  background: #254aa5;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 601px) and (max-width: 1024px) {
  .site-header { padding: 0.9rem 5%; }
  .logo { font-size: 2.2rem; }
  .nav-menu a { font-size: 1.05rem; }
  .nav-menu { gap: 1.5rem; }
}

@media (max-width: 844px) {
  .menu-toggle { display: flex; }


  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    overflow: hidden;
    max-height: 0;               
    transition: max-height .35s ease;
    padding: 0 0;
  }

  .nav-menu.active {
    max-height: 480px;           
    padding: 0.8rem 0;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
    padding: .9rem 0;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

@media (max-width: 380px) {
  .logo { font-size: 1.9rem; }
  .menu-toggle { width: 38px; height: 34px; }
  .menu-toggle .bar { width: 22px; }
}


.section.top {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('CV_FULL_LOG.jpeg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
}

.section.top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #256fff,
    #257fff,
    #258fff,
    #259fff,
    #25afff,
    #256fff
  );
  background-size: 400%; 
  border-radius: 2px;
  animation: moveGradient 6s linear infinite; 
}


.top-box {
  background-color: rgba(0, 0, 0, 0.75); 
  border-radius: 15px;
  padding: 40px 60px;
  max-width: 1200px;
  color: #fff;
  text-align: justify;
  font-family: 'MyCustomFont', sans-serif;
   box-shadow: 0 0 10px #254aa5;
  line-height: 1.6;
  font-size: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #035ee8;
}

.top-description p {
  margin: 0;
  text-shadow: 0 0 10px #254aa5;
}

.top-description p::first-letter {
  font-size: 2.5rem;
}


@media (max-width: 1024px) {
  .section.top {
    padding: 60px 6%;
    background-position: center top;
  }

  .top-box {
    padding: 30px 40px;
    font-size: 1.6rem;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .section.top {
    padding: 50px 5%;
    background-position: center;
  }

  .top-box {
    padding: 25px 30px;
    font-size: 1.4rem;
    border-radius: 12px;
  }

  .top-description p::first-letter {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section.top {
    padding: 40px 5%;
  }

  .top-box {
    padding: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.parallax {
  position: relative;           
  width: 100%;
  height: 100vh;               
  background-image: url('sic_parvis_map.png');
  background-size: contain;      
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-color: white;
  z-index: 1;                   
}


.parallax::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #256fff,
    #257fff,
    #258fff,
    #259fff,
    #25afff,
    #256fff
  );
  background-size: 400%; 
  border-radius: 2px;
  animation: moveGradient 6s linear infinite; 
}

.parallax-content {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll; 
    background-position: center;
  }
}

.vision {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 5% 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background-color: #2a2a2a; /* fallback */
  overflow: hidden;
}

.vision::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #256fff,
    #257fff,
    #258fff,
    #259fff,
    #25afff,
    #256fff
  );
  background-size: 400%; 
  border-radius: 2px;
  animation: moveGradient 6s linear infinite; 
}

.vision h2 {
  color: #fff;
  font-size: 4.5rem;
  text-shadow: 0 0 10px #254aa5;
  margin-bottom: 4rem;
  z-index: 2;
}


.vision-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.vision-image {
  background-image: url('CV_STUDIO_LOGO.png'); 
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

.vision-box {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 1200px;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.6); 
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  box-shadow: 0 0 10px #254aa5;
  line-height: 1.6;
  font-size: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #035ee8;
}

.vision-box p {
  color: #fff;
  text-shadow: 0 0 10px #254aa5;
  text-align: justify;
  z-index: 2;
}

@media (max-width: 768px) {
  .vision {
    padding: 10% 5%;
    height: fit-content;
    padding-bottom: 30%;
  }

  .vision h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .vision-image,
  .vision-box {
    height: auto;
    min-height: 350px;
    padding: 10px 20px;
  }

  .vision-box p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .vision h2 {
    font-size: 2.2rem;
  }

  .vision-box p {
    font-size: 1.2rem;
  }
}

.academic {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 80px 10%;
  background-color: #464646;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.academic h2 {
  color: #fff;
  font-size: 4.5rem;
  text-shadow: 0 0 10px #254aa5;
  margin-bottom: 60px;
  position: relative;
}


.academic .about-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: rgba(0, 0, 0, 0.551); 
  box-shadow: 0 0 10px #254aa5;
  border-radius: 15px;
  padding: 40px;
  max-width: 1200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.academic .about-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #035ee8;
}


.academic .about-box img {
  width: 320px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}


.academic .about-box p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: justify;
  text-shadow: 0 0 10px #035ee8;
}

.academic .about-box a {
  color: #035ee8;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.academic .about-box a:hover {
  color: #2de2e6;
}


@media (max-width: 1024px) {
  .academic {
    padding: 60px 6%;
  }

  .academic h2 {
    font-size: 3.8rem;
    margin-bottom: 40px;
  }

  .academic .about-box {
    gap: 25px;
    padding: 30px;
  }

  .academic .about-box img {
    width: 250px;
  }

  .academic .about-box p {
    font-size: 1.6rem;
  }
}


@media (max-width: 768px) {
  .academic {
    padding: 50px 5%;
  }

  .academic h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }


  .academic .about-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px;
  }

  .academic .about-box img {
    width: 80%;
    max-width: 300px;
  }

  .academic .about-box p {
    font-size: 1.4rem;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .academic h2 {
    font-size: 2.4rem;
  }

  .academic .about-box {
    padding: 20px;
    gap: 15px;
  }

  .academic .about-box img {
    width: 100%;
    max-width: 260px;
  }

  .academic .about-box p {
    font-size: 1.2rem;
  }
}

.list {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #464646;
  text-align: center;
  overflow: hidden;
}

.list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #256fff,
    #257fff,
    #258fff,
    #259fff,
    #25afff,
    #256fff
  );
  background-size: 400%; 
  border-radius: 2px;
  animation: moveGradient 6s linear infinite;
}

.list h2 {
  color: #fff;
  font-size: 4.5rem;
  text-shadow: 0 0 15px #254aa5;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}


.about-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 10px #254aa5;
  border-radius: 15px;
  padding: 50px 60px;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-list:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #035ee8;
}


.about-list .column {
  flex: 1;
  text-align: left;
}

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

.about-list li {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  text-shadow: 0 0 10px #035ee8;
}


.about-list li::before {
  content: "•";
  color: #2de2e6;
  position: absolute;
  left: 0;
  font-size: 1.8rem;
  text-shadow: 0 0 8px #2de2e6;
}


@media (max-width: 1024px) {
  .list {
    padding: 60px 6%;
  }

  .list h2 {
    font-size: 3.8rem;
    margin-bottom: 40px;
  }

  .about-list {
    gap: 30px;
    padding: 40px;
  }

  .about-list li {
    font-size: 1.4rem;
  }
}


@media (max-width: 768px) {
  .list {
    padding: 50px 5%;
  }

  .list h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }

  .about-list {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 30px 25px;
  }

  .about-list .column {
    width: 100%;
  }

  .about-list li {
    font-size: 1.3rem;
  }
}


@media (max-width: 480px) {
  .list h2 {
    font-size: 2.4rem;
  }

  .about-list {
    padding: 25px 20px;
  }

  .about-list li {
    font-size: 1.2rem;
  }
}


.presentations {
  position: relative;
  background-color: #616060;
  width: 100%;
   padding-top: 50px ;
   height: 100%; 
}

.presentations::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;


  background: linear-gradient(
    90deg,
    #256fff,
    #257fff,
    #258fff,
    #259fff,
    #25afff,
    #256fff
  );
  background-size: 400%;
  border-radius: 2px;
  animation: moveGradient 6s linear infinite; 
}

.title {
    display: flex;
  flex-direction: column;
  align-items: left;
  padding-left: 30px;
}

.title h1 {
    color: #fff;
  font-size: 4.5rem;
  text-shadow: 0 0 15px #254aa5;
  position: relative;
  left: 35%;
  z-index: 2;
  padding-bottom: 10px ;
}

.title p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: justify;
  text-shadow: 0 0 10px #035ee8;
}

.title a {
  color: #035ee8;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.title a:hover {
  color: #2de2e6;
}

.image-side img {
  width: 70%;
  height: 70vh;
  padding-top: 10px;
}

.text-boximg {
  position: absolute;
  left: 1000px;
  top: 280px;
  max-width: 500px;
  max-height: 300px;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-left: 3px solid #256fff; 
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}


.text-boximg p {
  font-size: 2rem;
  line-height: 1.6;
}


@media (max-width: 1024px) {
  .presentations {
    padding-top: 40px;
  }

  .title h1 {
    font-size: 3.5rem;
    left: 0;
    text-align: center;
  }

  .title p {
    font-size: 1.6rem;
    padding: 0 20px;
  }

  .image-side img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .text-boximg {
    position: relative;
    left: 0;
    top: 0;
    max-width: 90%;
    margin: 30px auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 25px;
  }

  .text-boximg p {
    font-size: 1.6rem;
  }
}


@media (max-width: 768px) {
  .presentations {
    padding: 60px 5% 40px;
    height: fit-content;
  }

  .title {
    align-items: center;
    padding-left: 0;
  }

  .title h1 {
    font-size: 2.8rem;
    text-align: center;
    left: 0;
    padding-bottom: 20px;
  }

  .title p {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }

  .image-side img {
    width: 90%;
    height: auto;
    margin: 20px auto;
  }

  .text-boximg {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
    padding: 20px;
    border-left: 2px solid #256fff;
    background: rgba(0, 0, 0, 0.75);
  }

  .text-boximg p {
    font-size: 1.3rem;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .title h1 {
    font-size: 2.2rem;
  }

  .title p {
    font-size: 1.2rem;
    padding: 0 10px;
  }

  .text-boximg {
    padding: 15px;
  }

  .text-boximg p {
    font-size: 1.1rem;
  }
}


footer {
    text-align: center;
    padding: 1rem 0.5rem;     
    font-size: 2rem;        
    font-weight: 400;
    letter-spacing: 0.03rem;
    background-color: #000000;
    color: #ffffff; 
 animation: footerColor 10s linear infinite; 
}

@keyframes footerColor {
    0% {
        color: #256fff;
        text-shadow: 0 0 5px #256fff;
    }
    20% {
        color: #257fff	;
        text-shadow: 0 0 5px #257fff	;
    }
    40% {
        color: #258fff	;
        text-shadow: 0 0 5px #258fff	;
    }
    60% {
        color: #259fff;
        text-shadow: 0 0 5px #259fff;
    }
    80% {
        color: #25afff;
        text-shadow: 0 0 5px #25afff;
    }
    100% {
        color: #256fff;
        text-shadow: 0 0 5px #256fff;
    }
}


@media (max-width: 768px) {
  footer {
    font-size: 1.6rem;      
    padding: 1rem 0.8rem;    
    letter-spacing: 0.02rem;
  }
}


@media (max-width: 480px) {
  footer {
    font-size: 1.2rem;       
    padding: 0.8rem 0.5rem;
    letter-spacing: 0.015rem;
    line-height: 1.4;       
    text-align: center;      
  }
}
