body {
    font-family: Arimo, "Arimo";
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #101010;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-text {
	align-text: center;

}

header .logo img {
    width: 45px;
	justify-content: space-between;
	position: absolute;
	left: 15px;
	top: 8px;

}

.welcome-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #00f;
    color: white;
   	border-style: solid;
	text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
}

.welcome-button:hover {
    background-color: #45a049;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    
	padding: 0px;
}

.welcome-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #0000EC;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}

.welcome-button:hover {
    background-color: #3F4CB5;
	align-items: center;
	position: absolute;
}
nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

nav ul li a:hover {
    color: #0000aa;
}

section {
    padding: 80px 20px 60px; /* Extra padding to accommodate fixed header */
    text-align: center;
}

#home {
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#home .home-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .home-image img {
    width: 100%;
    height: 100%;
	object-fit: cover;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px; /* Extra padding to ensure content doesn't overlap with fixed header */
}

.about-container {
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.about-text h2 {
    margin-top: 0;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

#services {
    padding-top: 60px; /* Extra padding to ensure content doesn't overlap with fixed header */
    background-color: #000;
	min-width: 100%;
    color: #fff;
}

#services h2 {
    color: #fff;
}

.portfolio {
    display: flex;
    justify-content: center;
}

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


.book {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
	
}
.book-container {
    perspective: 1000px; /* Perspective for 3D effect */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.book {
    position: relative; /* For positioning pages */
    width: 595px; /* A4 width */
    height: 842px; /* A4 height */
    transform-style: preserve-3d; /* Preserve 3D effect */
    transform-origin: left center; /* Origin for the flip effect */
}

.page {
    position: absolute; /* Position each page */
    width: 100%; /* Fill the width of the book */
    height: 100%; /* Fill the height of the book */
    backface-visibility: hidden; /* Hide the back face */
    border: 1px solid #ccc; /* Optional: add a border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add a shadow */
    transform-origin: left center; /* Origin for the flip effect */
    transition: transform 0.6s ease; /* Animation duration */
}

.page img {
    width: 100%; /* Fill the page */
    height: 100%; /* Fill the page */
    object-fit: contain; /* Cover the entire area */
}

.page1 {
    background-color: #fff; /* Front face color */
	z-index: 4;
}

.page2 {
    background-color: #fff; /* Middle face color */
    z-index: 3; /* Rotate to back face */
}

.page3 {
    background-color: #fff; /* Back face color */
      z-index: 2; /* Rotate to back face */
}

.page4 {
    background-color: #fff; /* Back face color */
    z-index: 1; /* Rotate to back face */
}

/* Hover effect for flipping the book */
.book:hover {
    transform: rotateY(-180deg); /* Rotate book when hovered */
}

.page {
    background-color: #fff;
    width: 420px;
    height: 595px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform-origin: left;
    transition: transform 1s;
	position: absolute;
}

.page1:hover {
    transform: rotateY(-180deg);
}

.page2:hover {
    transform: rotateY(-180deg);
}

.page3:hover {
    transform: rotateY(-180deg);
}

.page4:hover {
    transform: rotateY(-180deg);
}

.swiper-wrapper img {
	
	width:485px
}

.swiper-slide {
    position: relative;
	align-content: center;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-images {
    display: flex;
	align-content: center;
	align-items: center;
    width: 800%;
    transition: transform 0.5s ease-in-out;
}

.swiper-container img {
    display: none;
	align-items: center;
    width: 100%;
    height: auto;
}

.swiper-container img:first-child {
    display: block;
}

.swiper-pagination nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.swiper-button-next, .swiper-button-prev button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.swiper-pagination {
    text-align: center;
    margin-top: 10px;
}

.swiper-pagination button {
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    margin: 0 5px;
    cursor: pointer;
}


form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px;
    background-color: #00f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button {
    padding: 10px;
    background-color: #00f; /* Off-black color */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #555; /* Slightly lighter off-black */
}

.send-button {
    background-color: #0000E8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.button-34 {
  background: #5E5DF0;
  border-radius: 999px;
  box-shadow: #5E5DF0 0 10px 20px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
	text-decoration: none; /* Remove underline */
  display: flex; /* Flexbox to align items */
  align-items: center; /* Center items vertically */
}

.button-34:hover {
  box-shadow: #5E5DF0 0 15px 30px -10px;
	transform: scale(1.05);
	 transition: transform 0.4s ease;
}

.instagram-button {
  background: #E1306C; 
  box-shadow: #E1306C 0 10px 20px -10px;
}

.linktree-button {
  background: #39E09B; /* Linktree color */
  box-shadow: #39E09B 0 10px 20px -10px;
}

.linktree-button img {
  width: 20px; 
  margin-right: 10px; /* Space between logo and text */

}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #39E09B;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
	transform: scale(1.05);
}

.whatsapp-float img {
    width: 100%;
    height: auto;
	transform: scale(1.05);
}


footer {
	bottom:0;
    padding: 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
	position:relative;
	top:100px;
	margin-top:auto;
	min-width: 100%;


}

footer .footer-content {
    max-width: 600px;
    margin: 0 auto;
}

footer .footer-content img {
    width: 100%;
    max-width: 400px;
}

footer .footer-content p {
    margin: 10px 0;
}
