
* {
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

body, html {
  overflow-x: hidden; /* Prevent horizontal overflow */
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%; /* Ensure body and html take full width */
}

/* Header styles */
.header-container {
  position: fixed;
  left: 50%; /* Move to the center of the viewport */
  transform: translateX(-50%); /* Adjust position to center */
  width: 1000px;
  background-color: rgba(245, 243, 243, 0.8); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Blurry effect */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin: 20px 0; /* Vertical margin */
  padding: 10px 20px; /* Padding inside the container */
  text-align: center; /* Center align text */
  font-size: 18px;
  font-family: 'Roboto Slab', serif;
}

/* Navigation styles */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  height: 50px; /* Adjust the height as needed */
  margin-right: 20px; /* Space between logo and nav links */
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #007BFF;
}


/* Temporary section styling */
.temp {
  padding-top: 30px;
  background-color: red;
  font-size: 30px;
  text-align: center;
}




/* Frame1 Styling */
.frame1 {
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
}

/* Text and Image Container */
.text-and-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; /* Ensure the container takes full height */
}

/* Text Content Styling */
.text-content {
  flex: 1;
  padding-right: 40px; /* Move text to the right */
}

.text1 {
  color: #188897;
  font-weight: bold;
  font-size: 50px;
  text-shadow: 2px 2px 15px rgba(125, 124, 249, 0.3);
  margin: 0;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Roboto Slab', serif;
  padding-right: 40px;
}

.text2 {
  padding-top: 20px;
  color: #fb735c;
  font-style: italic;
  font-weight: bold;
  font-size: 35px;
  font-family: 'Roboto Slab', serif;
  padding-right: 70px;
}

/* Side Image Styling */
.side-image {
  flex: 1;
  width: 370px; /* Adjusted size */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the image covers the container */
  margin: 10px;
  padding-left: 20px; /* Move image to the left */
}



@keyframes slideBackground {
  0% {
    background-position: -100%;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.animated-text {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255,255,255,0) 50%, rgba(255,255,0,0.5) 50%);
  background-size: 200%;
  animation: slideBackground 3s linear infinite;
  font-weight: bold;
}

/* Frame2 Styling */
.frame2 {
  display: flex;
  gap: 20px;
  justify-content: center; /* Center align buttons */
  margin-top: 20px;
}

/* Button Styling */
button {
  transition: background-color 0.3s ease;
  background-color: yellow;
  color: #070707;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer; /* Add cursor property */
  margin-right: 30px; /* Add margin between buttons */
}

button:hover {
  background-color: #070406;
  color: white;
}

/* Reset margin and padding for body and html */
html, body {
  margin: 0;
  padding: 0;
}

/* Blank11 Styling */
.blank11 {
  height: 200px;
  background: linear-gradient(to bottom, #6ca2b8, white);
}

.blank112 {
  height: 150px;
  background: linear-gradient(to top, #7f8c8d, white);
  margin: 0; /* Ensure no extra space */
  padding: 0; /* Ensure no extra space */
}

/* Remove any margin or padding on the sections */
.blank11.transition-gradient, .background {
  margin: 0;
  padding: 0;
}

/* Background Section Adjustments */
.background {
  background-color: #000000;
  background-image: linear-gradient(315deg, #000000 0%, #7f8c8d 74%);
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0;
  padding-top: 10%; /* Adjust padding to avoid gaps */
  border-bottom-left-radius: 130px; /* Add border radius to the bottom left */
  border-bottom-right-radius: 130px; /* Add border radius to the bottom right */
}

.hello {
  font-size: 60px;
  color: #ffffff;
  text-align: center;
  margin: 0; /* Ensure no extra space */
  padding-bottom: 40px; /* Ensure no extra space */
}

/* Iframe Styling */
iframe {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  height: 510px;
  width: 910px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid yellow;
  border-radius: 20px;
}

/* Custom Div Styling */
.custom-div {
  width: 100%; /* Ensure the custom div fits the browser width */
  min-height: 565px;
  position: relative;
  display: flex; /* Add Flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  overflow: hidden; /* Prevent overflow */
  margin: 0; /* Remove default margin */
  padding-bottom: 30; /* Remove default padding */
}


.aboutUsContainer {
  border-radius: 30px;
  border: 6px solid #050505;
  padding: 20px;
  margin: 20px;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width:  1300px;
  margin: auto;
  font-family: 'Roboto Slab', serif;
}



.aboutUsTitle h1 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'Roboto Slab', serif;
  text-align: center;
}

.aboutUsContent {
  background: #333333;
  font-size: 18px;
  color: #ffffff;
  padding: 15px;
  text-align: left;
  margin: 10px 0;
  font-family: 'Roboto Slab', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease-in-out;
}

.aboutUsContent h2 {
  background-color: #92e3a9;
  font-size: 25px;
  margin: 20px 0 10px;
  text-align: left;
  width:260px;
}
.aboutUsContent h3{
  text-align: center;
}
.aboutUsContent p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.download-button {
  background-color: rgb(94, 197, 24);
  color: black;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 26px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
}

.downloadButtonDesign p{
  color: rgb(75, 77, 75); 
  font-size: 25px; 
}
.downloadButtonDesign h2{
  font-size: 40px;
  
}

.downlaodimage {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 20vh; /* Full viewport height to center vertically */
}


/* OpenSource Styling */
.openSource {
  border-radius: 30px;
  border: 4px solid #000000;
  padding: 20px;
  margin: 20px;
  background-color: #1a1a1a;
  height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.openSourceText {
  position: relative;
  font-size: 40px;
  color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px 0;
  font-family: 'Roboto Slab', serif;
}

.openSourceText1 {
  font-size: 18px;
  color: #ffffff;
  background: #333333;
  border: 2px solid #0c0e0d;
  padding: 15px;
  text-align: left;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto Slab', serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
  transition: opacity 0.3s ease-in-out; /* Smooth transition for opacity */
}

.openSourceText1 p {
  flex: 1;
  margin-right: 20px;
  font-size: 25px;
}

.openSourceText1 img {
  flex-shrink: 0;
  width: 520px;
  height: 520px;
}
.contributButtton{
  background-color: yellow;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer; /* Add cursor property */
  margin-right: 30px; /* Add margin between buttons */
  margin-left: 30px;
}




.footer-container {
  height: 350px;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background-color: #dad8d8;
  font-family: 'Roboto Slab', serif;
}

.footer-left {
  max-width: 30%;
}

.footer-logo {
  max-width: 600px; /* Adjust size as needed */
  margin-bottom: 20px;
}
.footer-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  font-style: italic;
  width: 100%;
  text-decoration: underline rgb(255, 255, 255);
}

.footer-left p {
  margin-bottom: 10px;
  color: #555;
}

.shipfast-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.footer-right {
  display: flex;
  justify-content: space-between;
  width: 60%;
  position: relative; /* Add relative positioning */
}

.footer-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%; /* Adjust width as needed */
  background-image: url('images/Asset 4.png'); /* Add your background image here */
  background-size: cover; /* Ensure the background image covers the entire area */
  background-position: right; /* Align the background image to the right */
  opacity: 0.5; /* Optional: Adjust opacity for better visibility of text */
}

.footer-column {
  max-width: 150px;
  z-index: 1; /* Ensure content is above the background image */
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

.footer-bottom {
  height: 10px;
  text-align: center;
  padding: 20px;
  background-color: #e9e9e9;
  color: #555;
}

.blank119 {
  height: 100px;
  background: linear-gradient(to top, #6ca2b8, white);
  
}

.blank119 p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: large;
  font-family: 'Roboto Slab', serif;
  color: black;
}

.blank119 a {
  color: #0073e6;
  text-decoration: none;
}




/* Books Container */
.books-container {
  margin-top: 20px;
  text-align: left;
  image-resolution: 40px;
  margin: 30px;
  padding: 20px;
  width: 300px;
  height: 200px;
}
.books-container img {
  width: 100px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  display: flex;
  padding-right: 10px;
  
}

.book-preview {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center align children horizontally */
    justify-content: center; /* Center align children vertically */
    text-align: center; /* Center align text */
    padding: 20px; /* Padding inside the container */

}
.heha{
  padding-bottom: 40px;
}
.book-title{
color: wheat;
font-size: 20px;
}
.buynowButton{
  padding-top: 60px;
  color: black;
  font-size: 30px;
  border-radius: 10px;
  border-color: #000;
  background-color: yellow;
  padding: 10px;
  font-weight: bold;  
}
.book-price{
  font-size: 30px;
}
.buynowButton:hover{
  color: rgb(252, 252, 252);
  background-color: black;
}



/* Book Card CSS is below*/

  .cardBody{
    font-family: 'Roboto Slab', serif;
    color: #F1F5F9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160vh;
    margin: 0;
    
  }

  .pricing-card {
    background-color: #0F172A;
    border-radius: 10px;
    padding: 30px;
    width: 400px;
    height: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card-header {
    text-align: left;
  }

  .badge {
    background-color: #1E40AF;
    color: #FBBF24;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 12px;
    float: right;
  }

  .cardheading {
    font-size: 45px;
    margin: 10px 0;
    color: #ffffff;
    text-align: center;
    padding-left: 30px;
  }

  p {
    margin: 10px 0;
    color: #CBD5E1;
    line-height: 1.5;
    text-align: center;
  }

   .price {
      margin-top: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .amount-trial-container {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .amount {
      font-size: 100px;
      font-weight: bold;
      color: #f0f0f0;
      text-align: center;
      padding-left: 40px;
  }
  
  .trial {
      background-color: #FBBF24;
      color: #1E293B;
      border-radius: 5px;
      margin-left: 10px; /* Add some space between amount and trial */
      display: inline-block;
      font-weight: bold;
      font-size: 12px; /* Reduced font size */
  }

  .card-body {
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-left: 10px;
}
  .cardtext{
    padding-top: 40px;
  }

 
.payment-button {
  background-color: yellow;
  color: black;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

  .payment-button:hover {
    background-color: black;
  }

























/* Media Queries */

/* For tablets (768px and up) */
@media (max-width: 1024px) {
  .logo-image {
    padding-right: 20px; /* Reduce padding for tablet */
  }
  .headertext {
    font-size: 20px; /* Adjust font size for tablet */
    padding-left: 20px; /* Adjust padding for tablet */
  }
  .text1 {
    font-size: 40px;
  }

  .text2 {
    font-size: 30px;
  }

  .side-image {
    width: 300px;
  }

  .hello {
    font-size: 40px;
    color: #ffffff;
  }

  .openSourceText {
    font-size: 35px;
  }

  .openSourceText1 p {
    font-size: 20px;
  }

  .openSourceText1 img {
    width: 400px;
    height: 400px;
  }

  .aboutUsContainer {
    width: 90%;
    padding: 15px;
  }

  .aboutUsTitle h1 {
    font-size: 35px;
  }

  .aboutUsContent {
    font-size: 16px;
    padding: 10px;
  }

  .aboutUsContent h2 {
    font-size: 22px;
    width: 100%;
  }
}

/* For phones (max-width: 768px) */
@media (max-width: 768px) {

  
  .header-container{
    width: 95%;
    padding: 10px;
    font-size: 11px;
  }
  .temp {
    font-size: 20px;
  }

  .text1 {
    font-size: 46px;
    padding-left: 70px; /* Remove padding */
    text-align: left;
  }

  .text2 {
    font-size: 30px;
    padding-right: 0; /* Remove padding */
  }

  .side-image {
    width: 100%; /* Ensure image takes full width */
    max-width: 410px; /* Set max width */
    margin: 0 auto; /* Center the image */
    padding-left: 0; /* Remove padding */
  }

  .text-and-image {
    flex-direction: column; /* Stack text above the image */
  }

  .frame2 {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Add space between buttons */
  }

  .frame2 button {
    width: 70%; /* Set button width */
    margin: 0 auto; /* Center align buttons */
  }

  .blank112 h1 {
    font-size: 14px;
    white-space: nowrap; /* Ensure text fits in one row */
  }

  .hello {
    font-size: 45px;
    color: #ffffff;
    text-align: center;
    margin: 0; /* Ensure no extra space */
    padding-bottom: 40px; /* Ensure no extra space */
  }

  .openSourceText {
    font-size: 20px;
  }

  .openSourceText1 p {
    font-size: 14px;
  }

  .openSourceText1 img {
    width: 230px;
    height: 230px;
  }

  iframe {
    width: 100%; /* Make iframe responsive */
    max-width: 350px; /* Set max width */
    height: 340px; /* Maintain aspect ratio */
  }

  .custom-div {
    padding-bottom: 80px;
    padding-right: 10px;
  }

  .openSource {
    height: 1200px; /* Adjust height for mobile */
    padding: 10px;
  }

  .openSourceText1 {
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center align items */
    text-align: center; /* Center align text */
  }

  .openSourceText1 img {
    width: 100%; /* Make image responsive */
    max-width: 270px; /* Set max width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Add bottom margin */
  }

  .openSourceText1 p {
    margin-right: 0; /* Remove right margin */
    margin-top: 10px; /* Add top margin */
    font-size: 18px; /* Adjust font size */
  }

  .contributButtton {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 30px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    height: 800px;
  }

  .footer-left {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo {
    max-width: 150px; /* Adjust size as needed */
    margin-bottom: 10px;
    padding-right: 60px;
  }

  .footer-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-left p {
    font-size: 13px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 14px;
  }

  .footer-column ul {
    padding: 0;
    list-style: none;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
  }

  .blank119 {
    order: 1; /* Ensure this section is at the bottom */
    height: auto;
    background: linear-gradient(to top, #6ca2b8, white);
    padding: 20px 10px;
  }

  .blank119 p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: large;
    text-align: center;
    font-size: 10px;
    flex-wrap: wrap; /* Add flex-wrap property */
    color: #000;
  }

  .blank119 p span {
    width: 100%; /* Set width to 100% */
    text-align: center; /* Center align text */
  }

  .blank119 a {
    color: #0073e6;
    text-decoration: none;
    padding-left: 5px;
  }

  .footer-left {
    order: 0; /* Ensure the logo section is in the middle */
  }

  .footer-right::before {
    width: 330px;
  }

  .cardBody {
    width: 80%; /* Full width on mobile */
    padding-left: 60px; /* Adjust padding for mobile */
}

.card-body {
    padding-left: 10px; /* Adjust padding for mobile */
}
.books-container{
  width: 190px;
}
.books-container img{
  width: 60px;

}
.book-title{
  font-size: 10px;
}
.buynowButton{
  font-size: 12px;
}
.book-price{
  font-size: 15px;
}

.aboutUsContainer {
  width: 95%;
  padding: 10px;
}

.aboutUsTitle h1 {
  font-size: 30px;
}

.aboutUsContent {
  font-size: 14px;
  padding: 8px;
}

.aboutUsContent h2 {
  font-size: 20px;
  width: 100%;
}

}