/* Global Styles */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: #d4d2cd;
  background:white;
}

/* Header Styles */
header {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

body.light-theme header {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logotext {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

body.light-theme .logotext {
  color: #111111;
}

.logo-container, .header-controls {
  flex: 1;
}

.header-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

/* Navigation Styles */
nav {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex: 2;
}
nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

body.light-theme nav a {
  color: rgba(0, 0, 0, 0.6);
}

nav a:hover, nav a.active {
  color: #ffffff;
  background: rgba(2, 183, 243, 0.2);
}

body.light-theme nav a:hover, body.light-theme nav a.active {
  color: #02b7f3;
  background: rgba(2, 183, 243, 0.1);
}

/* Theme & Language Switcher Layout */
.controls-container {
  display: flex;
  align-items: center;
  gap: 15px;
  position: fixed;
  top: 18px;
  right: 60px;
  z-index: 1100;
}

.theme-switch, .lang-switch {
  display: inline-block;
  height: 28px;
  position: relative;
  width: 54px;
}

.theme-switch input, .lang-switch input {
  display: none;
}

.slider {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}

body.light-theme .slider {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.slider:before {
  background-color: #fff;
  bottom: 3px;
  content: "";
  height: 20px;
  left: 3px;
  position: absolute;
  transition: .4s;
  width: 20px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background-color: #02b7f3;
  border-color: transparent;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider .icon {
  font-size: 12px;
  user-select: none;
  z-index: 1;
}

.slider .en, .slider .jp {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

body.light-theme .slider .en, body.light-theme .slider .jp {
  color: #666;
}

input:checked + .slider .en, input:checked + .slider .jp {
  color: #fff;
}

@media (max-width: 992px) {
  header {
    padding: 15px 30px;
  }
  .controls-container {
    right: 30px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }
  .controls-container {
    position: static;
    margin-top: 10px;
  }
  nav {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Section Spacing */
section {
  padding: 100px 0;
  position: relative;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  padding-top: 100px; /* Base padding for largest screens */
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text-content {
  text-align: left;
}

.hero_text {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d4d2cd;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.hero-description {
  margin-top: 30px;
  text-align: left;
}

.hero-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #b0b0b0;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  text-align: left;
}

.hero-description strong {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(2, 183, 243, 0.4);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.image-container {
  position: relative;
  width: 350px;
  height: 450px;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.aakashlight a {
  color: #02b7f3;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.aakashlight a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #02b7f3;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.aakashlight a:hover::after {
  transform: scaleX(1);
}

.center-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  padding: 0 40px;
}

.float_right {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.float_right:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(2, 183, 243, 0.2);
}

.center-content p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  line-height: 1.8;
}

/* Go to Top Button */
.gotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #02b7f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(2, 183, 243, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px;
}

.gotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gotop:hover {
  background: #0099d6;
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(2, 183, 243, 0.5);
}

.gotop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.gotop:hover img {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .gotop {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}

/* Skill */
.skill {
  background-color: black;
}
.skill img {
  height: 100px;
  width: 100px;
}
.skill {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.skill img:hover {

}
/*footer style start here*/
footer {
  background-color: gray;
}

footer {
  text-align: center;
}

.social-media-icon img {
  width: 40px;
  height: 40px;
  transition: 0.3s ease;
}
.fblogo:hover {
  color: #732d2d; /* Bolder Facebook blue */
}

.linkedinlogo:hover {
  color: #004182; /* Bolder LinkedIn blue */
}

.twitterlogo:hover {
  color: #0d95e8; /* Bolder Twitter blue */
}

.instagramlogo:hover {
  color: #d6249f; /* Strong pink from Instagram gradient */
}

/* Skills Section Styling */
.skill-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.projects-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.projects-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.project-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(145deg, #1a1a1a, #000000);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 4px 18px rgba(2, 183, 243, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid rgba(2, 183, 243, 0.3);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(2, 183, 243, 0.35);
  background: linear-gradient(145deg, #121212, #000000);
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #d4d2cd;
  text-shadow: 0 0 10px rgba(2, 183, 243, 0.2);
}

.project-card p {
  margin: 0;
  font-size: 0.98rem;
  color: #b0b0b0;
  line-height: 1.7;
}

.section-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #d4d2cd;
  position: relative;
  padding-left: 60px;
  text-shadow: 0 0 15px rgba(2, 183, 243, 0.15);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 60px;
  transform: none;
  width: 60px;
  height: 4px;
  background: rgb(2, 183, 243);
  border-radius: 2px;
}

.skill-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 60px;
}

.skill-card {
  background: linear-gradient(145deg, #1a1a1a, #000000);
  border-radius: 15px;
  padding: 20px;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 183, 243, 0.25);
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(2, 183, 243, 0.35);
}

.skill-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.skill-card:hover img {
  transform: scale(1.1);
}

.skill-card h3 {
  font-size: 1.1rem;
  color: #d4d2cd;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Footer Styling */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Theme Overrides */
body.light-theme {
  background-color: #ffffff;
  color: #333333;
}

body.light-theme header {
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .logotext,
body.light-theme nav a {
  color: #333333;
}

body.light-theme section,
body.light-theme .hero-section,
body.light-theme .skill-section,
body.light-theme .projects-section,
body.light-theme .news-section,
body.light-theme .about-section,
body.light-theme .contact-section,
body.light-theme .news-detail-section {
  background: #ffffff !important;
}

body.light-theme .hero_text,
body.light-theme .section-title,
body.light-theme .news-teaser-headline,
body.light-theme .news-detail-title,
body.light-theme .project-card h3,
body.light-theme .skill-card h3,
body.light-theme .about-greeting,
body.light-theme .contact-card h3 {
  color: #111111;
  text-shadow: none;
}

body.light-theme .hero-description p,
body.light-theme .about-details,
body.light-theme .about-skills li,
body.light-theme .project-card p,
body.light-theme .news-teaser-date,
body.light-theme .news-detail-content,
body.light-theme .contact-card p,
body.light-theme .form-group label {
  color: #333333;
  text-shadow: none;
}

body.light-theme .about-skills li {
  color: #000000;
}

body.light-theme .hero-description strong {
  color: #000000;
}

body.light-theme .project-card,
body.light-theme .skill-card,
body.light-theme .news-teaser-link,
body.light-theme .news-detail-container,
body.light-theme .contact-card,
body.light-theme .contact-form {
  background: #f8f9fa !important;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body.light-theme .form-group input,
body.light-theme .form-group textarea {
  background: #ffffff;
  border-bottom: 2px solid #bbb;
  color: #111;
}

body.light-theme .footer {
  background-color: #333333;
  color: #ffffff;
  border-top: 1px solid #222222;
}

body.light-theme .footer-tagline,
body.light-theme .social-media h4,
body.light-theme .copyright,
body.light-theme .footer-links a {
  color: #cccccc;
}

body.light-theme .footer-brand h3 {
  background: linear-gradient(45deg, #02b7f3, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Theme Toggle Button Styles */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  position: fixed;
  top: 25px;
  right: 40px;
  z-index: 1001;
}

.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #333;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
  border-radius: 50%;
  z-index: 2;
}

input:checked + .slider {
  background-color: #02b7f3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider .sun, .slider .moon {
  font-size: 14px;
  user-select: none;
}

/* Language Switcher Button Styles */
.lang-switch-wrapper {
  display: flex;
  align-items: center;
  position: fixed;
  top: 25px;
  right: 110px; /* Theme switch is at 40px, so 40 + 60 + 10 = 110px */
  z-index: 1001;
}

.lang-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.lang-switch input {
  display: none;
}

.slider.lang {
  background-color: #333;
  padding: 0 8px;
}

.slider.lang:before {
  background-color: #fff;
}

input:checked + .slider.lang {
  background-color: #02b7f3;
}

.slider.lang .en, .slider.lang .jp {
  font-size: 12px;
  font-weight: 700;
  user-select: none;
  color: #fff;
}

/* Language Content Visibility */
[data-lang="ja"] {
  display: none;
}

body.lang-ja [data-lang="en"] {
  display: none;
}

body.lang-ja [data-lang="ja"] {
  display: block;
}

/* Inline language elements */
span[data-lang="ja"] {
  display: none;
}

body.lang-ja span[data-lang="en"] {
  display: none;
}

body.lang-ja span[data-lang="ja"] {
  display: inline;
}

@media (max-width: 768px) {
  .theme-switch-wrapper {
    top: 15px;
    right: 20px;
  }
  .lang-switch-wrapper {
    top: 15px;
    right: 90px;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 2rem;
  margin: 0;
  background: linear-gradient(45deg, #02b7f3, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(2, 183, 243, 0.4);
}

.footer-tagline {
  color: #e6e6e6;
  margin: 0;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.social-media {
  text-align: center;
}

.social-media h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.social-link {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  z-index: 1;
}
/* GitHub */
.social-link[href*="github"]:hover {
  background: #24292e; 
  transform: translateY(-5px);
}

/* Facebook */
.social-link[href*="facebook"]:hover {
  background: #1877F2;
  transform: translateY(-5px);
}

/* LinkedIn */
.social-link[href*="linkedin"]:hover {
  background: #0077B5;
  transform: translateY(-5px);
}

/* X (formerly Twitter) */
.social-link[href*="x.com"]:hover {
  background: #000000;
  transform: translateY(-5px);
}

.social-link[href*="x.com"] .social-icon {
  width: 18px;  /* Slightly smaller for X logo */
  height: 18px;
}

.social-link[href*="x.com"]:hover .social-icon {
  filter: brightness(0) invert(1);
}

/* Instagram */
.social-link[href*="instagram"]:hover {
  background: #E4405F;
  transform: translateY(-5px);
}

.social-link[href*="instagram"]::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link[href*="instagram"]:hover::before {
  opacity: 1;
}

.social-link:hover .social-icon {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #888;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #02b7f3;
}

/* Remove old footer styles */
footer {
  text-align: center;
  background-color: gray;
}

.social-media-icon img {
  width: 40px;
  height: 40px;
  transition: 0.3s ease;
}

.fblogo:hover,
.linkedinlogo:hover,
.twitterlogo:hover,
.instagramlogo:hover {
  color: initial;
}

/* Typing Effect Styles */
.typed-text {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 1.2;
}

.typed-text .aakashlight a {
  color: #02b7f3;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.typed-text .aakashlight a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #02b7f3;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.typed-text .aakashlight a:hover::after {
  transform: scaleX(1);
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  padding: 20px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.contact-card {
  background: linear-gradient(145deg, #1a1a1a, #000000);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(2, 183, 243, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(2, 183, 243, 0.4);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a1a, #000000);
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 15px;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(145deg, #000000, #1a1a1a);
  transform: scale(1.05);
}

.contact-card:hover .contact-icon img {
  transform: scale(1.1);
}

.contact-card h3 {
  color: #d4d2cd;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.contact-card p {
  color: #02b7f3;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(2, 183, 243, 0.4);
}

/* Contact Form Styles */
.contact-form {
  background: linear-gradient(145deg, #1a1a1a, #000000);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(2, 183, 243, 0.25);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  background: transparent;
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 1rem;
  color: #e6e6e6;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #02b7f3;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
  top: -20px;
  font-size: 0.9rem;
  color: #02b7f3;
}

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

.submit-btn {
  background: #02b7f3;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background: #0099d6;
  transform: translateY(-2px);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact-form {
    padding: 30px 20px;
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.section-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #d4d2cd;
  position: relative;
  padding-left: 60px;
  text-shadow: 0 0 15px rgba(2, 183, 243, 0.15);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 60px;
  transform: none;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.about-text {
  text-align: left;
  padding-left: 60px;
  max-width: 800px;
}

.about-greeting {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #d4d2cd;
  text-align: left;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.about-details {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 20px;
  text-align: left;
  max-width: 700px;
}

.about-skills {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  max-width: 700px;
}

.about-skills li {
  position: relative;
  padding: 15px 0;
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: #b0b0b0;
  text-align: left;
  transition: all 0.3s ease;
}

.about-skills li::before {
  content: '▹';
  position: absolute;
  left: -20px;
  color: #02b7f3;
  font-size: 1.2rem;
}

.about-skills li:hover {
  color: #d4d2cd;
  padding-left: 10px;
}

.about-skills li:hover::before {
  color: #02b7f3;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    padding: 0;
  }

  .about-text {
    padding-left: 40px;
    padding-right: 20px;
  }

  .about-greeting {
    font-size: 1.6rem;
  }

  .about-details {
    font-size: 1.05rem;
  }

  .about-skills li {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .about-text {
    padding-left: 20px;
    padding-right: 15px;
  }

  .about-greeting {
    font-size: 1.5rem;
  }

  .about-details, 
  .about-skills li {
    font-size: 1rem;
  }
}

/* News Section */
.news-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.news-teaser-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.news-teaser-link {
  display: block;
  text-decoration: none;
  background: linear-gradient(145deg, #1a1a1a, #000000);
  border-radius: 15px;
  padding: 30px 40px;
  border: 1px solid rgba(2, 183, 243, 0.3);
  box-shadow: 0 4px 15px rgba(2, 183, 243, 0.25);
  transition: all 0.3s ease;
}

.news-teaser-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(2, 183, 243, 0.4);
  background: linear-gradient(145deg, #121212, #000000);
}

.news-teaser-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}

.news-teaser-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

.news-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-teaser-text {
  flex-grow: 1;
}

.news-teaser-date {
  display: block;
  color: #02b7f3;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.news-teaser-headline {
  color: #d4d2cd;
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.news-teaser-arrow span {
  color: #02b7f3;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .news-teaser-container {
    padding: 0 20px;
  }
  
  .news-teaser-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .news-teaser-headline {
    font-size: 1.3rem;
  }
}

/* Update other instances of section-title */
.skill-section .section-title,
.about-section .section-title,
.contact-section .section-title {
  text-align: left;
  padding-left: 60px;
}

.skill-section .section-title::after,
.about-section .section-title::after,
.contact-section .section-title::after {
  left: 60px;
  transform: none;
}
