@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

/* --- Global Theme Variables --- */
:root {
    --bg-color: #0b0f19;         /* Deep Midnight Navy */
    --surface-color: #111827;    /* Slate Navy (Mobile Menu) */
    --text-color: #ffffff;       /* Pure White */
    --accent-color: #00f0ff;     /* Electric Cyan / Neon Blue */
    --accent-glow: rgba(0, 240, 255, 0.4); /* High-tech Glow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* ==========================================================================
   HEADER & NAVIGATION BAR (DESKTOP DEFAULT)
   ========================================================================== */

header, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 8%;
    background-color: #111827; /* Solid surface slate */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Strong shadow separation */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px var(--accent-color);
}

/* Desktop Horizontal Link List */
.nav-links {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none !important;
}

.nav-links a {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

/* Hamburger Toggle Button (Hidden on Desktop) */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger, 
.hamburger::before, 
.hamburger::after {
    content: '';
    display: block;
    background: var(--accent-color);
    height: 3px;
    width: 25px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(5px); }


/* ==========================================================================
   MOBILE NAVIGATION BREAKPOINT
   ========================================================================== */

@media (max-width: 820px) {
    .nav-toggle {
        display: block; /* Show hamburger button on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 60px; /* Positioned right below the header bar */
        left: 0;
        width: 100%;
        max-height: 0;
        overflow-y: auto; /* Enables scrolling inside menu if screen is short */
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: max-height 0.4s ease-in-out;
        border-bottom: none; /* FIX: Removed ghost border when collapsed */
    }

    .nav-menu.active {
        max-height: calc(100vh - 60px); /* Bounded to viewport height */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* FIX: Border only appears when open */
    }

    .nav-links {
        flex-direction: column;
        padding: 2.5rem 0;
        gap: 2rem;
        align-items: center;
    }

    .nav-links a {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   HERO / HOME SECTION & DYNAMIC TITLE FLIPPER
   ========================================================================== */

section {
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: var(--bg-color);
}

.home .home-content h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span {
    color: var(--accent-color);
}

.home-content h3 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

.home-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Dynamic Slide & Fade Transition Container */
.typing-container {
    display: inline-block;
    color: var(--accent-color);
}

.typing-container span {
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: transform, opacity;
}

.home-img {
    border-radius: 50%;
}

.home-img img {
    position: relative;
    width: 16vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--accent-color);
    cursor: pointer;
    transition: 0.3s ease;
}

.home-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px var(--accent-color);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid var(--accent-color);
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: var(--accent-color);
}

.social-icons a:hover {
    color: var(--bg-color);
    transform: scale(1.1) translateY(-5px);
    background-color: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: var(--bg-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: var(--accent-color);
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.03);
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 25px var(--accent-color);
}

@media (max-width: 1000px) {
    .home {
        gap: 4rem;
    }
}

@media(max-width: 820px) {
    .home {
        flex-direction: column;
        margin: 5rem 2rem;
        padding-top: 10rem;
    }

    .home .home-content h3 {
        font-size: 2.5rem;
    }

    .home-content h1 {
        font-size: 4.5rem;
    }

    .home-img img {
        width: 45vw;
        margin-top: 2rem;
    }
}

/* ==========================================================================
   PROJECT DETAIL PAGE LAYOUT
   ========================================================================== */

.project-detail-wrapper,
.project-detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 24px 60px 24px;
  color: #e2e8f0;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #38bdf8;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

.project-header h1 {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #f8fafc;
}

.project-header .subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.divider {
  border: 0;
  height: 1px;
  background: #334155;
  margin: 32px 0;
}

.markdown-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.markdown-body h1, 
.markdown-body h2, 
.markdown-body h3 {
  color: #f8fafc;
  margin-top: 1.8em;
  margin-bottom: 0.8em;
  font-weight: 600;
}

.markdown-body h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid #334155;
  padding-bottom: 0.3em;
}

.markdown-body p, 
.markdown-body ul, 
.markdown-body ol {
  margin-bottom: 1.2em;
}

.markdown-body ul, 
.markdown-body ol {
  padding-left: 1.5em;
}

.markdown-body li {
  margin-bottom: 0.4em;
}

.markdown-body img {
  max-width: 30%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.markdown-body code {
  background-color: #1e293b;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  color: #38bdf8;
}

.markdown-body pre {
  background-color: #0f172a;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  border: 1px solid #334155;
}

.markdown-body pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

/* Video Grid Layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.video-card {
  display: flex;
  flex-direction: column;
  background-color: #0f172a;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #1e293b;
}

.video-card p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.video-card video {
  width: 100%;
  height: auto;
  max-height: 250px;
  border-radius: 6px;
  display: block;
  background: #000;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PROJECTS PAGE GRID & CARDS
   ========================================================================== */

.projects-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 5% 80px 5%;
}

.projects-header {
  margin-bottom: 40px;
}

.projects-header .page-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}

.projects-header .page-subtitle {
  font-size: 1.6rem;
  color: #94a3b8;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.project-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.card-title {
  font-size: 2rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.3;
  margin-bottom: 6px;
}

.card-subtitle {
  font-size: 1.3rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 16px;
}

.card-summary {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tech-tag {
  background: rgba(0, 240, 255, 0.08);
  color: var(--accent-color);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.project-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  background: transparent;
  color: var(--accent-color);
  border: 1.5px solid var(--accent-color);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-btn:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 0 15px var(--accent-glow);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 8px 8px;
  margin-bottom: 20px;
  background-color: #000;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.06);
}

/* ==========================================================================
   SKILLS PAGE STYLES
   ========================================================================== */

.skills-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5% 80px 5%;
  margin-top: 140px !important;
}

.skills-header {
  margin-bottom: 40px;
}

.skills-header .page-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}

.skills-header .page-subtitle {
  font-size: 1.6rem;
  color: #94a3b8;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.skill-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.skill-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-list li {
  font-size: 1.4rem;
  color: #cbd5e1;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill-list li small {
  color: #64748b;
  font-size: 1.2rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR SKILLS
   ========================================================================== */

@media (max-width: 992px) {
  .skills-page-wrapper {
    padding-top: 160px;
  }
  
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .skills-page-wrapper {
    padding-top: 160px !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  .skills-header .page-title {
    font-size: 2.4rem;
  }

  .skills-header .page-subtitle {
    font-size: 1.4rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .skill-card {
    padding: 20px;
  }
}

/* Ensure leadership items inside the main card container match card spacing */
.skills-category .leadership-item {
    margin-bottom: 1.2rem;
    text-align: left;
}

.skills-category .leadership-item h4 {
    color: #00f2fe; /* Your cyan accent color */
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.skills-category .leadership-item p {
    font-size: 0.85rem;
    color: #a0aec0; /* Soft gray for body text */
    line-height: 1.4;
}

/* ==========================================================================
   LEADERSHIP SKILLS SUB-ITEMS
   ========================================================================== */
.leadership-item {
    margin-bottom: 1.2rem;
    text-align: left;
}

.leadership-item h4 {
    color: #00f2fe;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.leadership-item p {
    font-size: 1rem;
    color: #a0aec0;
    line-height: 1.5;
}

/* ==========================================================================
   EXPERIENCE TIMELINE STYLES
   ========================================================================== */

.experience-page-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 5% 80px 5%;
  margin-top: 140px !important;
}

.experience-header {
  margin-bottom: 50px;
  text-align: center;
}

.experience-header .page-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}

.experience-header .page-subtitle {
  font-size: 1.6rem;
  color: #94a3b8;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px; /* Space for the line on the left */
}

/* The Vertical Line */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px; /* Aligns line to the left */
  width: 2px;
  background: rgba(0, 240, 255, 0.2); /* Faded cyan line */
}

/* Individual Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

/* The Glowing Dot */
.timeline-dot {
  position: absolute;
  left: -31px; /* Centers dot on the vertical line */
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
  border: 2px solid var(--bg-color);
  z-index: 2;
}

/* The Date */
.timeline-date {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* Typography inside the Card */
.timeline-title {
  font-size: 2rem;
  color: #f8fafc;
  margin-bottom: 4px;
}

.timeline-subtitle {
  font-size: 1.3rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

/* Bullet Points */
.timeline-bullets {
  list-style-type: none;
  padding: 0;
}

.timeline-bullets li {
  font-size: 1.3rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

/* Custom Bullet Icon (Chevron) */
.timeline-bullets li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .timeline-container {
    padding-left: 30px;
  }
  .timeline-container::before {
    left: 10px;
  }
  .timeline-dot {
    left: -26px;
  }
}



/* Trial*/

/* ==========================================================================
   SCALED-UP ASYMMETRICAL ABOUT PAGE STYLES
   ========================================================================== */

.split-about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1450px; /* Increased from 1300px to give it more breathing room */
    margin: 100px auto 60px auto;
    padding: 0 4%;
    gap: 40px;
    align-items: center;
}

/* Unified Left Card - Scaled */
.about-unified-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 45px; /* Increased padding */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-unified-card:hover,
.about-photo-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.card-header-section {
    margin-bottom: 28px;
}

.card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
}

.split-title {
    font-size: 3.8rem; /* Slightly larger heading */
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.split-tagline {
    font-size: 1.7rem; /* Scaled up */
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.4;
}

.split-bio {
    font-size: 1.5rem; /* Scaled up for better readability */
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 20px;
}

.split-bio:last-child {
    margin-bottom: 0;
}

/* Photo Card Styling - Scaled */
.about-photo-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px; /* Increased padding */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.photo-card-name {
    font-size: 2rem; /* Scaled up */
    color: #f8fafc;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.photo-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.photo-container img {
    width: 100%;
    height: auto;
    max-height: 540px; /* Slightly taller image constraint */
    object-fit: cover;
    display: block;
}

/* Responsive for Mobile */
@media (max-width: 900px) {
    .split-about-wrapper {
        grid-template-columns: 1fr;
        margin-top: 100px;
        gap: 20px;
    }
}


/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-page-wrapper {
    max-width: 1200px;
    margin: 120px auto 80px auto;
    padding: 0 5%;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.contact-header .page-subtitle {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.8rem;
    color: #f8fafc;
    margin-bottom: 16px;
}

.contact-info-card p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.1rem;
    color: #94a3b8;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-socials {
    display: flex;
    gap: 14px;
}

.social-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 8px;
    color: #f8fafc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(0, 240, 255, 0.05);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: #0a0e17;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px;
    color: #f8fafc;
    font-size: 1.05rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.submit-btn {
    background: var(--accent-color);
    color: #0a0e17;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive for Mobile */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}