/* ========================================================================
                     Google Fonts Links
========================================================================  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Anta&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Anta&family=Protest+Riot&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Anta&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Tac+One&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Tac+One&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}

:root {
  --light_gray: #eceef3;
  --secondary_gray: #f4f6fa;
  --secondary: #211951;
  --light_pink: #edd9f2;
  --light_blue: #7958fc;
  --white-rgb: 232, 234, 241;
  --light-yellow: #f7d9ab;
  --light-sky: #c5f0fd;
  --brand--cod-gray-cloud: #f7f7f8;
  --color1: #fff;
  --color2: #181818;
}
/* ========================================================================
                     Cursor css start here
========================================================================  */

.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: black;
  position: fixed; 
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999; 
}


/* ========================================================================
                     Navbar css start here
========================================================================  */


.navbar {
  width: 100%;
  z-index: 999;
  padding: 25px 0;
  transition: all 0.3s ease;
  background-color: var(--light_gray);
  position: fixed;
  top: 0;
  left: 0;
  height: 70px; 
}

.navbar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar .logo a {
  color: var(--color2);
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
  line-height: 70px;
}

.navbar .menu-list {
  display: flex;
  align-items: center; 
  margin-right: 20px;
  height: 100%; 
}

.menu-list li {
  list-style: none;
}


.navbar .menu-list li a {
  color: var(--color2);
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  text-decoration: none !important; 
  position: relative;
  padding-bottom: 5px; 
  transition: color 0.3s ease;
  font-family: "Anta", sans-serif;
}

/* Animation on hover */
.navbar .menu-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--color1); 
  transition: width 0.4s ease-in-out; 
}

.navbar .menu-list li a:hover::after {
  width: 100%; 
}

.navbar .menu-list li a:hover {
  color: var(--light_blue);
}




.icon {
  /* color: var(--color2); */
  font-size: 20px;
  cursor: pointer;
  display: none;
  
}

.menu-list .cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
  color: var(--color2);
}

.navbar.sticky {
  background: var(--light_gray);
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
  
}

@media (max-width: 868px) {
  .navbar {
    z-index: 1000;
  }

  .icon {
    display: block;
  
  }

  .navbar .menu-list {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }

  .navbar.show .menu-list {
    left: 0%;
  }

  .navbar .menu-list li {
    margin-top: 45px;
  }

  .navbar .menu-list li a {
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    line-height: normal; 
    color: white;
  
  }

  .navbar.show .menu-list li a {
    margin-left: 0px;
  }
}

@media (max-width: 380px) {
  .navbar .logo a {
    font-size: 27px;

  }
}
/* ========================================================================
                     Cursor css start here
========================================================================  */

.circle {
    height: 24px;
    width: 24px;
    border-radius: 24px;
    background-color: black;
    position: fixed; 
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999; 
}




/* ========================================================================
                     Intro css start here
========================================================================  */

.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  flex-direction: column;
  padding: 20px;
}

.introduction {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.introduction span {
  font-size: 1.4vw;
  color: var(--light_blue);
  text-align: center;
}

.introduction h3 {
  font-size: 7vw;
  text-align: center;
  font-family: "Anta", sans-serif;
  width: 80vw;
  margin-top: 20px;
}

.introduction p {
  font-size: 1.5vw;
  width: 50vw;
  margin-top: 20px;
  text-align: center;
  color: rgb(75, 74, 74);
}

.intro .button {
  padding: 15px 20px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  z-index: 1;
  margin-top: 15px;
  cursor: pointer;
}
.intro .button a{
  color: white;
  text-decoration: none;
}

.intro .button::after,
.intro .button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.intro .button::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.intro .button::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  border-radius: 50px;
}

.intro .button:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.intro .button:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.intro .button:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

span #wave {
  font-size: 1.5em;
  cursor: pointer;
  display: inline-block;
  animation: wave 0.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(4deg);
  }

  50% {
    transform: rotate(-4deg);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .introduction span {
    font-size: 5vw;
  }

  .introduction h3 {
    font-size: 12vw;
    width: 90vw;
  }

  .introduction p {
    font-size: 6vw;
    width: 90%;
  }

  .intro .button {
    margin-top: 35px;
    font-size: 5vw;
    /* Adjust button font size for better visibility */
    padding: 10px 15px;
    /* Adjust button padding */
  }
}

/* Tablet responsiveness */
@media (min-width: 700px) and (max-width: 1023px) {
  .introduction span {
    font-size: 3.5vw;
  }

  .introduction h3 {
    font-size: 8vw;
    width: 95vw;
  }

  .introduction p {
    font-size: 4vw;
    width: 90%;
  }

  .intro .button {
    margin-top: 35px;
    font-size: 3.5vw;
    /* Adjust button font size for better visibility */
    padding: 12px 18px;
    /* Adjust button padding */
  }
}

/* Large screens responsiveness */
@media (min-width: 1024px) {
  .introduction span {
    font-size: 1.4vw;
  }

  .introduction h3 {
    font-size: 3vw;
    /* Adjusted for better readability */
    width: 80vw;
  }

  .introduction p {
    font-size: 1.5vw;
    width: 50vw;
  }

  .intro .button {
    font-size: 1.5vw;
    /* Adjust button font size for consistency */
    padding: 15px 20px;
  }
}

/* ========================================================================
                     Moving Text css start here
========================================================================  */
.page2 {
  width: 100%;
  min-height: 25vh;
  background-color: black;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.moving-text {
  white-space: nowrap;
  overflow-x: auto;
}

.con {
  display: inline-block;
  white-space: nowrap;
  animation: move 10s linear infinite;
}

.moving-text h1 {
  font-size: 9vw;
  display: inline-block;
  white-space: nowrap;
  color: var(--light_gray);
}

.moving-text::-webkit-scrollbar {
  display: none;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

#gola {
  margin: 1vw 2vw;
  background-color: var(--light_blue);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page2 {
    width: 100%;
    min-height: 20vh;
  }

  .moving-text h1 {
    font-size: 12vw;
  }

  #gola {
    width: 30px;
    height: 30px;
  }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1023px) {
  .page2 {
    width: 100%;
    min-height: 25vh;
  }

  .moving-text h1 {
    font-size: 10vw;
  }

  #gola {
    width: 40px;
    height: 40px;
  }
}

/* Laptop and large screens responsiveness */
@media (min-width: 1024px) {
  .page2 {
    width: 100%;
    min-height: 30vh;
  }

  .moving-text h1 {
    font-size: 9vw;
  }

  #gola {
    width: 50px;
    height: 50px;
  }
}

/* ========================================================================
                     Service css start here
========================================================================  */

.page3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}

.heading1 span img {
  margin-top: 4px;
}

.heading1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 1vw;
}

.page3 img {
  margin-top: -100px;
  width: 300px;
}

.work {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand--cod-gray-cloud);
  flex-direction: column;
  border-radius: 7%;
  width: 100%;
}

.work p {
  margin-top: 10px;
  color: var(--light_blue);
}

.work h6 {
  margin-top: 10px;
  font-size: 2vw;
  font-family: "Anta", sans-serif;
  text-decoration: green wavy underline;
  text-decoration-color: var(--light_pink);
  text-decoration-thickness: 0.3vw;
  color: rgb(75, 74, 74);
}

.page3 h3 {
  font-size: 4vw;
  font-family: "Anta", sans-serif;
  text-align: center;
  width: 80vw;
  margin-top: -50px;
}

.servicess {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-bottom: 150px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-info {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: -50px;
}

.project-title {
  font-weight: 500;
  font-size: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: black;
}

.lighter {
  font-size: 0.9em;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  font-weight: lighter;
  color: grey;
}

/* Card Styling */
.card {
  background-color: white;
  color: black;
  width: 300px;
  max-height: 330px;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: transform 0.3s ease;
}

.card-img {
  position: relative;
  top: 70px;
  height: 100px;
  display: flex;
  justify-content: center;
}

.card-img a,
.card-img img {
  height: 150px;
  width: 90%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .work h6 {
    font-size: 5vw;
  }

  .page3 h3 {
    font-size: 7vw;
    width: 90vw;
  }

  .servicess {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .project-info {
    padding: 40px 20px;
    top: 0;
  }

  .card {
    width: 90%;
    margin-top: 50px;
  }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1023px) {
  .work h6 {
    font-size: 4vw;
  }

  .page3 h3 {
    font-size: 6vw;
    width: 90vw;
  }

  .servicess {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  .project-info {
    padding: 60px 30px;
    top: 0;
  }

  .card {
    width: 45%;
    margin-top: 20px;
  }
}

/* Laptop and large screens responsiveness */
@media (min-width: 1024px) {
  .work h6 {
    font-size: 2vw;
  }

  .page3 h3 {
    font-size: 4vw;
    width: 80vw;
  }

  .servicess {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .project-info {
    padding: 100px 40px;
    top: -50px;
  }

  .card {
    width: 280px;
  }
}

/* ========================================================================
                     Projects css start here
========================================================================  */

.projects-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.project_select {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.work-frame-head h1 {
  margin-top: 20px;
  font-size: 2vw;
  font-family: "Anta", sans-serif;
}

.work-frame-head p {
  margin-top: 10px;
  font-size: 1.2vw;
  text-align: center;
  width: 80%;
}

.card_1 {
  width: 300px;
  position: relative;
  background: rgb(238, 236, 236);
  padding: 20px;
  margin-top: 25px;
  transition: transform 0.2s ease-in-out;
}

.card_1:hover {
  transform: translateX(10px);
}

.card_1::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 50%;
  height: 10px;
  bottom: 15px;
  right: 0;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
  transform: rotate(5deg);
  transition: all 0.1s ease-in;
}

.card_1::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 50%;
  height: 10px;
  bottom: 15px;
  left: 0;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
  transition: all 0.1s ease-in;
}

.card_1:hover:before,
.card_1:hover:after {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.6);
}

.card_1:hover:before {
  transform: rotate(-8deg);
}

.card_1:hover:after {
  transform: rotate(8deg);
}

.card__img {
  position: relative;
  background: #a1a3a1;
  width: 100%;
  height: 175px;
}
.card__img  img{
  position: relative;
  background: #a1a3a1;
  width: 100%;
  height: 175px;
}

.card__span {
  cursor: pointer;
  font-size: 11px;
  position: absolute;
  background-color: white;
  top: 10px;
  left: 10px;
  padding: 3px 7px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease-in;
  user-select: none;
}

.card__span:hover {
  transform: translateX(5px);
}

.card-int {
  padding: 20px 0 0 0;
}

.card-int__title {
  font-weight: bold;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}

.excerpt {
  font-size: 14px;
}

.button-icon {
  display: flex;
  border: 3px #0b0a0a solid;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  margin-top: 20px;
}

.icon {
  background-color: #fff;
  padding: 10px 10px 5px 10px;
}

.icon svg {
  width: 25px;
  height: 25px;
}

.cube {
  transition: all 0.4s;
  transform-style: preserve-3d;
  width: 180px;
  height: 20px;
}

.button-icon:hover {
  border-color: black;
}

.button-icon:hover .cube {
  transform: rotateX(90deg);
}

.side {
  position: absolute;
  height: 47px;
  width: 180px;
  display: flex;
  font-size: 0.8em;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.top {
  background: white;
  color: black;
  transform: rotateX(-90deg) translate3d(0, 13.5px, 2em);
}

.front {
  background: #222229;
  color: #fff;
  transform: translate3d(0, 0, 1em);
}

/* Responsive Styles */

@media (max-width: 1280px) {
  .work-frame-head h1 {
    font-size: 3vw;
  }

  .work-frame-head p {
    font-size: 1.5vw;
    width: 90%;
  }
  .project_select {
    flex-direction: row;
  }
  .card_1 {
    width: 23%;
  }
}

@media (max-width: 992px) {
  .work-frame-head h1 {
    font-size: 4vw;
  }

  .work-frame-head p {
    font-size: 2vw;
    width: 95%;
  }

  .project_select {
    gap: 20px;
  }

  .card_1 {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .work-frame-head h1 {
    font-size: 5vw;
  }

  .work-frame-head p {
    font-size: 2.5vw;
    width: 100%;
  }

  .project_select {
    flex-direction: row;
  }

  .card_1 {
    width: 45%;
  }

  .card__img {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .work-frame-head h1 {
    font-size: 6vw;
  }

  .work-frame-head p {
    font-size: 3vw;
    width: 100%;
  }

  .card_1 {
    width: 100%;
  }

  .card__img {
    height: 125px;
  }
}
/* ========================================================================
                     Projects css start here
========================================================================  */

/* Base styles for the section */
.quote-section {
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-direction: column;
}
.quote-section h3 {
  margin-top: 20px;
  font-size: 4vw;
  width: 600px;
  font-family: "Anta", sans-serif;
  text-align: center;
}
.quote-section p {
  margin-top: 20px;
  font-size: 2vw;
  text-align: center;
  margin-bottom: 10px;
}

.quote-content {
  text-align: center;
  color: white;
  width: 80%;
  background-color: black;
  border-radius: 20px;
  height: 180px;
}

.quote-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.quote-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.quote-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid white;
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

.inquiry-button {
  background-color: transparent;
}

.inquiry-button:hover {
  background-color: white;
  color: #03312e;
}

.call-button {
  background-color: rgba(255, 255, 255, 0.2);
}

.call-button:hover {
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* Responsive styles */

/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .quote-section {
    padding: 10px;
    overflow-x: hidden;
  }
  .quote-content {
    height: 250px;
  }

  .quote-content h2 {
    font-size: 20px;
  }
  .quote-section h3 {
    font-size: 20px;
  }

  .quote-content p {
    font-size: 14px;
  }
  .quote-section p {
    font-size: 14px;
  }
  .button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Tablet (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .quote-section {
    padding: 15px;
  }

  .quote-content h2 {
    font-size: 22px;
  }
  .quote-section h3 {
    font-size: 22px;
  }
  .quote-content p {
    font-size: 15px;
  }
  .quote-section p {
    font-size: 15px;
  }

  .button {
    padding: 9px 18px;
    font-size: 15px;
  }
}

/* Laptop and bigger screens (1025px and up) */
@media (min-width: 1025px) {
  .quote-section {
    padding: 20px;
  }

  .quote-content h2 {
    font-size: 24px;
  }
  .quote-section h3 {
    font-size: 24px;
  }
  .quote-content p {
    font-size: 16px;
  }
  .quote-section p {
    font-size: 16px;
  }
  .button {
    padding: 10px 20px;
    font-size: 16px;
  }
}
/* ========================================================================
                     About css start here
========================================================================  */
.About {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 40px;
}
.page8 {
  padding: 20px;
}

.bio8 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background-color: #000;
  border-radius: 10px;
}

.heading3 {
  display: flex;
  justify-content: baseline;
  align-items: center;
  font-size: 1.5em;
  margin-top: 20px;
}

.leftbio,
.rightbio {
  padding: 20px;
}

.leftbio p {
  font-size: 1em;
  margin: 20px 0;
}

.biolinks {
  margin-top: 20px;
}

.biolinks ul {
  display: flex;
  flex-direction: row;
  padding: 0;
}

.biolinks li {
  list-style: none;
  margin: 0 10px;
}

.biolinks li i {
  margin-right: 10px;
  font-size: 1vw;
}

.photobio img {
  width: 100%;
  border-radius: 10px;
}

.textbio {
  margin-top: 20px;
}

.lefttextbio {
  font-size: 2em;
  margin-bottom: 10px;
}

.righttextbio p {
  margin: 10px 0;
}

.biosocial {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.onesocial {
  background-color: #181818;
  border-radius: 10px;
  width: 45%;
  padding: 10px;
  text-align: center;
}

.onesocial .item-hints {
  display: flex;
  justify-content: center;
  align-items: center;
}

.onesocial .hint-dot {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #444;
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .bio8 {
    grid-template-columns: 1fr;
  }

  .biolinks ul {
    flex-direction: row;
    justify-content: center;
  }

  .biolinks li {
    margin: 0 5px;
  }
  .biolinks li i {
    font-size: 6vw;
  }

  .rightbio {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Tablet (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .bio8 {
    grid-template-columns: 1fr 1fr;
  }

  .rightbio {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .textbio {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
 
}

/* Laptop and bigger screens (1025px and up) */
@media (min-width: 1025px) {
  .bio8 {
    grid-template-columns: 30% 70%;
  }

  .leftbio,
  .rightbio {
    padding: 40px;
  }

  .leftbio p {
    font-size: 1.2em;
  }

  .biosocial {
    justify-content: space-around;
  }

  .onesocial {
    width: 22%;
  }
  .photobio img {
    width: 700px;
    border-radius: 10px;
  }
}

/* ========================================================================
                     Contact css start here
========================================================================  */
.contacts {
  font-family: "Anta", sans-serif;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  margin-top: 120px;
}
.responsive-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

.main-content {
  flex: 1 1 40%;
  min-width: 300px;
}
.main-content h1 {
  font-family: "Anta", sans-serif;
  font-size: 3.8vw;
  width: 95%;
  margin-bottom: 10px;
}
.main-content p {
  font-size: 1.2vw;
  width: 95%;
  margin-bottom: 20px;
}

.contact-form-container {
  flex: 1 1 40%;
  min-width: 300px;
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
}

.main-content .button {
  padding: 15px 20px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  z-index: 1;
  margin-top: 15px;
  cursor: pointer;
}
.main-content .button a{
  color: white;
  text-decoration: none;
}

.main-content .button::after,
.main-content .button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.main-content .button::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.main-content .button::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  border-radius: 50px;
}

.main-content.button:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.main-content .button:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.main-content .button:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

span #wave {
  font-size: 1.5em;
  cursor: pointer;
  display: inline-block;
  animation: wave 0.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(4deg);
  }

  50% {
    transform: rotate(-4deg);
  }
}
.Documents-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  height: 45px;
  border: none;
  padding: 0px 15px;
  border-radius: 5px;
  background-color: rgb(18, 18, 18);
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.folderContainer {
  width: 40px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.fileBack {
  z-index: 1;
  width: 80%;
  height: auto;
}
.filePage {
  width: 50%;
  height: auto;
  position: absolute;
  z-index: 2;
  transition: all 0.3s ease-out;
}
.fileFront {
  width: 85%;
  height: auto;
  position: absolute;
  z-index: 3;
  opacity: 0.95;
  transform-origin: bottom;
  transition: all 0.3s ease-out;
}
.text {
  color: rgb(249, 247, 247);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.Documents-btn:hover .filePage {
  transform: translateY(-5px);
}
.Documents-btn:hover {
  background-color: rgb(102, 99, 99);
  color: rgb(11, 10, 10);
}

.Documents-btn:active {
  transform: scale(0.95);
}
.Documents-btn:hover .fileFront {
  transform: rotateX(30deg);
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .responsive-container {
    flex-direction: column;
    align-items: center;
    width: 95%;
  }

  .contact-form-container,
  .main-content {
    width: 100%;
    margin: 10px 0;
  }
  .main-content h1 {
    font-family: "Anta", sans-serif;
    font-size: 6vw;
    width: 95%;
    margin-top: 50px;
  }
  .main-content p {
    font-size: 4vw;
    width: 95%;
  }
}
/* Success Popup Styling */
.success-popup {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 10px;
  border-radius: 5px;
}
.success-popup p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-form-container {
      padding: 15px;
  }
  nav ul {
      flex-direction: column;
  }
}
@media (max-width: 600px) {
  .contact-form-container {
      padding: 10px;
  }
}

/* Tablet (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .responsive-container {
    flex-direction: row;
    
  }

  .contact-form-container,
  .main-content {
    width: 45%;
  }
  .main-content h1 {
    font-family: "Anta", sans-serif;
    font-size: 5vw;
    width: 95%;
   
  }
  .main-content p {
    font-size: 3vw;
    width: 95%;
  }
}

/* Laptop and bigger screens (1025px and up) */
@media (min-width: 1025px) {
  .responsive-container {
    flex-direction: row;
  }

  .contact-form-container,
  .main-content {
    width: 40%;
  }
  .main-content h1 {
    font-family: "Anta", sans-serif;
    font-size: 3vw;
    width: 95%;
  }
  .main-content p {
    font-size: 2vw;
    width: 95%;
  }
}

/* ========================================================================
                     Footer css start here
========================================================================  */
.footer {
  display: flex;
  justify-content: center;
}
footer {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 40px;
  width: 90%;
  height: 80vh;
  gap: 20px;
  background-color: var(--brand--cod-gray-cloud);
  overflow: hidden;
}

footer .upper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-evenly;
  align-items: center;
  margin-top: 50px;
}

.first {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.first:nth-child(1) {
  margin-left: 40px;
}

.first:nth-child(1) h3 {
  font-size: 2vw;
  font-family: "Anta", sans-serif;
}

.first:nth-child(1) p {
  font-size: 1vw;
  margin-top: 15px;
  color: rgb(75, 74, 74);
}

.first:nth-child(2) h3 {
  font-size: 1.5vw;
  font-family: "Anta", sans-serif;
}

.first ul {
  margin-top: 15px;
}

.first ul li {
  list-style: none;
  padding-top: 10px;
}

.first ul li a {
  text-decoration: none;
  color: rgb(75, 74, 74);
  background-color: transparent;
  cursor: pointer;
  transition: 0.5s all ease;
}

.first ul li a:hover {
  color: black;
}

.explore {
  display: flex;
  gap: 5px;
  color: rgb(75, 74, 74);
  padding-top: 10px;
  cursor: pointer;
}

.explore div:nth-child(2) {
  background-color: white;
  padding: 5px;
  border-radius: 15px;
  font-size: 10px;
}

.first:nth-child(3) h3 {
  font-size: 1.5vw;
  font-family: "Anta", sans-serif;
}

.first:nth-child(4) h3 {
  font-size: 1.5vw;
  font-family: "Anta", sans-serif;
}

.first:nth-child(4) a {
  text-decoration: none;
  margin-top: 15px;
  color: rgb(75, 74, 74);
}

.first:nth-child(4) .line {
  width: 250px;
  border: 1px solid rgb(87, 86, 86);
  margin-top: 15px;
}

.credit {
  display: flex;
  justify-content: center;
  align-items: first baseline;
  width: 250px;
  gap: 15px;
  margin-top: 15px;
}

.credit .two2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: first center;
  color: white;
  transform: rotate(300deg);
  transition: 0.5s ease;
  cursor: pointer;
}

.fas .fa-arrow-right {
  color: white;
}

.credit .two2:hover {
  background-color: var(--light-yellow);
  transform: rotate(360deg);
  color: black;
  border: 1px solid black;
}

footer .lower h1 {
  font-size: 28vw;
  font-family: "Tac One", sans-serif;
  color: black;
  margin-top: 100px;
}

@media (max-width: 700px) {
  footer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    align-items: first baseline;
    height: 900px;
    margin-bottom: 30px;
    width: 90%;
  }
  footer .upper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .first {
    display: flex;
    justify-content: center;
    align-items: first baseline;
    flex-direction: column;
    margin-left: 20px;
  }
  .first:nth-child(1) {
    margin-left: 20px;
  }

  .first:nth-child(1) h3 {
    font-size: 6vw;
    font-family: "Anta", sans-serif;
  }

  .first:nth-child(1) p {
    font-size: 4vw;
    margin-top: 15px;
    color: rgb(75, 74, 74);
    width: 70vw;
  }
  .first:nth-child(2) h3 {
    font-size: 5vw;
    font-family: "Anta", sans-serif;
    margin-top: 20px;
  }
  .first:nth-child(3) h3 {
    font-size: 5vw;
    font-family: "Anta", sans-serif;
    margin-top: 20px;
  }
  .first:nth-child(4) h3 {
    font-size: 5vw;
    font-family: "Anta", sans-serif;
    margin-top: 20px;
  }
  .first:nth-child(4) .line {
    width: 250%;
    border: 1px solid rgb(87, 86, 86);
    margin-top: 15px;
  }

  footer .lower h1 {
    font-size: 38vw;
    font-family: "Tac One", sans-serif;
    color: black;
    margin-top: -15px;
    width: 90%;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  footer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    align-items: first baseline;
    height: 500px;
    margin-bottom: 30px;
  }
  footer .upper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .first {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 20px;
  }
  .first:nth-child(1) {
    margin-left: 20px;
  }

  .first:nth-child(1) h3 {
    font-size: 3vw;
    font-family: "Anta", sans-serif;
  }

  .first:nth-child(1) p {
    font-size: 2vw;
    margin-top: 15px;
    color: rgb(75, 74, 74);
    width: 30vw;
  }
  .first:nth-child(2) h3 {
    font-size: 3vw;
    font-family: "Anta", sans-serif;
    margin-top: 20px;
  }
  .first:nth-child(3) h3 {
    font-size: 3vw;
    font-family: "Anta", sans-serif;
    margin-top: 20px;
  }
  .first:nth-child(4) h3 {
    font-size: 3vw;
    font-family: "Anta", sans-serif;
    margin-top: 20px;
  }
  .first:nth-child(4) .line {
    width: 250px;
    border: 1px solid rgb(87, 86, 86);
    margin-top: 15px;
  }

  footer .lower h1 {
    margin-top: 5px;
    font-size: 31vw;
    font-family: "Tac One", sans-serif;
    color: black;
  }
}


/* Popup content adjustments for various screen sizes */
@media (max-width: 600px) {
  .popup-content {
    width: 90%;
    padding: 15px;
  }
  .scroll-container {
    gap: 10px;
  }
  .card5 {
    min-width: 140px;
    padding: 10px;
  }
  .title, .content {
    font-size: 12px; 
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .popup-content {
    width: 80%;
    padding: 20px;
  }
  .scroll-container {
    gap: 15px;
  }
  .card5 {
    min-width: 180px;
    padding: 18px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .popup-content {
    width: 70%;
    padding: 25px;
  }
  .scroll-container {
    gap: 20px;
  }
  .card5 {
    min-width: 200px;
    padding: 20px;
  }
}

@media (min-width: 1441px) {
  .popup-content {
    width: 50%;
    padding: 30px;
  }
  .scroll-container {
    gap: 20px;
  }
  .card5 {
    min-width: 220px; 
    padding: 25px;
  }
}

/* General scroll container styling */
.scroll-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scroll-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.upper-scroll {
  flex-direction: row;
}

.lower-scroll {
  flex-direction: row-reverse;
}

/* Card styling */
.card5 {
  min-width: 200px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.card5 .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Dot colors */
.dot-blue {
  background-color: #b3e5fc;
}

.dot-purple {
  background-color: #e1bee7;
}

.dot-green {
  background-color: #c8e6c9;
}

.dot-orange {
  background-color: #ffcc80;
}

/* Title and content styling */
.title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #3c3c3c;
}

.content {
  color: #3c3c3c;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .card5 {
    min-width: 140px;
    padding: 12px;
  }
  .title, .content {
    font-size: 14px;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .card5 {
    min-width: 180px;
    padding: 18px;
  }
}

/* Pop-up Styling */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.popup-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 850px;
  text-align: center;
  border-radius: 10px;
  transform: translateY(100vh);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  max-height: 0;
  overflow: hidden;
}

.popup.open .popup-content {
  transform: translateY(0);
  opacity: 1;
  max-height: 80vh;
}

/* Close Button Styling */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Scrollable Cards */
.scroll-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scroll-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.upper-scroll {
  flex-direction: row;
}

.lower-scroll {
  flex-direction: row-reverse;
}

.card5 {
  min-width: 200px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.card5 .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.dot-blue {
  background-color: #b3e5fc;
}

.dot-purple {
  background-color: #e1bee7;
}

.dot-green {
  background-color: #c8e6c9;
}

.dot-orange {
  background-color: #ffcc80;
}

.title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #3c3c3c;
}

.content {
  color: #3c3c3c;
  text-decoration: underline;
}

/* Responsive Styling */
@media (max-width: 600px) {
  .popup-content {
    width: 90%;
    padding: 15px;
  }
  .card5 {
    min-width: 150px;
    padding: 15px;
  }
  .title,
  .content {
    font-size: 14px;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .popup-content {
    width: 80%;
    padding: 20px;
  }
  .card5 {
    min-width: 180px;
    padding: 18px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .popup-content {
    width: 70%;
    padding: 25px;
  }
  .card5 {
    min-width: 200px;
    padding: 20px;
  }
}

@media (min-width: 1441px) {
  .popup-content {
    width: 50%;
    padding: 30px;
  }
}

/* Animations for credit section */
.credit {
  display: flex;
  justify-content: center;
  align-items: first baseline;
  width: 250px;
  gap: 15px;
  margin-top: 15px;
}

.credit .two2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transform: rotate(300deg);
  transition: 0.5s ease;
  cursor: pointer;
}

.fas .fa-arrow-right {
  color: white;
}

.credit .two2:hover {
  background-color: var(--light-yellow);
  transform: rotate(360deg);
  color: black;
  border: 1px solid black;
}

/* Base styles for the toast notification */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

.toast {
  background-color: #4CAF50; 
  color: white;
  padding: 16px;
  border-radius: 5px;
  min-width: 250px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-size: 1rem; 
}

.toast.error {
  background-color: #f44336;
}

/* Responsive styles */

/* For large screens (laptops and desktops) */
@media (min-width: 1024px) {
  .toast-container {
      top: 20px;
      right: 20px;
  }

  .toast {
      font-size: 1rem;
      padding: 16px 24px; 
  }
}

/* For tablets (between 768px and 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .toast-container {
      top: 15px;
      right: 15px;
  }

  .toast {
      font-size: 0.95rem;
      padding: 14px 20px;
  }
}

/* For mobile devices (up to 767px) */
@media (max-width: 767px) {
  .toast-container {
      top: 10px;
      right: 10px;
  }

  .toast {
      font-size: 0.85rem; 
      padding: 12px 18px; 
      min-width: 200px; 
  }
}

