* {
  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: #fff;
  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;
}

/* Navigation Styles */
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 (Centered items) */
#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;
}



.contact-in {
  margin: 0 7rem;
  display: flex;
  flex-direction: row;
  margin-top: 120px;
  align-items: flex-start;
  padding: 20px;
  gap: 15rem;
}

input:checked + label:after {
  left: calc(100% - 25px); 
  transform: translateX(0);
  background: linear-gradient(180deg,#777,#3a3a3a);
}

.contact-form {
  width: 100%;
  max-width: 550px;
  border: 1px solid #2B5AC2;
  border-radius: 20px;
  padding: 20px;
}

.contact-in h1 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

body.dark-mode ul li a{
  color: white;
}

body.dark-mode nav ul li a::before {
  background-color: #ffffff; 
}

.contact-in p{
  margin-bottom: 20px;
}

.contact-pic {
  width: 100%;
  max-width: 600px;
  padding: 0;
}

.contact-pic img {
  width: 100%;
  border-radius: 20px;
}

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 10px;
  height: 50px;
  margin-top: 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 20px;
  border: 1px solid #ccc !important;
  border-radius: 20px !important;
  box-sizing: border-box;
}

.contact-form-btn {
  margin-top: 20px;
  width: 100%;
  color: #182431;
  text-decoration: none;
  height: 50px;
  font-weight: bold;
  padding: 10px;
  border: 1px solid #2B5AC2;
  border-radius: 88px;
  background-color: #f0f8ff;
  transition: background-color 0.3s, color 0.3s;
}

.contact-form-btn:hover {
  background-color: #2B5AC2;
  color: white;
  cursor: pointer;
}

/* Media Queries for Responsiveness */

@media (max-width: 768px) {
  .contact-in {
      margin: 15px;
      margin-top: 120px;
      flex-direction: column;
      align-items: center;
  }

  .contact-form {
      width: 100%;
      max-width: 100%;
      margin: 0;
  }

  .contact-pic {
      width: 100%;
      max-width: 100%;
      margin: 0;
  }
}

@media (max-width: 480px) {
  .contact-in {
      margin: 15px;
      margin-top: 50px;
      flex-direction: column-reverse; 
      align-items: center;
  }

  .contact-form {
      width: 100%;
      max-width: 100%;
      margin-top: -200px;
      margin-bottom: 50px;
  }

  .contact-pic {
      width: 100%;
      max-width: 100%;
      margin: 0;
  }

  .contact-pic img {
      margin-top: 20px; 
  }

  .contact-form h1 {
      font-size: 1.8rem;
  }

  input[type="text"], input[type="email"], textarea {
      font-size: 0.9rem;
  }

  .contact-form-btn {
      font-size: 0.9rem;
  }
}







































/* 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-logo {
  max-width: 150px;
  margin-right: 20px;
}

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

.dark-mode .footer-logo {
  display: none; 
}

.dark-mode .footer-logo2 {
  display: block; 
}

.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;
}

@media (max-width: 768px) {
  .footer-right {
      text-align: center;
      margin-top: 20px;
  }
  
  .contact-info {
    margin-left: 0; 
    align-items: center; 
    text-align: center; 
  }
  
  .contact-item {
    justify-content: center; 
  }
}

@media (max-width: 400px) {
  .footer-right {
    text-align: center;
    margin-top: 20px;
}

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

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

.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;
}

/*Media Queries*/
@media (max-width: 768px) {
  .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;
  }
}

@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;
  }
}       
      

/* 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;
  }
  #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(7px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) 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%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    justify-items: center;
  }
  .stat-box {
    width: 45vw;
    height: 45vw;
    max-width: 160px;
    max-height: 160px;
    margin: 0;
  }

  .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: 100px;
    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;
  }
}

/* 576px - Large Phones */
@media (max-width: 576px) {
  .home-content h1 {
    font-size: 2rem;
    margin-top: 20px;
  }
  .home-content h3{
    color: black;
  } 
  .home-content h3 span {
    font-size: 2.1rem;
    -webkit-text-stroke: 2px #C2B800;
  }
  .home-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .profile-picture img {
    width: 280px;
    height: 280px;
  }
  .about-content h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .about-content p {
    font-size: 16px;
    line-height: 1.8;
  }
  .stats-section h2 {
    font-size: 24px;
    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%;
  }
}

/* 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 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;
  }
}

/* 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);
  }
}

/* Footer Specific Adjustments */
@media (max-width: 768px) {
  .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;
  }
}

@media (max-width: 480px) {
  .footer-left, 
  .footer-right {
    font-size: 12px;
  }
  .footer-logo {
    max-width: 120px;
  }
  .contact-info img {
    width: 18px;
    height: 18px;
  }
}






/* 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: #fff;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}

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

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

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

/* Menu (Centered items) */
#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;
}

#menu li a::before {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #000;
transition: width 0.3s ease;
}

#menu li a:hover::before {
width: 100%;
}

.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: 70px;
}

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

/* Home Section Styling */
#home {
position: relative; /* This is important to contain the watermark */
overflow: hidden; /* This will prevent the watermark from leaking */
}

#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: transparent;
font-size: 3.6rem;
-webkit-text-stroke: 4px #C2B800;
margin-bottom: 30px;
}

.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: #ffffff;
color: rgb(0, 0, 0);
text-decoration: none;
font-weight: 600;
border-radius: 10px;
font-size: 1.2rem;
border: 2px solid #dbd000;
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: #ffffff;
box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

.star {
align-items: center;
}

.star1 {
gap: 5px;
}

.star1 i {
font-size: 28px;
}

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

/*about us*/
.about-section {
position: relative;
background-color: #f2f2f26f; 
padding: 100px 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: -50px;
margin-bottom: 65px;
}

.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 .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: #f1f1f1;
border-radius: 50%;
width: 220px;
height: 220px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

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

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

.stat-box p {
margin-top: 20px;
font-size: 14px;
color: #333;
max-width: 130px;
}

/*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-tabs {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.tab-button {
padding: 10px 30px;
border: none;
background-color: #e0e0e0;
cursor: pointer;
font-weight: bold;
border-radius: 5px 5px 0 0;
}
.tab-button.active {
background-color: white;
border-bottom: 2px solid transparent;
}
.pricing-tab {
display: none;
border: 1px solid #ccc;
padding: 30px;
max-width: 600px;
margin: 0 auto;
border-radius: 10px;
background: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.pricing-tab.active {
display: block;
}
.pricing-tab.active h3{
margin-bottom: 30px
}
.pricing-list {
list-style: none;
padding-left: 0;
margin: 20px 0;
text-align: left;
}

.pricing-list li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}

.pricing-list i {
color: #000; 
font-size: 10px;
}

.pricing-rate {
font-size: 60px;
font-weight: bold;
margin: 20px 0;
display: flex;
justify-content: center;
align-items: baseline;
gap: 5px;
}
.currency, .unit {
font-size: 16px;
}

.price-info {
font-size: 14px;
color: #666;
}

/*payment*/
.features-section {
padding: 60px 20px;
text-align: center;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 10px;
max-width: 800px;
margin: 0 auto;
}

.feature-box {
padding: 30px 20px;
transition: transform 0.3s;
}

.feature-box1{
padding: 30px 20px;
transition: transform 0.3s;
}

.feature-box1:hover{
transform: translateY(-5px);
}

.feature-box:hover {
transform: translateY(-5px);
}

.feature-box1 img{
width: auto;
height: 90px;
}

.feature-box img {
width: auto;
height: 90px;
}

.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;
  }
}

/* 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;
  }

  /* Other Sections */
  #home .home-watermark {
    width: 380%;
    height: 380%;
    opacity: 0.04;
  }
  .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;
  }
  .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: 24px;
    margin-bottom: 40px;
  }
  .stat-box {
    width: 140px;
    height: 140px;
  }
  .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;
  }
}       
    

/* 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 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%;
  }
  .contact-in{
    margin-top: 200px;
  }
  .contact-pic img{
    width: 140%;
  }
  .contact-form {
    width: 250%;
    margin-top: 100px;
    height: auto;
  }
  .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;
  }
  /* Footer */
  footer{
    margin-top: 150px;
  }
  .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;
  }
}