@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400&display=swap');

:root {
  --sky-blue: #A8D9FF;
  --deep-black: #000000;
  --steel-gray: #556E81;
  --slate-blue: #7395AF;
  --muted-navy: #648198;
  --cool-denim: #67859C;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background-color: var(--off-white);
  color: var(--deep-black);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-img {
  height: 44px;
  width: auto;
  transition: height 0.3s ease;
}

.logo-link>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  /* Remove any default line spacing */
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 575;
  color: var(--deep-black);
  font-size: 1.3rem;
  letter-spacing: 1px;
  /* Slight spacing between letters */
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.logo-slogan {
  font-family: 'Montserrat', sans-serif;
  /* Similar to News Gothic */
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--steel-gray);
  margin-top: 0px;
  letter-spacing: 0.5px;
  /* Slight spacing between letters */
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--deep-black);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--slate-blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--slate-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--deep-black);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--off-white) 100%);
  padding: 0 20px;
  position: relative;
  padding-top: 100px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--deep-black);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--slate-blue);
}

.hero .subheading {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--steel-gray);
  margin-bottom: 30px;
  font-weight: 400;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--deep-black);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 10px;
}

.cta:hover {
  background: var(--slate-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--steel-gray);
  font-size: 1.5rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Skills Section */
.skills {
  background-color: var(--white);
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--deep-black);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--steel-gray);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.skills-category {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skills-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.skills-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--sky-blue);
}

.skills-icon {
  font-size: 2.5rem;
  color: var(--slate-blue);
  margin-bottom: 15px;
}

.skills-category h3 {
  font-size: 1.8rem;
  color: var(--deep-black);
}

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

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Center content vertically */
  padding: 20px 15px;
  /* Adjust padding for better spacing */
  border-radius: 10px;
  background: var(--off-white);
  transition: all 0.3s ease;
  text-align: center;
  /* Center text */
  min-height: 100px;
  /* Set minimum height for consistency */
  width: 100%;
  /* Ensure full width within grid cell */
}

.skill-item:hover {
  background: var(--sky-blue);
  transform: translateY(-5px);
}

.skill-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--slate-blue);
}

.skill-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.skill-name {
  font-size: 0.9rem;
  color: var(--deep-black);
  text-align: center;
  font-weight: 500;
  margin: 0;
  /* Remove default margins */
}

/* About Section */
.about {
  background-color: var(--off-white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  max-height: 550px;
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sky-blue);
  margin-bottom: 20px;
}

.founder-info h3 {
  font-size: 1.8rem;
  color: var(--deep-black);
  margin-bottom: 5px;
}

.title {
  color: var(--steel-gray);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: var(--steel-gray);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: var(--slate-blue);
  transform: translateY(-3px);
}

.bio-content {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
  padding: 0 20px;
}

.mission {
  font-size: 1.4rem;
  color: var(--slate-blue);
  font-style: italic;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sky-blue);
}

.bio-block {
  margin-bottom: 30px;
}

.bio-block h3 {
  font-size: 1.5rem;
  color: var(--deep-black);
  margin-bottom: 15px;
}

.bio {
  margin-bottom: 1.5em;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--steel-gray);
}

.highlight {
  color: var(--slate-blue);
  font-weight: 500;
}

/* Portfolio Coming Soon Animation */
.coming-soon {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  max-width: 800px;
}

.coming-soon-icon {
  font-size: 4rem;
  color: var(--slate-blue);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

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

.coming-soon h3 {
  font-size: 2rem;
  color: var(--deep-black);
  margin-bottom: 20px;
}

.coming-soon p {
  color: var(--steel-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}

.inspiration {
  background: var(--off-white);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  border-left: 4px solid var(--slate-blue);
}

.inspiration h4 {
  color: var(--slate-blue);
  margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio {
  background-color: var(--white);
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.portfolio-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-icon {
  font-size: 3rem;
  color: var(--slate-blue);
  margin-bottom: 20px;
}

.portfolio-card h3 {
  font-size: 1.5rem;
  color: var(--deep-black);
  margin-bottom: 15px;
}

.portfolio-link {
  color: var(--slate-blue);
  text-decoration: none;
  font-weight: 600;
  margin: 15px 0;
  display: inline-block;
  transition: color 0.3s ease;
}

.portfolio-link:hover {
  color: var(--steel-gray);
  text-decoration: underline;
}

.portfolio-card p {
  color: var(--steel-gray);
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Contact Section - Updated for better mobile/tablet centering */
.contact {
  background-color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
  text-align: center;
  /* Center text content */
}

.contact-method {
  display: flex;
  flex-direction: column;
  /* Stack icon and content vertically */
  align-items: center;
  /* Center items horizontally */
  justify-content: center;
  /* Center items vertically */
  margin-bottom: 30px;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
  /* Ensure full width for proper centering */
  max-width: 300px;
  /* Limit maximum width for better appearance */
}

.contact-method:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-method i {
  font-size: 1.8rem;
  color: var(--slate-blue);
  margin-right: 0;
  /* Remove right margin since we're centering */
  margin-bottom: 15px;
  /* Add bottom margin for spacing */
  min-width: 30px;
}

.contact-method h4 {
  font-size: 1.2rem;
  color: var(--deep-black);
  margin-bottom: 5px;
}

.contact-method p {
  color: var(--steel-gray);
}

.contact-form {
  flex: 2;
  min-width: 300px;
  max-width: 600px;

}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-black);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--cool-denim);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate-blue);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  padding: 15px 30px;
  background: var(--deep-black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--slate-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--muted-navy);
  color: var(--white);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  align-items: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 10px;
}

.footer-slogan {
  font-size: 0.9rem;
  color: var(--sky-blue);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--sky-blue);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--sky-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--cool-denim);
  color: var(--sky-blue);
  font-size: 0.9rem;
}

/* Form validation styles */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  min-height: 20px;
}

input.error,
textarea.error {
  border-color: #e74c3c;
}

input.valid,
textarea.valid {
  border-color: #2ecc71;
}

/* Loading spinner */
.loading-spinner {
  display: inline-flex;
  margin-right: 8px;
}

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

/* Success message */
.success-message {
  background: #2ecc71;
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 0 0 30px 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 120px;
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    /* Center text */
  }

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

  .skills-category,
  .portfolio-item {
    min-width: 100%;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .founder-card,
  .bio-content {
    max-width: 100%;
  }

  .contact-container {
    flex-direction: column;
  }

  .footer-col {
    min-width: 100%;
    margin-bottom: 30px;
  }

  .footer-col:last-child {
    margin-bottom: 0;
  }

  /* Contact section mobile styles */
  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensure centering on mobile */
  }

  .contact-method {
    flex-direction: column;
    /* Stack vertically */
    text-align: center;
    /* Center text */
    align-items: center;
    /* Center items horizontally */
    justify-content: center;
    /* Center items vertically */
    width: 100%;
    max-width: 300px;
    /* Reasonable max width for mobile */
    margin: 0 auto 20px;
    /* Center horizontally with auto margins */
  }

  .contact-method i {
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .contact-method div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subheading {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .nav-container {
    padding: 0 15px;
  }

  .coming-soon {
    padding: 40px 15px;
  }

  .coming-soon h3 {
    font-size: 1.5rem;
  }

  .coming-soon p {
    font-size: 1rem;
  }

  /* Additional adjustments for very small screens */
  .contact-method {
    max-width: 280px;
    /* Slightly smaller for very small screens */
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .footer-col {
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Animation utilities */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--slate-blue);
  outline-offset: 2px;
}

/* Skip to main content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--deep-black);
  color: white;
  padding: 8px;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

@media (min-width: 769px) {
  header {
    padding: 10px 0;
  }
}