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

@font-face {
  font-family: font1;
  src: url(/fonts/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2);
}

@font-face {
  font-family: font2;
  src: url(/fonts/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2);
}

@font-face {
  font-family: font3;
  src: url(fonts/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2);
}

@font-face {
  font-family: font4;
  src: url(/fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: font5;
  src: url(/fonts/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2);
}

html,
body {
  height: 100%;
  width: 100%;
  /* background: linear-gradient(to bottom, #0f0f0f, #433c41); */
  /* background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('https://media.istockphoto.com/id/2165041511/vector/abstract-black-and-gray-color-gradient-background.jpg?s=612x612&w=0&k=20&c=gqSsRRunIq39-mi5hm85tAJf93D-ds6D9mzDEm7kBp4=') no-repeat center center/cover; */
  background-color: #0f0f0f;
  color: white;
  font-family: font1;
  position: relative;
  cursor: none;
  overflow-x: hidden;
  overflow-y: auto;
}

#cursor {
  height: 13px;
  width: 13px;
  background-color: white;
  border-radius: 50%;
  position: fixed;
  /* FIXED instead of absolute */
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

#cursor.dark {
  background-color: black;
  /* change when on white background */
}

.page-1 {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px;
  position: relative;
  z-index: 10;
}



.left h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.left h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.left h3:hover::before {
  left: 100%;
}

/* Enhanced Center Navigation */
.center {
  position: relative;
  display: flex;
  align-items: center;
}

/* Navigation Dots (Default State) */
.nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-dots:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
  animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Navigation Links (Hidden by default) */
.nav-links {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px 25px;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  min-width: 180px;
}

.center:hover .nav-links {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.center:hover .nav-dots {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

/* Individual Link Styles */
.nav-links li {
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.center:hover .nav-links li {
  transform: translateY(0);
  opacity: 1;
}

.center:hover .nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.center:hover .nav-links li:nth-child(2) {
  transition-delay: 0.15s;
}

.center:hover .nav-links li:nth-child(3) {
  transition-delay: 0.2s;
}

.center:hover .nav-links li:nth-child(4) {
  transition-delay: 0.25s;
}

.center:hover .nav-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.center:hover .nav-links li:nth-child(6) {
  transition-delay: 0.35s;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 8px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-links a:hover {
  color: white;
  transform: translateX(5px);
}

.nav-links a:hover::before {
  left: 0;
}

/* Arrow indicator */
.nav-dots::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.6);
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.center:hover .nav-dots::after {
  transform: rotate(180deg);
}

.right button {
  background: transparent;
  border: 2px solid #fff;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.right button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.right button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  transition: left 0.3s ease;
  z-index: -1;
}

.right button:hover::before {
  left: 0;
}

/* SAHIL Text Styles */
.sahil {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: min(60vh, 25vw);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  margin-top: -90px;
  position: relative;
  background: linear-gradient(45deg, #ff6b6b, #ffffff, #272829, #e74a3f);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  letter-spacing: -2px;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.sahil::before {
  content: 'SAHIL';
  position: absolute;
  top: 2px;
  left: 2px;
  color: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

/* Bottom Section Styles */
.page1-bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: 'Inter', sans-serif;
  margin-top: -50px;
  text-align: center;
  padding-bottom: 34px;
}

.page1-bottom div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.page1-bottom div:hover {
  color: #FF773E;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(231, 74, 63, 0.3);
  background: rgba(231, 74, 63, 0.1);
}

.page1-bottom i {
  font-size: 24px;
  margin-bottom: 5px;
}

.page1-bottom h4 {
  font-weight: 600;
  font-size: 14px;
}

.text-small {
  font-size: 13px !important;
  opacity: 0.8;
}

/* Background Animation */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

.bg-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.bg-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.bg-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 30%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    min-width: 150px;
    padding: 15px 20px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .sahil {
    font-size: min(35vh, 20vw);
    margin-top: -60px;
  }

  .page1-bottom {
    flex-direction: column;
    gap: 20px;
    margin-top: -30px;
  }
}

.page2 {
  height: 100vh;
  width: 100%;
  /* background: linear-gradient(to bottom,#433c41,#0f0f0f); */
  background-color: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page2-main {
  height: 610px;
  width: 93%;
  /* background-color: #D83829; */
  background: linear-gradient(to bottom, #FF773E, #D03225);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.page2-main .img-main {
  z-index: 9999;
  height: 600px;

}

.page2-main pre {
  font-size: 50px;
  position: absolute;
  padding-top: 10px;
  color: #fafafa;
  font-family: font3;
}

.page2-main pre span {
  color: #0f0f0f;
  font-size: font1;
  opacity: 0.8;
}

.page-3 {
  height: 100vh;
  width: 100%;
  background-color: #0f0f0f;

}

.page3-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: font3;
  margin: 10px 20px;
  font-size: 18px;
}

.page3-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
  text-align: center;
  font-size: 10vh;
  letter-spacing: 1px;
  line-height: -0.1px;
}

.page3-main span {
  color: #e74a3f;
}

.page3-main h1 span {
  display: inline-block;
}

.page3-main h3 {
  font-size: 2vh;
  font-family: font3;

}

.page3-main h3 span {
  background-color: gray;
  color: #0f0f0f;
  padding: 5px 5px;
  border-radius: 20px;
  border: 1.5px solid #f8f8f8;
}

.page3-bottom {
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

/* card css code */
.page-3-card {
  --bg: transform;
  --hover-bg: #e74a3f;
  --hover-text: #000000;
  /* max-width: 23ch; */
  height: 180px;
  width: 400px;
  text-align: center;
  background: var(--bg);
  padding: 1.5em;
  padding-block: 1.8em;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition:
    0.3s cubic-bezier(0.6, 0.4, 0, 1),
    transform 0.15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  color: black;
  font-family: font4;
}

/* .card__body {
  color: #ffffff;
  line-height: 1.5em;
  font-size: 1em;
} */

.page-3-card> :not(span) {
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}

.page-3-card>strong {
  display: block;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: -0.035em;
  color: #f8f8f8;
  border-bottom: 1px solid #e74a3f;
}

.page-3-card span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--hover-text);
  border-radius: 5px;
  font-weight: bold;
  top: 100%;
  transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
  opacity: 0.6;
}

.page-3-card:hover span {
  top: 0;
  font-size: 1.2em;
  padding: 0px 8px;
}

.page-3-card:hover {
  background: var(--hover-bg);
}

.page-3-card:hover>div,
.page-3-card:hover>strong {
  opacity: 0;
}

.char {
  transform: translateY(115px);
  transition: transform 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}


/* card end */

.page-4 {
  height: 100vh;
  width: 100%;
}

.page4-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: font3;
  margin: 10px 20px;
  font-size: 10px;
}

.page4-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 300px;
  font-size: 3rem;

}

.page-5 {
  height: 160vh;
  width: 100%;
  /* background-color: #D03225; */
}

.page5-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: font3;
  margin: 10px 20px;
    font-size: 18px;

}


.page-5-main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;

}

.page-5-main h1 {
  font-size: 4rem;
  line-height: 1;
}

.page-5-main h1 span {
  color: #e74a3f;
}

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

.imgbox5 img {
  height: 500px;
  width: 500px;
  background-color: transparent;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  /* margin-top: 120px; */
  border-radius: 20px;
  /* position: absolute; */

}

.page5-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  text-align: center;
  font-size: 30px;
  font-weight: 100;
  font-family: font3;

}

.text2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: font4;
  font-size: 15px;
  margin-top: 30px;
  text-align: center;
  color: gray;

}

/* RESUME BUTTON CODE START */


.resume {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;

}

.btn-53,
.btn-53 *,
.btn-53 :after,
.btn-53 :before,
.btn-53:after,
.btn-53:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-53 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
}

.btn-53:disabled {
  cursor: none;
}

.btn-53:-moz-focusring {
  outline: auto;
}

.btn-53 svg {
  display: block;
  vertical-align: middle;
}

.btn-53 [hidden] {
  display: none;
}

.btn-53 {
  border: 1px solid;
  border-radius: 999px;
  box-sizing: border-box;
  display: block;
  font-weight: 900;
  overflow: hidden;
  padding: 1.2rem 3rem;
  position: relative;
  text-transform: uppercase;
}

.btn-53 .original {
  background: #fff;
  color: #000;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  place-content: center;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
  z-index: 999;
}

.btn-53:hover .original {
  transform: translateY(100%);
}

.btn-53 .letters {
  display: inline-flex;
}

.btn-53 span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}

.btn-53 span:nth-child(2n) {
  transform: translateY(15px);
}

.btn-53:hover span {
  opacity: 1;
  transform: translateY(0);
}

.btn-53:hover span:nth-child(2) {
  transition-delay: 0.1s;
}

.btn-53:hover span:nth-child(3) {
  transition-delay: 0.2s;
}

.btn-53:hover span:nth-child(4) {
  transition-delay: 0.3s;
}

.btn-53:hover span:nth-child(5) {
  transition-delay: 0.4s;
}

.btn-53:hover span:nth-child(6) {
  transition-delay: 0.5s;
}

/* RESUME BURRON END */
.page-6 {
  height: 100vh;
  width: 100%;
}

.page6-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: font3;
  margin: 10px 20px;
    font-size: 18px;

}


.page6-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 6vw;
}

.section-title {
  font-size: 28px;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: font2;
}

.skills-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}

.skills-swiper {
  display: flex;
  animation: slideLeft 20s linear infinite;
}

.tools-swiper {
  display: flex;
  animation: slideRight 25s linear infinite;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

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

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.skillbox {
  height: 180px;
  width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 20px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.skillbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 150, 0.1), transparent);
  transition: left 0.5s ease;
}

.skillbox:hover::before {
  left: 100%;
}

.skillbox img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.skillbox h2 {
  margin: 0;
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.skillbox:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0px 10px 25px rgba(0, 255, 150, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.skillbox:hover img {
  transform: scale(1.1) rotate(5deg);
}

.skill-tool h1 {
  font-size: 28px;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: font2;
}

/* Pause animation on hover */
.skills-container:hover .skills-swiper {
  animation-play-state: paused;
}

.skills-container:hover .tools-swiper {
  animation-play-state: paused;
}




/* Responsive */
@media (max-width: 768px) {
  .skillbox {
    width: 160px;
    height: 160px;
  }

  .skillbox img {
    width: 60px;
    height: 60px;
  }

  .skillbox h2 {
    font-size: 16px;
  }
}

.page7 {
  min-height: 110vh;
  width: 100%;
}

/* Layout */
.contact-wrapper {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: #000000;
  padding: 20px;
}

.contact-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.contact-card {
  background: transparent;
  padding: 2rem;
  
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid #404040;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-header p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

/* Form styles */
#contactForm {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #404040;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  background-color: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e74a3f;
  box-shadow: 0 0 0 3px rgba(231, 74, 63, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

.full-width textarea {
  resize: vertical;
  min-height: 120px;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #e74a3f 0%, #D03225 100%);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 74, 63, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Loading state */
.submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn.loading {
  color: transparent;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Result message */
.form-result {
  text-align: center;
  font-size: 1rem;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.form-result.show {
  opacity: 1;
  transform: translateY(0);
}

.form-result.success {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-result.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.form-result.loading {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 1.5rem;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    padding: 10px;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-header h1 {
    font-size: 1.75rem;
  }
}

footer {
  height: 32vh;
  text-align: center;
  padding: 1rem 0;
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 1000;
  border-top: 1px solid #403f3f;
}

.footer-1{
   font-size: 1.5rem;
   color: white;
   margin-bottom: -30px;
}

.footer-1 h3 {
  font-family: font4;
} 
.footer-1 h3 span {
  font-family: font2;
  color: #e74a3f;
  font-weight: 600;
} 

.footer-2 {
  font-family: font5;
  font-size: 1.5rem;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 20px;
}

.follow h3{
 color: #e74a3f;
}
.social-icons{
  font-size: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.info h4{
  text-align: start;
  margin: 10px 0;
}

.info h4 i{
  margin-right: 5px;
  color: #e74a3f;
}

.copyright{
  padding-top: 15px;
  height: 10vh;
  width: 100%;
  background-color: #e74a3fe1;
  color: black;
  font-family: font2;
  display: flex;
  align-items: start;
  justify-content: center;
  font-size: 20px;
}

.copyright p span {
  color: #fff;
}
