/* ===========================
   RESET & BASE STYLES
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* ===========================
   NAVIGATION
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #1b1c1d;
  z-index: 1000;
  opacity: 0.8;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ea940c;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #ea940c;
  transition: width 0.6s ease;
}

.nav-links a:hover {
  color: #ea940c;
}

.nav-links a:hover::after {
  width: 100%;
}

.lets-talk {
  background-color: transparent;
  border: 2px solid #ea940c;
  color: #ea940c;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.lets-talk:hover {
  background-color: rgba(199, 138, 16, 0.1);
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  display: flex;
  min-height: 100vh;
  padding: 8rem 5% 5rem;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h3 {
  color: #ea940c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-content h1 .highlight {
  color: #ea940c;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #8892b0;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-btn {
  background-color: #ea940c;
  color: #0a192f;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.primary-btn:hover {
  background-color: rgba(214, 216, 215, 0.8);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.social-link:hover {
  color: #ea940c;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  width: 400px;
  height: 500px;
  position: relative;
  right: -105px;
  top: -40px;
  overflow: hidden;
  border-radius: 10px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   SECTION BASE STYLE
=========================== */
.section {
  display: flex;
  min-height: 100vh;
  padding: 8rem 5% 5rem;
  gap: 2rem;
  align-items: center;
}

.section h3 {
  color: #ea940c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.section-content {
  flex: 1;
  max-width: 600px;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.section-content {
  flex: 1;
  max-width: 50%;
}

.section-experience {
  flex: 1;
  max-width: 45%;
}

.skills {
  margin-top: 2rem;
}

.skill-item {
  margin-bottom: 1.5rem;
}

.skill-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(243, 246, 245, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #ea940c;
  border-radius: 4px;
}

.experience-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.experience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(243, 246, 245, 0.1);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.experience-item:hover {
  background: rgba(243, 246, 245, 0.15);
}

.exp-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.experience-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.exp-time {
  font-size: 0.95rem;
  color: #ea940c;
  font-weight: 500;
}

.exp-org {
  color: #f3f6f5;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===========================
   PROJECTS SECTION
=========================== */
.projects {
  flex-direction: column;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.project-card {
  background-color: rgba(100, 255, 218, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card h4 {
  color: #fff;
  margin: 1rem;
}

.project-card p {
  color: #8892b0;
  margin: 0 1rem 1rem;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services {
  flex-direction: column;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.service-card {
  background-color: rgba(100, 255, 218, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.2s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform;
}

.service-card:hover {
  transform: scale(1.05) !important;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.service-card p {
  color: #8892b0;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  background-color: rgba(100, 255, 218, 0.05);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 5px;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-info {
  background-color: rgba(100, 255, 218, 0.05);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item h4 {
  color: #ea940c;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: #8892b0;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background-color: rgba(100, 255, 218, 0.05);
  padding: 4rem 5% 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section .logo {
  margin-bottom: -0.5rem;
}

.footer-section p {
  color: #8892b0;
  line-height: 1.6;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  color: #8892b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ea940c;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(100, 255, 218, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #fff;
  font-size: 0.9rem;
}

/* ===========================
   BACKGROUND VIDEO
=========================== */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  z-index: -1;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}
