/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

html {
  scrollbar-width: none;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
}

.arrow {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 5px solid #dbd000;
  border-right: 5px solid #dbd000;
  transform: rotate(45deg);
  margin: -10px;
  animation: scroll1 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -.2s;
}

.arrow span:nth-child(3) {
  animation-delay: -.4s;
}

@keyframes scroll1 {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-40px, -40px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(0, 0);
  }
}

/* Header */
header {
  padding: 10px 20px;
  background-color: #fefefe;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  position: fixed;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #f7a61a, transparent);
  pointer-events: none; 
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

/* Logo Styling */
.logo img {
  height: 70px;
  margin-left: 50px;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: 50%; 
  height: 120%; 
  border: 1px solid #ffffff;
  border-radius: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.218);
  pointer-events: none;
  z-index: -1; 
  background-color: white;
}

#menu {
  display: flex;
  justify-content: center;
  width: 100%; 
}

#menu li {
  margin-left: 30px;
}

#menu li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 5px 20px;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  position: relative;
  transition: all 0.5s ease; 
  cursor: pointer; 
}

#menu li a::before {
  display: none;
}

#menu li a:hover {
  color: #85231c; 
  transform: scale(1.05); 
}

.Order-now {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f7a61a; 
  color: rgb(0, 0, 0); 
  padding: 10px 20px; 
  font-size: 16px; 
  font-weight: 700; 
  text-decoration: none; 
  border-radius: 10px; 
  transition: transform 0.3s ease; 
  animation: shake 1s ease-in-out infinite; 
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1); 
}

/* Shake animation */
@keyframes shake {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  25% {
    transform: translateY(-50%) translateX(-5px);
  }
  50% {
    transform: translateY(-50%) translateX(5px);
  }
  75% {
    transform: translateY(-50%) translateX(-5px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}


/* Menu Toggle (for mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: rgb(0, 0, 0);
  margin: 4px 0;
  transition: 0.3s ease;
}

.profile-picture {
  margin-left: -50px;
  margin-top: -80px;
}

.profile-picture img {
  width: 740px;
  height: 740px;
  margin-top: 120px;
}

/* Home Section Styling */
#home {
  position: relative;
  overflow: hidden; 
}

#home .home-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
}

#home .home-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-watermark:not(#home .home-watermark) {
  display: none;
}

.container-home-section,
.arrow {
  position: relative;
  z-index: 1;
}

.container-home-section {
  margin-left: 80px;
  display: flex;
  flex-wrap: wrap;
}

.home-content {
  margin-top: 140px;
}

.home-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 50px;
}

.home-content h3 {
  color: black;
  font-size: 3.6rem;
  margin-bottom: 30px;
}

.home-content h3 span {
  color: #85231c;
  font-size: 3.2rem;
  margin-bottom: 30px;
  font-family: 'Garnet Capitals Bold' sans-serif;
  text-transform: uppercase;
}

@font-face {
  font-family: 'Garnet Capitals Bold';
  src: url('fonts/GarnetCapitals-Bold.woff2') format('woff2'),
       url('fonts/GarnetCapitals-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

.home-content p {
  width: 750px;
  color: #515151;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: justify;
  margin-bottom: 40px;
}

.proceed-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f7a61a;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1); 
}

.proceed-btn:hover {
  background-color: #f7a61a;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); 
}

.star {
  align-items: center;
}

.star1 {
  margin-top: -180px;
  margin-left: -60px;
}

.star1 img {
  width: 350px;
}

.star p {
  margin-top: -145px;
  margin-left: -5px;
  font-size: 1rem;
  color: #515151;
}

.star1 .earth{
  width: 300px;
  margin-bottom: 100px;
  margin-left: 30px;
}

/*about us*/
.about-section {
  position: relative;
  background-color: #f2f2f26f; 
  padding: 150px 20px;
  text-align: center;
  overflow: hidden;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 18px;
  color: #333;
  line-height: 2.1;
  margin-bottom: 15px;
  margin-top: 30px;
  width: 120%;       
  max-width: 120%;   
  box-sizing: border-box; 
  margin-left: -10%; 
  margin-right: -10%; 
  text-align: center;
}

.about-content .phara-main{
  margin-top: 50px;
}


.about-content .phara2 {
  font-size: 22px !important;
}

.watermark-logo {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: 1;
}

.watermark-logo img {
  width: 700px; 
  max-width: 100%;
}


/*Counting ball*/
.stats-section {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
}

.stats-section h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 100px;
}

.stats-section .highlight {
  color: #b1ad00;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-box {
  background: linear-gradient(to bottom right, #f7f7f7, #e6e6e6);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    inset -3px -3px 8px rgba(255, 255, 255, 0.415),
    inset 3px 3px 8px rgba(0, 0, 0, 0.05),
    4px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-box h3 {
  font-size: 38px;
  color: #a7a506;
  margin: 0;
  font-weight: bold;
}

.stat-box p {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  text-align: center;
  max-width: 150px;
}

/*servicers*/
.title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center; 
}

.services-section {
  padding: 50px 20px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 50px auto 40px;
  text-align: center;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 90px;
}

.service-item {
  max-width: 180px;
}

.service-item img {
  width: 180px;
  height: 180px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 14px;
  text-align: center;
}

/*prowriter*/
.pro-writers {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #f9f9f9;
  padding: 50px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.writer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.writer-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
}

.writer-info {
  text-align: left;
  max-width: 500px;
}

.writer-name {
  font-size: 32px;
  font-weight: bold;
}

.writer-title {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #666;
}

.writer-stars {
  color: gold;
  font-size: 20px;
  margin: 10px 0;
}

.writer-description {
  font-size: 16px;
  max-width: 1400px;
  line-height: 1.5;
  color: #333;
  text-align: justify;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-nav {
  margin-top: 20px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  background: #ccc;
  cursor: pointer;
}

.carousel-indicator.current-slide {
  background: #333;
}

/*pricing*/
.pricing-section {
  text-align: center;
  padding: 40px 20px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 400px;
  padding: 30px 20px;
}

.card-title {
  text-transform: uppercase;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
  text-decoration: underline;
}

.card-subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 20px;
}

.price {
  background: linear-gradient(to right, #0594cc7e, #057ac0);
  color: #fff;
  padding: 15px;
  font-size: 32px;
  font-weight: bold;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column; /* stack vertically */
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.price .currency {
  font-size: 25px; 
  margin-bottom: 2px;
  margin-left: -100px;
}

.price .amount {
  font-size: 45px; 
  font-weight: bold;
  margin-top: -10px;
}

.unit {
  font-size: 14px;
  font-weight: lighter;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.features li {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
  background-color: #eeeeee47;
  padding: 10px;
}

.price-note {
  background: #007ec4;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  margin-top: 10px;
}


/*payment*/
.features-section {
  padding: 10px 20px;
  text-align: center;
}

.payment-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: -20px;
  transition: transform 0.3s ease;
  max-width: 100%;
}

.payment-image-box img {
  width: 800px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  border-radius: 12px;
}


.page-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Footer styles */
footer {
  background-color: #ffffff; 
  padding: 20px 0;
  font-family: Arial, sans-serif;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: auto; 
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 250px; 
}

.footer-left {
  display: flex;
  align-items: center;
  flex: 2;
}

.footer-left .earth2 {
  width: 200px;
  margin-left: 150px;
  margin-top: -50px;
}

.footer-logo {
  max-width: 150px;
  margin-right: 20px;
}

.footer-logo2 {
  max-width: 150px;
  margin-right: 20px;
  display: none; 
}

.footer-left-text {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.footer-left p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 10px;
  transition: transform 0.5s ease;
  display: inline-block;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons i {
 font-size: 28px;
 color: black;
}

.footer-right {
  text-align: right;
  flex: 1;
}

/* Footer Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 250px;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
  text-decoration: none;
  font-size: 14px;
}

.contact-item img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  border-top: 1px solid #ddd;
  font-size: 13px;
  margin-top: 10px;   
  margin-bottom: -15px;
  color: #424242;
}

  

/* 1200px - Large Desktops */
@media (max-width: 1200px) {
  .container-home-section {
    margin-left: 40px;
  }
  .profile-picture img {
    width: 500px;
    height: 500px;
  }
  .home-content p {
    width: 600px;
  }
  #home .home-watermark {
    width: 120%;
    height: 120%;
  }
}

/* 992px - Small Desktops */
@media (max-width: 992px) {
  header {
    padding: 10px 0;
  }
  .logo img {
    margin-left: 20px;
    height: 60px;
  }
  .Order-now {
    right: 20px;
    padding: 8px 15px;
    font-size: 14px;
  }
  .container-home-section {
    margin-left: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .home-content {
    margin-top: 100px;
  }
  .home-content p {
    width: 90%;
    margin: 0 auto 30px;
  }
  .profile-picture {
    margin-left: 0;
    margin-top: 50px;
  }
  .home-content h3 {
    font-size: 2rem;
    color: black;
  }
  .profile-picture img {
    width: 400px;
    height: 400px;
  }
  .about-content p {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
  }
  .stats-container {
    gap: 30px;
  }
  .stat-box {
    width: 180px;
    height: 180px;
  }
  .services-container {
    gap: 40px;
    justify-content: center;
  }
  .writer-card {
    flex-direction: column;
    text-align: center;
  }
  .writer-info {
    text-align: center;
    max-width: 100%;
  }
  .carousel {
    padding: 30px 20px;
  }
}

/* 768px - Tablets */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    justify-content: flex-end;
  }
  nav::before {
    display: none; 
  }
  #menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  #menu.active {
    right: 0;
  }
  #menu li {
    margin: 20px 0;
  }
  .menu-toggle {
    display: flex;
    margin-right: 20px;
    z-index: 1001;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  .Order-now {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 20px;
    animation: none;
  }

  /* Home Section */
  .home-content {
    margin-top: -10px;
  }
  .home-content h1 {
    font-size: 2.5rem;
    margin-top: 30px;
  }
  .home-content h3 {
    font-size: 2rem;
    color: black;
  }
  .home-content h3 span {
    font-size: 2.8rem;
  }
  .profile-picture {
    margin-top: -40px;
    order: -1;
  }
  .profile-picture img {
    width: 350px;
    height: 350px;
  }

  .stats-section {
    padding: 60px 15px;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    justify-items: center;
  }

  .stat-box {
    width: 45vw;
    height: 45vw;
    max-width: 160px;
    max-height: 160px;
  }

  .stat-box h3 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 12px;
    max-width: 120px;
  }

  .services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    padding: 0 15px;
  }
  .service-item {
    width: 100%;
    max-width: 160px;
    text-align: center;
  }
  .service-item img {
    max-width: 150px;
    height: auto;
  }

  /* Other Sections */
  #home .home-watermark {
    width: 380%;
    height: 380%;
    opacity: 0.04;
  }
  .writer-photo {
    width: 200px;
    height: 200px;
  }
  .writer-description {
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .footer-left-text {
    margin-left: 0;
    margin-top: 20px;
  }
  .footer-right {
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center; 
}

.footer-left, .footer-right {
    text-align: center;
    margin-bottom: 20px;
    width: 100%; 
}

.footer-left {
    flex-direction: column;
    align-items: center; 
    margin-bottom: 20px;
}

.footer-logo {
    margin: 0 0 10px 0;
}

.social-icons {
    margin-top: 20px;
}
.footer-right {
  text-align: center;
  margin-top: 20px;
}

.contact-info {
margin-left: 0; 
align-items: center; 
text-align: center; 
}

.contact-item {
justify-content: center; 
}
.footer-container {
  flex-direction: column;
  align-items: center;
}
.footer-left, 
.footer-right {
  width: 100%; 
}
.footer-left {
  margin-bottom: 20px;
}
.footer-logo {
  margin: 0 0 10px 0;
}
.social-icons {
  margin-top: 20px;
}
}

/* 576px - Large Phones */
@media (max-width: 576px) {
  .home-content h1 {
    font-size: 2rem;
    margin-top: -10px;
  }
  .home-content h3{
    color: black;
  } 
  .home-content h3 span {
    font-size: 2.1rem;
    color: #85231c;
    font-family: 'Garnet Capitals Bold' sans-serif;
  }
  .about-section{
    padding: 80px 20px;
  }
  .home-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .profile-picture img {
    margin-top: 60px;
    width: 380px;
    height: 380px;
  }
  .about-content h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .about-content p {
    font-size: 16px;
    line-height: 1.8;
  }
  .stats-section h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .stat-box {
    width: 140px;
    height: 140px;
  }
  .services-container {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .service-item {
    max-width: 180px;
    margin-bottom: 25px;
  }
  .writer-photo {
    width: 180px;
    height: 180px;
  }
  .writer-name {
    font-size: 24px;
  }
  .writer-description {
    font-size: 14px;
  }
  .pricing-rate {
    font-size: 40px;
  }
  .feature-box img, 
  .feature-box1 img {
    height: 60px;
  }
  .carousel-button {
    font-size: 24px;
  }
  .pricing-tabs {
    flex-direction: column;
    gap: 10px;
  }
  .tab-button {
    width: 100%;
  }
  .star {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .star1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    top: 30px;
    margin-left: 5px;
  }
  .star1 img {
    display: block;
    margin: 0 auto;
    width: 300px;
  }
  .star1 .earth {
    position: absolute;
    top: 90%;
    left: 45%;
    transform: translate(-50%, -50%);
  }
  .star p {
    text-align: center;
    width: 100%;
    margin-top: -100px;
  }
  .proceed-btn{
    margin-top: 120px;
    margin-bottom: 20px;
  }
  .features-section{
    align-items: center;
    justify-content: center;
  }
  .features-section .payment-image-box img{
    width: 300px;
    margin-top: -20px;
  }
  .footer-left .earth2{
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
  }
  .footer-right{
    margin-top: -10px;
  }
}

@media (max-width: 480px) {
  .footer-left, .footer-right {
      font-size: 12px;
  }

  .footer-logo {
      max-width: 120px;
  }

  .social-icons img {
      width: 20px;
      height: 20px;
  }

  .contact-info img {
      width: 18px;
      height: 18px;
  }
  .social-icons {
      margin-top: 20px;
  }
  .contact-info {
      margin-top: 10px;
  }
  .footer-bottom {
      margin-top: -10px;
  }
  .stats-container {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .stat-box {
    width: 60vw;
    height: 60vw;
    max-width: 180px;
    max-height: 180px;
  }

  .stat-box h3 {
    font-size: 28px;
  }
  .footer-left, 
  .footer-right {
    font-size: 12px;
  }
  .footer-logo {
    max-width: 120px;
  }
  .contact-info img {
    width: 18px;
    height: 18px;
  }
}       

@media (max-width: 430px){
  .stats-section h2{
    font-size: 1rem;
  }
}

/* 400px - Small Phones */
@media (max-width: 400px) {
  .home-content h1 {
    font-size: 1.8rem;
  }
  .home-content h3, 
  .home-content h3 span {
    font-size: 2rem;
  }
  .profile-picture{
    margin-top: 30px;
  }
  .profile-picture img {
    width: 240px;
    height: 240px;
  }
  .stats-container {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .stat-box {
    width: 160px;
    height: 160px;
  }
  .footer-logo {
    max-width: 120px;
  }
  .social-icons i {
    font-size: 24px;
  }
  .contact-info p {
    font-size: 13px;
  }
  .arrow {
    display: none;
  }
  .footer-right {
    text-align: center;
    margin-top: 20px;
}

.contact-info {
    align-items: center;
}

.contact-item {
    justify-content: center;
}
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .home-content {
    margin-top: 60px;
  }
  .profile-picture img {
    width: 250px;
    height: 250px;
  }
  #menu li {
    margin: 10px 0;
  }
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-container {
    grid-template-columns: repeat(4, 1fr);
  }
}




/* 1920px - Large Desktop Screens */
@media (min-width: 1920px) {
  header {
    padding: 15px 0;
    width: 100%;
  }
  
  .container {
    max-width: 2300px;
    margin: 0 auto;
  }
  
  .logo img {
    height: 80px;
    margin-left: 100px;
  }
  
  nav::before {
    width: 60%;
    left: 50%;
  }
  
  #menu li {
    margin-left: 40px;
  }
  
  #menu li a {
    font-size: 1.2rem;
    padding: 8px 25px;
  }
  
  .Order-now {
    right: 100px;
    padding: 12px 25px;
    font-size: 1.2rem;
  }
  
  /* Home Section */
  .container-home-section {
    max-width: 2300px;
    margin: 50px auto;
    padding-left: 100px;
  }
  
  .home-content {
    margin-top: 180px;
  }
  
  .home-content h1 {
    font-size: 4rem;
  }
  
  .home-content h3 {
    font-size: 4.5rem;
  }
  
  .home-content h3 span {
    font-size: 4rem;
  }
  
  .home-content p {
    width: 900px;
    margin-top: 100px;
    font-size: 1.5rem;
    line-height: 2.2rem;
  }

  #home .home-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; 
    height: 100vh; 
    z-index: 0;
    opacity: 0.06;
    pointer-events: none;
    overflow: hidden;
  }

  #home .home-watermark img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    min-width: 1920px;
    min-height: 1080px; 
  }
  
  .profile-picture img {
    width: 900px;
    height: 900px;
  }
  
  .proceed-btn {
    margin-top: 60px;
    padding: 15px 30px;
    font-size: 1.4rem;
  }

  .star {
    align-items: center;
  }
  
  .star1 {
    margin-top: -180px;
    margin-left: -60px;
  }
  
  .star1 img {
    width: 440px;
  }
  
  .star p {
    margin-top: -180px;
    margin-left: -0px;
    font-size: 1.5rem;
    color: #515151;
  }
  
  .star1 .earth{
    width: 400px;
    margin-bottom: 130px;
    margin-left: 30px;
  }
  
  /* About Section */
  .about-container {
    max-width: 1200px;
  }
  
  .about-content h2 {
    font-size: 42px;
  }
  
  .about-content p {
    font-size: 22px;
    line-height: 2.4;
  }
  
  .watermark-logo img {
    width: 900px;
  }
  
  /* Stats Section */
  .stats-section h2 {
    font-size: 42px;
  }
  
  .stat-box {
    width: 280px;
    height: 280px;
  }
  
  .stat-box h3 {
    font-size: 48px;
  }
  
  .stat-box p {
    font-size: 18px;
    max-width: 200px;
  }
  
  /* Services Section */
  .services-container {
    gap: 120px;
    margin-top: 80px;
  }
  
  .service-item {
    max-width: 220px;
  }
  
  .service-item img {
    width: 220px;
    height: 220px;
  }
  
  .service-item p {
    font-size: 16px;
  }
  
  /* Writers Section */
  .carousel {
    max-width: 1400px;
    padding: 70px;
  }
  
  .writer-card {
    gap: 50px;
  }
  
  .writer-photo {
    width: 300px;
    height: 300px;
  }
  
  .writer-name {
    font-size: 42px;
  }
  
  .writer-title {
    font-size: 24px;
  }
  
  .writer-description {
    font-size: 20px;
    line-height: 1.8;
  }
  
  /* Pricing Section */
  .pricing-cards {
    gap: 50px;
  }
  
  .pricing-card {
    width: 500px;
    padding: 40px 30px;
  }
  
  .card-title {
    font-size: 28px;
  }
  
  .card-subtitle {
    font-size: 22px;
  }
  
  .price {
    padding: 20px;
  }
  
  .price .currency {
    font-size: 30px;
  }
  
  .price .amount {
    font-size: 60px;
  }
  
  .features li {
    font-size: 18px;
    padding: 15px;
  }
  
  /* Footer */
  .footer-container {
    max-width: 2300px;
    padding: 0 50px;
  }
  
  .footer-logo {
    max-width: 200px;
  }
  
  .footer-left p {
    font-size: 18px;
    line-height: 1.8;
  }
  
  .social-icons i {
    font-size: 36px;
  }
  
  .contact-item a {
    font-size: 18px;
  }
  
  .contact-item img {
    width: 25px;
    height: 25px;
  }
  
  .footer-bottom {
    font-size: 16px;
  }
  
  /* Payment Methods */
  .payment-image-box img {
    width: 1000px;
  }
}