/* Reset and base styles */
:root {
  --bg: #181a1b;
  --text: #f5f6fa;
  --accent: #6c63ff;
  --nav-bg: #181a1bcc;
  --nav-border: #23272a;
  --btn-bg: #6c63ff;
  --btn-hover: #554ee0;
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', 'Roboto', Arial, sans-serif;
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-color);

  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.5rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin-left: 0.5rem; /* Changed from 2rem to 0.5rem */
  padding: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  gap: 3.5rem; /* Reduced from 4.5rem */
  list-style: none;
  margin: 0; /* Removed auto margin */
  padding: 0;
  flex: 1 1 auto;
  justify-content: center;
  position: absolute; /* Position absolutely to center properly */
  left: 50%;
  transform: translateX(-50%); /* Center the nav links */
   z-index: 10;
}

.nav-links li a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.1rem; /* Slightly smaller */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0.8rem; /* Reduced padding */
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
   z-index: 11;
}

.nav-links li a:hover {
  color: #2976ff;

  background: transparent; /* Remove background on hover */
  transform: translateY(-1px);
  text-shadow: 0 0 6px rgba(41, 118, 255, 0.2); /* Add subtle glow on hover */
}

/* ACTIVE STATE - Only highlight the text, not the background */
.nav-links li a.active {
  color: #2976ff !important; /* Force the blue color for text only */
  background: transparent !important; /* Remove background completely */
  box-shadow: none; /* Remove box shadow */
  text-shadow: 0 0 8px rgba(41, 118, 255, 0.3); /* Subtle glow around text */
}

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #2976ff, #00f7ff);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.18rem;
  font-weight: 400;
  color: #d1d5db;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.btn.cta-btn {
  display: inline-block;
  background: var(--btn-bg);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0.85em 2.2em;
  border-radius: 2em;
  box-shadow: 0 2px 16px 0 #6c63ff22;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  outline: none;
}

.btn.cta-btn:hover,
.btn.cta-btn:focus {
  background: var(--btn-hover);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px 0 #6c63ff33;
}

/* Hero Split Section */
.hero.hero-split {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 90px;
  padding-left: 7vw;
  padding-right: 0;
  gap: 0;
  position: relative;
}

.hero-left {
  flex: 0 0 48vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  text-align: left;
  gap: 1.2rem;
  min-height: 70vh;
  padding-left: 2rem
}

.intro-label {
  font-size: 1rem;
  color: #bdbdbd;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
  display: inline-block;
  font-family: 'Fira Mono', 'Consolas', monospace;
  padding-top: 4rem;
  
}

.hero-left h1 {
  font-size: 4.7rem;
  font-weight: 900;
  margin-bottom: 0.2em;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1.1;
}

.subtitle {
  font-size: 2rem;
  color: #bdbdbd;
  font-weight: 400;
  margin-bottom: 0.5em;
  letter-spacing: -1px;
}

.contribs {
  font-size: 1.3rem;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 1em;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5em;
}

.social-icon {
  width: 36px;
  height: 36px;
  filter: grayscale(0.1) brightness(1.3);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
  vertical-align: middle;
}

.social-icon:hover,
.social-icon:focus {
  filter: none;
  opacity: 1;
  transform: scale(1.12);
}

.btn.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem; /* spacing between text and icon */
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  background-color: #2563eb; /* adjust as needed */
  color: white;
  transition: background-color 0.3s;
}

.btn.cta-btn:hover {
  background-color: #1d4ed8;
}

.btn.cta-btn .icon {
  width: 1.2rem;
  height: 1.2rem;
}


.hero-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding-right: 18rem;
  padding-top: 5rem;
}

.profile-img {
  width: 420px;
  height: 500px;
  object-fit: cover;
  border-radius: 24px; /* Rectangle with slightly rounded corners */
  border: 4px solid #3b82f6;
  box-shadow: 0 8px 40px #3b82f633;
  background: #23272a;
  margin-top: 2vw;
  transition: box-shadow 0.2s;
}

.profile-img:hover {
  box-shadow: 0 16px 64px #3b82f655;
}

/* Connect Section */
.lets-connect {
  margin-top: 4rem;
  padding: 1rem 1.5rem;
  text-align: center;
}

.lets-connect h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.lets-connect p {
  font-size: 1.05rem;
  color: #bcbcbc;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: center; /* Center the social cards */
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 0;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.social-card {
  width: 100px;
  height: 120px;
  background: transparent;
  border: 1px solid white;
  border-radius: 10px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  perspective: 1000px;
}

.social-card:hover {
  transform: scale(1.05) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.social-card img {
  width:auto;
  height: 35px;
  margin-top: 15px;
}

.social-card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: white;
}

/* Footer */
.footer {
  width: 100%;
  text-align: end;
  padding: 1.2rem 0 1rem 0;
  color: #ffffff;
  background: transparent;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  margin-top: 2rem;
}

/* Professional Connect Form Styles */
.connect-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  margin: 1.5rem auto 0 auto;
  width: 100%;
}

.connect-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: 220px;
}

.connect-form-message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connect-form input,
.connect-form textarea {
  background: #23272a;
  color: #f5f6fa;
  border: 1.5px solid #2d3748;
  border-radius: 0.6rem;
  padding: 0.9em 1.1em;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
  box-shadow: 0 1px 6px rgba(41, 118, 255, 0.066);
}

.connect-form input:focus,
.connect-form textarea:focus {
  border-color: #2976ff;
  box-shadow: 0 2px 12px rgba(41, 118, 255, 0.2);
}

.connect-form textarea {
  height: 145px;
  max-height: 320px;
}

.connect-form input::placeholder,
.connect-form textarea::placeholder {
  color: #bdbdbd;
  opacity: 1;
  font-size: 0.98em;
  letter-spacing: 0.2px;
}

/* 🔽 Center the button */
.form-button-container {
  display: flex;
  justify-content: center; /* horizontal centering */
  margin-top: 1rem;
  width: 100%;
}


/* Submit button */
.connect-form button[type="submit"] {
  background: linear-gradient(90deg, #2976ff 60%, #00f7ff 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0.6em 2em;
  border: none;
  border-radius: 1.5em;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(41, 118, 255, 0.133);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.connect-form button[type="submit"]:hover,
.connect-form button[type="submit"]:focus {
  background: linear-gradient(90deg, #2563eb 60%, #00e0e0 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px rgba(41, 118, 255, 0.2);
}

/* Responsive: stack vertically on small screens */
@media (max-width: 700px) {
  .connect-form {
    flex-direction: column;
    gap: 1.1rem;
    align-items: stretch;
    max-width: 98vw;
  }
  .connect-form-fields,
  .connect-form-message {
    width: 100%;
    max-width: 100%;
  }
  .connect-form button[type="submit"] {
    align-self: center;
    width: auto;
  }
}

@media (max-width: 700px) {
  .nav-container {
    height: 54px;
  }
  .nav-links {
    gap: 1.1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn.cta-btn {
    font-size: 1rem;
    padding: 0.7em 1.5em;
  }
}

@media (max-width: 900px) {
  .hero.hero-split {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    gap: 2.5rem;
  }
  .hero-left, .hero-right {
    max-width: 100%;
    text-align: center;
    align-items: center;
    min-height: unset;
  }
  .hero-left {
    align-items: center;
  }
  .hero-right {
    justify-content: center;
    padding: 0; /* Remove all padding */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profile-img {
    width: 260px;
    height: 300px;
    margin: 0 auto; /* Center the image */
    display: block;
  }
}

@media (max-width: 1200px) {
  .hero-left h1 {
    font-size: 3rem;
  }
  .subtitle {
    font-size: 1.3rem;
  }
  .profile-img {
    width: 320px;
    height: 380px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 96%;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-content {
    padding: 0 0.2em;
  }
  .hero-right {
    padding: 0; /* Remove padding */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .profile-img {
    width: 200px; /* Better size for very small screens */
    height: 240px;
    margin: 0 auto; /* Center the image */
    display: block;
  }
  .hero-left h1 {
    font-size: 1.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .animated-title {
    font-size: 2rem;
    /* Keep the color and animation on mobile */
    color: #2976ff;
    background: linear-gradient(90deg, #2976ff, #00aeff, #2976ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .social-links {
    gap: 15px;
  }
  .social-card {
    width: 80px;
    height: 100px;
  }
}

/* Additional fix for very small screens */
@media (max-width: 320px) {
  .profile-img {
    width: 180px;
    height: 220px;
    margin: 0 auto;
    display: block;
  }
  .hero-right {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  /* Better navigation for mobile */
  .logo {
    margin-left: 0.3rem;
    position: relative;
    z-index: 2;
  }
  
  .logo-img {
    height: 36px;
  }
  
  .nav-links {
    position: static; /* Remove absolute positioning */
    transform: none; /* Remove transform */
    gap: 1.2rem;
    justify-content: flex-end; /* Align to right on mobile */
    margin-right: 0.5rem;
  }
  
  .nav-links li a {
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
  }
  
  .nav-links li a.active::after {
    width: 60%;
    height: 1.5px;
  }
  
  .hero-left {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .intro-label {
    padding-top: 2rem;
  }
  
  /* Better button sizing */
  .btn.cta-btn {
    padding: 0.8em 1.8em;
    font-size: 1.1rem;
  }
  
  /* Improved form spacing */
  .connect-form {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
  
  /* Keep animated title styles on tablet */
  .animated-title {
    color: #2976ff;
    background: linear-gradient(90deg, #2976ff, #00f7ff, #2976ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 650px) {
  .nav-links {
    gap: 0.8rem;
    margin-right: 0.3rem;
  }
  
  .nav-links li a {
    font-size: 0.85rem;
    gap: 0.25rem;
    padding: 0.3rem 0.4rem;
  }
  
  .nav-links li a svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 600px) {
  .logo {
    margin-left: 0.25rem;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .nav-links {
    gap: 1rem;
    margin: 0;
  }
  
  .nav-links li a {
    font-size: 0.85rem;
    gap: 0.25rem;
  }
  
  .nav-links li a svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 550px) {
  .logo {
    margin-left: 0.2rem;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .nav-links {
    gap: 0.6rem;
    margin-right: 0.2rem;
  }
  
  .nav-links li a {
    font-size: 0.75rem;
    padding: 0.25rem 0.3rem;
  }
  
  .nav-links li a.active::after {
    display: none; /* Hide underline on very small screens */
  }
  
  .nav-links li a.active {
    background: transparent !important; /* No background on mobile */
    color: #2976ff !important;
    text-shadow: 0 0 6px rgba(41, 118, 255, 0.4); /* Slightly stronger glow on mobile */
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .logo {
    margin-left: 0;
    flex-shrink: 0;
  }
  
  .logo-img {
    height: 30px;
  }
  
  .nav-links {
    gap: 0.8rem;
    margin: 0;
    min-width: 0;
  }
  
  .nav-links li a {
    font-size: 0.8rem;
    white-space: nowrap;
    padding: 0.3rem 0.4rem;
  }
  
  .nav-links li a.active::after {
    display: none; /* Hide underline on very small screens */
  }
  
  .nav-links li a.active {
    background: transparent !important; /* No background on mobile */
    color: #2976ff !important;
    text-shadow: 0 0 6px rgba(41, 118, 255, 0.4);
  }
}

@media (max-width: 450px) {
  .nav-container {
    padding: 0.4rem 0.2rem;
  }
  
  .logo {
    margin-left: 0.1rem;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .nav-links {
    gap: 0.4rem;
    margin-right: 0.1rem;
  }
  
  .nav-links li a {
    font-size: 0.7rem;
    padding: 0.2rem 0.25rem;
  }
  
  /* Show only icons on very small screens */
  .nav-links li a span {
    display: none;
  }
  
  .nav-links li a svg {
    width: 18px;
    height: 18px;
    margin: 0;
  }
}

@media (max-width: 400px) {
  .nav-links {
    gap: 0.5rem;
  }
  
  .nav-links li a {
    font-size: 0.75rem;
  }
  
  .nav-links li a svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }
}

/* Alternative approach - hamburger menu for very small screens */
@media (max-width: 400px) {
  .nav-links {
    gap: 0.5rem;
  }
  
  .nav-links li a {
    font-size: 0.75rem;
  }
  
  /* Optional: Hide text and show only icons */
  .nav-links li a span {
    display: none;
  }
  
  .nav-links li a svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }
}

/* Animated Title Styles */
.animated-title {
  color: #2976ff; /* Blue color to match your theme */
  font-weight: bold;
  font-size: 2.5em;
  background: linear-gradient(90deg, #2976ff, #00f7ff, #2976ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-move 2s linear infinite, pop 0.7s cubic-bezier(.68,-0.55,.27,1.55);
  display: inline-block;
  transition: all 0.3s ease;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes pop {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .animated-title {
    color: #2976ff;
    background: none;
    -webkit-text-fill-color: initial;
  }
}

/* New Contact Form Styles - Matching Site Color Palette */
.contact-form-container {
    margin: 40px auto;
    max-width: 100%;
}

.contact-form-container h3 {
    font-family: 'Poppins', sans-serif, 'arial';
    font-weight: 600;
    font-size: 2.5rem;
    color: #2976ff; /* Using your site's accent color */
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form-container h4 {
    font-family: 'Inter', sans-serif, 'arial';
    font-weight: 400;
    font-size: 1.2rem;
    color: #9b9b9b;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container {
    width: 650px;
    max-width: 100%;
    margin: 20px auto 25px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.col-xs-12 {
    width: 100%;
}

.col-md-6 {
    width: calc(50% - 0.5rem);
}

.col-sm-12 {
    width: 100%;
}

/* Input Styles */
input:focus ~ label, 
textarea:focus ~ label, 
input:valid ~ label, 
textarea:valid ~ label {
    font-size: 0.75em;
    color: #2976ff; /* Using your site's blue color */
    top: -5px;
    -webkit-transition: all 0.225s ease;
    transition: all 0.225s ease;
}

.styled-input {
    float: left;
    width: 100%;
    margin: 1rem 0;
    position: relative;
    border-radius: 8px; /* Matching your site's border radius */
}

.styled-input.wide { 
    width: 100%;
    max-width: 100%;
}

.styled-input label {
    color: #424141;
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.contact-form input,
.contact-form textarea {
    padding: 30px;
    border: 2px solid #2d3748; /* Matching your site's border color */
    width: 100%;
    font-size: 1rem;
    background-color: #1a1a1a; /* Matching your site's dark background */
    color: #f0f0f0; /* Matching your site's text color */
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus { 
    outline: 0; 
    border-color: #2976ff; /* Your site's blue accent */
    box-shadow: 0 0 0 3px rgba(41, 118, 255, 0.1);
}

.contact-form textarea {
    width: 100%;
    min-height: 15em;
    resize: vertical;
}

.submit-btn {
    float: right;
    padding: 15px 40px;
    border-radius: 8px; /* Matching your site's border radius */
    display: inline-block;
    background: linear-gradient(135deg, #2976ff 0%, #0084ff 100%); /* Your site's gradient */
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(41, 118, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41, 118, 255, 0.4);
    background: linear-gradient(135deg, #1e5db8 0%, #0379ff 100%);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form-container h3 {
        font-size: 2rem;
    }
    
    .contact-form-container h4 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .input-container {
        width: 100%;
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .col-md-6 {
        width: 100%;
    }
    
    .styled-input {
        margin: 0.5rem 0;
        float: none;
    }
    
    .styled-input[style*="float:right"] {
        float: none !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        width: 100%;
        float: none;
        text-align: center;
        padding: 18px 40px;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .input-container {
        padding: 0 0.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 16px;
    }
    
    .styled-input label {
        padding: 1rem 16px 0.8rem 16px;
    }
    
    .contact-form textarea {
        min-height: 12em;
    }
}
