* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #0b0b0b;
  color: #5c6eaa;
  overflow-x: hidden;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,system-ui;}
body{background:#0b111a;color:#dedde5}

span{color:#ffffff}

/* NAV */
.menu-toggle {
  display: none;
}

.nav{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 60px;background:#070b12;position:sticky;top:0;z-index:10
}
.brand{display:flex;align-items:center;gap:10px;font-weight:700}
.brand-icon {
  background: linear-gradient(135deg,#f97316, #f97316);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 800;
}
.brand-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #f97316(249,115,22,0.6);
  }

nav a{margin-left:30px;color:#ffffff;text-decoration:none}
nav a:hover{color:#f97316}


/* HERO */
.hero-section {
  padding: 90px 20px;
  background: radial-gradient(circle at right, #0b111a, #020617);  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgb(59, 42, 42);
  color: #f97316;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Title */
.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

/* Subtitle */
.hero-subtitle {
  margin-top: 16px;
  font-size: 22px;
  color: #807e7d;
  font-weight: 600;
}

/* Description */
.hero-description {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
}

.hero-description span {
  color: #d4c7bd;
  font-weight: 600;
}

/* Stats */
.hero-stats {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  min-width: 120px;
}

.stat-card h3 {
  color: #f97316;
  font-size: 24px;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 13px;
  color: #cbd5f5;
}

/* Buttons */
.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.btn-outline {
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid #f97316;
  color: #f97316;
  background: transparent;
  font-weight: 600;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(249,115,22,0.5);
}


/* Image */

.hero-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(177, 63, 35, 0.45);
}

.hero-image:hover img {
  transform: scale(1.05);
}


.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.06);
}



/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}
/* BUTTONS */
.btn{
  padding:14px 26px;border-radius:12px;
  text-decoration:none;font-weight:600;transition:.3s
}
.primary{background:#ff8c1a;color:#000}
.outline{border:1px solid #ff8c1a;color:#ff8c1a}
.btn:hover{transform:translateY(-4px);box-shadow:0 12px 35px rgba(255,140,26,.35)}

/* SECTION */
.section,.projects,.contact{padding:90px 8%;text-align:center}
.sub{color:#94a3b8;margin-top:10px}

/* CARDS */
.grid{
  display:grid;grid-template-columns:repeat(3,minmax(200px,1fr));
  gap:30px;margin-top:50px
}
.card{
  background:#243b76;padding:30px;border-radius:18px;
  transition:.35s
}
.card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 70px rgba(161, 115, 7, 0.25)
}
.card i{font-size:28px;color:#ff8c1a;margin-bottom:15px}

.about-section {
  background: radial-gradient(circle at top, #0f172a, #020617);
  padding: 80px 20px;
  color: #cbd5f5;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 0 
  /* padding-top: 24px  */

}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.about-title span {
  color: #f97316; /* ORANGE */
}

.about-subtitle {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  color: #94a3b8;
}

.about-subtitle span {
  color: #f97316;
  font-weight: 600;
}

.about-content {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Image Card */
.about-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img {
  width: 100%;
  display: block;
}

.about-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.55);
}

/* Text */
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cbd5f5;
}

.timeline-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #0b1220, #020617);
  color: #cbd5f5;
  font-family: 'Segoe UI', sans-serif;
}

.timeline-container {
  max-width: 1200px;
  margin: auto;
}

.timeline-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
}

.timeline-heading span {
  color: #f97316; /* ORANGE */
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.timeline-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px 30px 30px 90px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.timeline-card.active {
  border-color: #f97316;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.35);
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.45);
  border-color: #f97316;
}

/* Icon */
.timeline-card .icon {
  position: absolute;
  left: 25px;
  top: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

/* Text */
.timeline-card .year {
  color: #e64a0c;
  font-weight: 600;
  font-size: 14px;
}

.timeline-card h3 {
  margin: 8px 0 12px;
  font-size: 20px;
  color: #e7dede;
}

.timeline-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* Responsive */
@media (max-width: 900px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* PROJECTS */
.projects-section {
  background: #0f141a;
  padding: 80px 8%;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
}

.section-title span {
  color: #f97316;
}

.section-subtitle {
  text-align: center;
  color: #e9ecf0;
  margin-bottom: 60px;
}

.projects-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-card {
  display: flex;
  background: linear-gradient(145deg, #111827, #0b0f14);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #1f2937;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: #3b82f6;
}

.project-card.highlight {
  border-color: #3b82f6;
}

.project-content {
  flex: 1;
  padding: 40px;
}

.year {
  display: inline-block;
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
    color: #f97316;

}

.project-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #f97316;
}

.project-content p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tags span {
  border: 1px solid #3b82f6;
  color: #f97316;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.project-image {
  flex: 1;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}


.project-card:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 900px) {
  .project-card {
    flex-direction: column;
  }
}

/* CONTACT */
.contact-grid{
  display:flex;justify-content:center;gap:30px;margin:40px 0
}
.contact-card{
  background:#0f172a;padding:28px;border-radius:18px;
  transition:.3s
}
.contact-card:hover{
  box-shadow:0 0 40px rgba(255,140,26,.3)
}

/* FOOTER */
footer{
  background:#020617;padding:20px;text-align:center;color:#94a3b8
}

.about{
  padding:90px 8%;
  text-align:center
}
.about-container{
  max-width:900px;
  margin:40px auto 0;
  background:#0f172a;
  padding:40px;
  border-radius:20px;
}
.about-container p{
  margin-bottom:20px;
  color:#cbd5e1;
  line-height:1.8
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,sans-serif;
}

body{
  background:#0b0f14;
  color:white;
}

.topbar{
  display:flex;
  justify-content:space-between;
  padding:20px 80px;
  background:#000;
}

.topbar nav a{
  margin-left:30px;
  color:#aaa;
  text-decoration:none;
}

.topbar nav a:hover{
  color:#f97316;
}
.contact-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0f1a30, #020617);
  color: #cbd5f5;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
}

.contact-title span {
  color: #f97316;
}

.contact-subtitle {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 70px;
  color: #b5b894;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Left */
.contact-info h3 {
  color:#f97316;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 25px;
}

.info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.info-box strong {
  display: block;
  color: #f97316;
  margin-bottom: 5px;
}

.visit-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

/* Right */
.contact-form {
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-form h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Footer */
.footer {
  background: #020617;
  padding: 50px 20px 20px;
  color: #94a3b8;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }
}
html {
  scroll-behavior: smooth;
}
.core-strengths {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0b1d33, #05070b);
  color: #fff;
}

.core-strengths .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title span {
  color: #f97316;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strength-card {
  background: linear-gradient(180deg, #0f1724, #0b111b);
  border-radius: 16px;
  padding: 35px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79,124,255,0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}




.strength-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
    color: #f97316;

}

.strength-card p {
  font-size: 14.5px;
  color: #ffffff;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .strengths-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   GLOBAL RESPONSIVE FIX
=========================== */

/* NAV RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    padding: 16px 24px;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #070b12;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  nav a {
    margin: 15px 0;
    font-size: 16px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: #f97316;
  }
}

/* HERO */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* SECTIONS */
@media (max-width: 768px) {
  .section,
  .projects,
  .contact,
  .about,
  .core-strengths {
    padding: 60px 20px;
  }
}

/* GRIDS */
@media (max-width: 992px) {
  .grid,
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid,
  .strengths-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* PROJECTS */
@media (max-width: 900px) {
  .project-card {
    flex-direction: column;
  }

  .project-content {
    padding: 30px;
  }
}

/* CONTACT */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 260px;
  }

  .about-title,
  .section-title,
  .contact-title {
    font-size: 30px;
  }

  .project-content h3 {
    font-size: 22px;
  }

  .project-content p {
    font-size: 14px;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }
}
/* ================= TABLET ================= */
@media (min-width: 577px) and (max-width: 1024px) {

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-wrapper {
    gap: 30px;
  }
}
@media (min-width: 1025px) {
  .hero-container {
    grid-template-columns: 1.2fr 1fr;
  }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
}
/* MOBILE: Show image first, then content */
@media (max-width: 900px) {
  .hero-container {
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    order: 1;
    margin-bottom: 30px;
  }

  .hero-content {
    order: 2;
  }
}
@media (max-width: 900px) {
  .hero-image {
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    max-width: 320px;
  }
}
/* 🔥 REMOVE EXTRA SPACE BETWEEN SECTIONS (MOBILE ONLY) */
/* @media (max-width: 900px) {
  .hero-section,
  .about-section,
  .projects-section,
  .core-strengths,
  .contact-section,
  .timeline-section,
  .section,
  .projects,
  .contact,
  .about {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
} */

@media (max-width: 900px) {
  .hero-section,
  .about-section,
  .projects-section,
  .core-strengths,
  .contact-section,
  .timeline-section,
  .section,
  .projects,
  .contact,
  .about {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

/* JUSTIFY TEXT CONTENT */
p,
.hero-description,
.about-text p,
.project-content p,
.strength-card p,
.timeline-card p,
.contact-info p {
  text-align: justifycen;
}
/* MEDIUM GAP BETWEEN MAIN HEADING & SUBDESCRIPTION */
.section-title,
.about-title,
.contact-title,
.timeline-heading {
  margin-bottom: 14px;
}

.section-subtitle,
.about-subtitle,
.contact-subtitle {
  margin-top: 0;
  margin-bottom: 36px;
}
/* CAREER TIMELINE – MEDIUM GAPS */

/* Gap below timeline heading */
.timeline-heading {
  margin-bottom: 40px;
}

/* Gap between timeline cards */
.timeline-grid {
  row-gap: 32px;
  column-gap: 32px;
}

@media (max-width: 900px) {
  .hero-section {
    padding-bottom: 30px !important;
  }

  .about-section {
    padding-top: 30px !important;
  }
}
/*  CENTER STAT TEXT ON MOBILE */
@media (max-width: 900px) {
  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .stat-card h3 {
    text-align: center !important;
  }

  .stat-card p {
    text-align: center !important;
  }
}
