* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  color: #222;
}

.hero {
  position: relative;
  text-align: center;
  padding: 70px 20px;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroSlide 12s infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
}

.hero h1 {
  margin-top: 15px;
  font-size: 36px;
}

.hero h2 {
  margin: 10px 0;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  background: white;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

section {
  max-width: 900px;
  margin: 20px auto;
  padding: 25px;
  background: white;
  border-radius: 12px;
}

h2 {
  margin-bottom: 15px;
  border-bottom: 2px solid #222;
  padding-bottom: 8px;
}

p {
  line-height: 1.7;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #999;
}

th, td {
  padding: 10px;
  text-align: left;
}

ul, ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.gallery{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:20px;
    flex-wrap:wrap;
}

.gallery img{
    width:250px;
    height:350px;
    object-fit:contain;
    border-radius:10px;
    transition:0.3s;
    cursor:pointer;
    transition: 0.3s;
    cursor: pointer;
 
}

.gallery img:hover{
    transform:scale(1.15);
}

footer {
  text-align: center;
  padding: 20px;
  background: #1f1f1f;
  color: white;
}
.link-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin:12px 0;
}

.logo-link{
    width:32px;
    height:32px;
    object-fit:contain;
}
body{
    background: linear-gradient(
        -45deg,
        #87CEEB,
        #B0E0E6,
        #E0F6FF,
        #87CEEB
    );

    background-size:400% 400%;
    animation:gradientBG 12s ease infinite;
}


.cloud-area{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.cloud{
    position: absolute;
    width: 120px;
    height: 60px;
    background: rgba(255,255,255,0.8);
    border-radius: 50px;
    animation: moveCloud 35s linear infinite;
}

.cloud::before,
.cloud::after{
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
}

.cloud::before{
    width: 60px;
    height: 60px;
    top: -25px;
    left: 20px;
}

.cloud::after{
    width: 80px;
    height: 80px;
    top: -35px;
    right: 10px;
}

.cloud1{
    top: 120px;
    left: -150px;
}

.cloud2{
    top: 350px;
    left: -300px;
    animation-duration: 50s;
}

.cloud3{
    top: 550px;
    left: -500px;
    animation-duration: 40s;
}

@keyframes moveCloud{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(130vw);
    }
}

header,
section,
footer{
    position: relative;
    z-index: 1;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes heroSlide {
  0% {
    background-image: url('../images/bg1.jpg');
  }

  33% {
    background-image: url('../images/bg2.jpg');
  }

  66% {
    background-image: url('../images/bg3.jpg');
  }

  100% {
    background-image: url('../images/bg1.jpg');
  }
}