body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*==== Header Styles ====*/

#header {
  background-image: url(/images/inkscape3.jpg);
  background-size: cover;
  background-position: center;
  height: 85vh;
  position: relative;
}

#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.content-on-top {
  position: relative;
  height: 90vh;
  z-index: 2;
}

.header-content {
  padding-left: 2rem;
  padding-top: 5rem;
}

.header-title {
  color: white;
  font-size: 4rem;
  font-weight: 500;
  margin-top: 2rem;
  font-family: "DM Sans";
}

.nav-links {
  position: absolute;
  top: 14%;
  margin-left: 64.7%;
  right: -13%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 2;
  display: flex;
  gap: 1rem;
}

.nav-button1 {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  color: aliceblue;
  text-decoration: none;
  transition: transform 0.3s ease-out;
}

.nav-button1:hover {
  transform: scale(1.1);
  color: #15e7fa;
}

.header-subtitle,
.header-description {
  color: white;
  font-size: 1.4rem;
  font-family: "Roboto";
}

/*==== Button Styles ====*/

.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  text-decoration: none;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.button-85:hover {
  color: #15e7fa;
  transition: color 0.3s ease-in-out;
}

/*Nav Hamburger Styles*/

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 0;
  z-index: 1001;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: 0.4s;
}

/* Responsive Nav */
.nav-links {
  display: flex;
  gap: 1rem;
  z-index: 2;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    top: 4.08rem;
    right: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 17%;
    right: -100%;
    height: 18vh;
    width: 20%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: right 0.3s ease-in-out;
  }

  .nav-links.active {
    right: 1rem;
  }

  .nav-button1,
  .button-85 {
    font-size: 0.7rem;
  }

  .button-85 {
    padding: 0.4em 0.5em;
  }
}
/* End of Hamburger styles */

/* 🔵 Tablet Screens: 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .hamburger {
    display: none;
  }

  #header {
    height: 55vh;
  }
  .logo {
    display: inline-block;
    width: 1rem;
    margin-top: 4rem;
  }
}

/*==== Header Content ====*/

/*Original Desktop Layout*/
@media (min-width: 1024px) {
  .logo {
    width: 20rem;
    color: white;
    padding-top: 3rem;
    padding-left: 2rem;
  }
}

/*Original Mobile Layout*/

@media (max-width: 767px) {
  .logo {
    width: 10rem;
    color: white;
    padding-top: 4rem;
    padding-left: 1rem;
  }

  .header-content {
    text-align: center;
    margin-top: -12%;
  }

  .header-title {
    font-size: 2.5rem;
    text-align: center;
    width: 90%;
  }

  #header {
    height: 60vh;
  }

  .header-subtitle {
    font-size: 1.5rem;
    text-align: center;
    width: 90%;
    display: none;
  }
  .header-description {
    font-size: 1.5rem;
    text-align: center;
    width: 90%;
    margin-top: 1rem;
  }
}

/* End of Header Styles */

/* About Section Styles */

.about-head {
  margin-left: 50%;
  margin-top: -47rem;
}

.about-title {
  font-family: Helvetica;
  font-size: 2.5rem;
  font-weight: 500;
  color: #c752da;
  margin-top: 2.4rem;
}

.about-subtitle {
  font-family: Helvetica;
  font-size: 3rem;
  color: black;
}

.about-description {
  font-family: Helvetica;
  font-size: 1.3rem;
  color: black;
  margin-top: 1rem;
  width: 80%;
}

/* About Section Images */

.about-pics {
  display: block;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5rem;
  margin-left: 10%;
}

.img-1,
.img-2 {
  width: 15%;
  height: 22rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.img {
  display: flex;
  margin-top: -52%;
}

.img-3 {
  width: 25%;
  height: 44.4rem;
  border-radius: 0.5rem;
  margin-left: 16%;
  transition: transform 0.3s ease;
}

.img-1:hover,
.img-2:hover,
.img-3:hover {
  transform: translateY(-0.85rem);
}

.mega-icons {
  margin-left: 51%;
  margin-top: 2rem;
}

.icon-1,
.icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 2rem;
}

.icon {
  margin-left: 3rem;
}

/* Mobile Responsiveness */

@media (max-width: 768px) {
  .about-head {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 2.2rem;
  }

  .about-description {
    font-size: 1rem;
    width: 90%;
    margin: 1rem auto;
  }

  .about-pics {
    margin-left: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .img-1,
  .img-2,
  .img-3 {
    width: 80%;
    height: auto;
    margin: 1rem 0;
    display: none;
  }

  .img {
    flex-direction: block;
    margin-top: 0;
    align-items: center;
    gap: 1rem;
  }

  .mega-icons {
    margin-left: 0;
    margin-top: 2rem;
    text-align: center;
  }

  .icon-1,
  .icon {
    width: 3rem;
    height: 3rem;
    margin: 0.5rem;
  }
}

/* Responsive Design for Tablet Screens */

@media (min-width: 769px) and (max-width: 1024px) {
  .about-head {
    margin-left: 5%;
    margin-top: 4rem;
  }

  .about-title {
    font-size: 3.5rem;
  }

  .about-subtitle {
    font-size: 2.5rem;
  }

  .about-description {
    font-size: 1.1rem;
    width: 85%;
  }

  .about-pics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-left: 0;
    gap: 1rem;
  }

  .img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
  }

  .img-1,
  .img-2 {
    width: 35%;
    height: auto;
    display: none;
  }

  .img-3 {
    width: 60%;
    height: auto;
    margin-left: 0;
    display: none;
  }

  .mega-icons {
    margin-left: 0;
    margin-top: 3rem;
    text-align: center;
  }

  .icon-1,
  .icon {
    width: 4rem;
    height: 4rem;
    margin: 1rem;
  }
}

/* End of About Section Styles */

/* Services Section Styles */

#services {
  background-color: #000000;
  margin-top: 5rem;
  padding-bottom: 7rem;
}

.services-head {
  text-align: center;
  padding-top: 3rem;
}

.services-title {
  text-align: center;
  color: #ffffff;
  font-size: 3.5rem;
  font-family: "Quicksand";
  font-weight: 400;
}

.services-description {
  text-align: center;
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Quicksand";
  padding-top: 0.3rem;
  width: 50%;
  margin-left: 25%;
}

/* Services Section Cards */

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 3rem;
}

.skills-container2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 3rem;
}

/* Each Card */

.card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  max-width: 22rem;
  width: 100%;
  flex: 1 1 100%;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-0.5rem);
}

/* Image */
.skill-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #f0f0f0;
  padding: 1rem;
}

/* Content */
.skill-content {
  padding: 1.25rem;
}

.skill-title {
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: "Quicksand";
}

.skill-description {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: "Helvetica";
}

.skill-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #000000;
  font-family: "Quicksand";
  font-weight: 600;
}

/* Responsive layout */
@media (min-width: 40rem) {
  .card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (min-width: 60rem) {
  .card {
    flex: 1 1 calc(33.333% - 2rem);
  }
}

/*get started button*/

.get-started-link {
  display: inline-block;
  margin-top: 15px;
  background-color: #7a00ff;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.get-started-link:hover {
  background-color: #6b1883;
}

/* End of Services Section Styles */

/* Who are we Section Styles */

.identity-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 50px;
  font-family: "Quicksand";
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .identity-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.identity-card {
  background-color: #e6e1e1;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.identity-card:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transform: translateY(-0.5rem);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.5rem;
  color: #c752da;
  margin-bottom: 10px;
  font-family: "Helvetica";
}

.card-text {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.6;
  font-family: "Helvetica";
}

.card-list {
  padding-left: 20px;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: "Helvetica";
}
/* End of Who are we Section Styles */

/* Contact Section Styles */

/* Contact Section Wrapper */
.contact-section {
  padding: 60px 20px;
  background-color: #000000;
}

/* Section Title */
.contact-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Quicksand";
  font-weight: 500;
}

/* Contact Form Styling */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Row Styling */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }
}

/* Input, Select, Textarea Styling */
.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

/* Textarea Styling Fixed */
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
  margin-bottom: 20px;
}

/* Submit Button */
.contact-form button {
  background-color: #8720a2;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #6c1781;
}

/* End Of Contact Form*/

.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: "Helvetica", sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3,
.footer-column h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.footer-column p,
.footer-column li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* End Of Home Page */

/* Slide-up animation */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation base */
.slide-up {
  opacity: 0;
  animation: slideUpFade 0.9s ease-out forwards;
}

/* Add delays for a smooth staggered effect */
.slide-delay-1 {
  animation-delay: 0.2s;
}
.slide-delay-2 {
  animation-delay: 0.4s;
}
.slide-delay-3 {
  animation-delay: 0.6s;
}
.slide-delay-4 {
  animation-delay: 0.8s;
}

/* scroll based animation */

/* Slide-up animation */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.scroll-reveal.visible {
  animation: slideUpFade 0.6s ease-out forwards;
}

/* Start Of Services Page */

#topper {
  background-color: #000000;
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .main-top {
    text-align: center;
    color: white;
    padding-top: 2rem;
  }

  .topper-head {
    font-family: "Raleway", sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
  }

  .topper-head2 {
    font-family: "Raleway", sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
  }

  .website {
    color: white;
    text-align: center;
    padding: 2rem;
  }

  .website-head {
    font-size: 2.2rem;
    font-family: "Mozilla Text", sans-serif;
    text-align: center;
  }

  .website-head2 {
    font-size: 0.95rem;
    font-family: "Raleway", sans-serif;
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
    padding-left: 4rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .main-top {
    text-align: center;
    color: white;
    padding-top: 2rem;
  }

  .topper-head {
    font-family: "Raleway", sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
  }

  .topper-head2 {
    font-family: "Raleway", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
  }

  .website {
    color: white;
    text-align: center;
    padding: 1rem;
  }

  .website-head {
    font-size: 2rem;
    font-family: "Mozilla Text", sans-serif;
    text-align: center;
    padding-left: 4rem;
  }

  .website-head2 {
    display: none;
  }

  .pricing-section {
    margin-top: -5rem;
  }
}

.main-top {
  text-align: center;
  color: white;
  padding-top: rem;
}

.topper-head {
  font-family: "Raleway";
  font-size: 3.2rem;
  font-weight: 300;
}

.topper-head2 {
  font-family: "Raleway";
  font-size: 2rem;
  font-weight: 300;
}

/* Website Head Div*/

.website {
  color: white;
  text-align: center;
  padding-right: 4rem;
}

.website-head {
  font-size: 2.5rem;
  font-family: "Mozilla Text";
  text-align: center;
}

.website-head2 {
  font-size: 1rem;
  font-family: "Raleway";
  max-width: 50%;
  text-align: center;
  padding-left: 22rem;
}

/*Website Card*/

.web-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 3rem;
}

.web-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  max-width: 15rem;
  width: 25%;
  flex: 1 1 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.web-card:hover {
  transform: translateY(-0.5rem);
}

.web-icon {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #f0f0f0;
  padding: 1rem;
}

/* web card */

.pricing-section {
  background: #000000;
  padding: 60px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 2.2rem;
  color: #ffffff; /* Purple */
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.7rem);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000000;
  font-family: "Raleway";
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0;
  color: #333;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 8px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6b21a8;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  background-color: #581c87;
}

.featured {
  border: 2px solid #6b21a8;
  background: #f3e8ff;
}

.vision-mission {
  background-color: #f8f8fc;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #6c339a;
  margin-bottom: 40px;
  font-family: "Raleway";
}

.content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  transition: transform 0.3s ease;
}

.content-box:hover {
  transform: translateY(-0.7rem);
}

.box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  max-width: 460px;
  flex: 1;
}

.box h3 {
  color: #6b3eba;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.back-button {
  background-color: #6b21a8;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin: 20px;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #4c1d95;
}
