* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Lucida Sans', sans-serif;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

#main {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Nav Styles */
.nav {
  height: 100px;
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left p,
.nav-left i {
  border: 2px solid black;
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
}

.nav-center {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Buttons */
.login, .signup {
  border: 2px solid orangered;
  padding: 6px 16px;
  border-radius: 30px;
  background-color: white;
  font-size: 1rem;
  cursor: pointer;
}

.signup {
  background-color: orangered;
  color: white;
}

/* Hero Title */
.hero-heading {
  font-size: 6rem;
  font-weight: 100;
  text-transform: uppercase;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Images */
.hero-images {
  position: absolute;
  top: 30%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.hero-img {
  height: 400px;
  width: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

/* Rotated stack */
.img1 { transform: rotate(-32deg); }
.img2 { transform: rotate(-24deg); }
.img3 { transform: rotate(-16deg); }
.img4 { transform: rotate(-8deg); }
.img5 { transform: rotate(0deg); }


.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  gap: 50px;
  background-color: #fff;
  font-family: 'Lucida Sans', sans-serif;
}

.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

.about-right {
  flex: 1;
}

.about-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4;
  background-image: url("https://images.unsplash.com/photo-1667133295308-9ef24f71952e?q=80&w=1057&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.services {
  padding: 100px 60px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-heading {
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-family: 'Lucida Sans', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.service-card i {
  font-size: 2.5rem;
  color: orangered;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-8px);
}

.testimonials {
  padding: 100px 60px;
  background-color: #fff;
  text-align: center;
}

.testimonials-heading {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #f4f4f4;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: gray;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.cta {
  padding: 100px 40px;
  background-color: orangered;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: white;
  color: orangered;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #fff3eb;
}

.footer {
  background-color: #222;
  color: white;
  padding: 60px 40px 20px;
  font-family: 'Lucida Sans', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: orangered;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 6px;
  color: orangered;
}

.social-icons i {
  font-size: 1.5rem;
  margin-right: 12px;
  margin-top: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: orangered;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
}


@media screen and (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 60px 30px;
  }
}


/*A few Tweaks*/

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid orangered;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-hover {
  transform: translate(-50%, -50%) scale(1.8);
  background-color: orangered;
  opacity: 0.2;
}


