/* =========================
   HERO SECTION
========================= */

*{
  font-family: "Satoshi", sans-serif;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;     /* controls how left it can go */
  padding: 0 64px;       /* breathing space */
  margin: 0 auto;        /* centers the block */
}


.hero-tag {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 16px;
}


.hero-title {
  font-family: "Satoshi", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 22px;
}

.hero-title span {
  background: linear-gradient(
    90deg,
    #ffffff,
    #b5b5b5
  );
  color: var(--accent-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: "Satoshi", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #bdbdbd;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Buttons */
.btn {
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #facc15;
  color: #000;
  border: none;
  box-shadow: 0 10px 30px var(--accent-yellow-soft);
}

.btn.primary:hover {
  background: #facc15;
  transform: translateY(-2px);
}


.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  opacity: 0.85;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  opacity: 1;
}
.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-description {
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}
/* =========================
   ABOUT SECTION
   ========================= */

.about-section {
  padding: 120px 0;
}

.about-inner {
  max-width: 720px;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-yellow);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.highlight {
  color: #facc15;
  font-weight: 600;
}
/* =========================
   ABOUT SECTION FIX
   ========================= */

.about-section {
  position: relative;
}

.about-inner {
  max-width: 680px;   /* 🔥 THIS fixes left-stuck issue */
}

.section-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-yellow);
  margin-bottom: 14px;
  display: inline-block;
}

.section-title {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
}

.about-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
/* =========================
   ABOUT SECTION
   ========================= */

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* Glass card */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
}

.about-title {
  font-size: clamp(40px, 4vw, 42px);
  line-height: 1.2;
  margin: 16px 0 24px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.highlight {
  color: var(--accent-yellow);
  font-weight: 600;
}
/* =========================
   ABOUT HEADER (OUTSIDE CARD)
   ========================= */

.about-header {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
  margin-top: 0;       
  margin-bottom: 20px;
}

.about-heading {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.about-subtitle {
  color: var(--text-muted);
  max-width: 600px;
}

/* =========================
   ABOUT GRID
   ========================= */

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}
/* =========================
   ABOUT
   ========================= */

.about-section {
  padding-top: 120px;
}

/* TOP HEADING */
.about-top {
  text-align: center;
  margin-bottom: 64px;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  margin-top: 0;
}


.about-tagline {
  font-size: 1.05rem;
  color:#facc15;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 25px;
  margin-top: 8px;
  margin-bottom: 20px; /* 🔑 reduce this */
  font-size: 0.95rem;
  opacity: 0.8;
}

/* GRID */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  padding: 0 24px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* TEXT */
.about-text h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.section {
  padding: 64px 0; /* was too big */
}
.about-header h2 {
  margin-bottom: 6px;   /* was probably 16+ */
}

.about-header p {
  margin-top: 0;
  margin-bottom: 12px; /* key fix */
  opacity: 0.8;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px; /* ↓ THIS pulls cards closer */
}
/* =========================
   EDUCATION SECTION
   ========================= */

.education-section {
  padding-top: 80px;
}

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

.section-subtitle {
  color: #facc15;
  margin-top: 8px;
  font-size: 0.95rem;
  margin:18px;
  padding-left: 300px;
  margin:0 auto 80px auto; 
  padding:10px;
}

.education-list {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* CARD */
.education-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.education-card:hover {
  transform: translateY(-4px);
}

/* LEFT */
.edu-left {
  display: flex;
  gap: 18px;
}

.edu-icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.edu-icon.purple {
  background: rgba(168,85,247,0.15);
  color: #c084fc;
}

.edu-content h3 {
  margin: 0;
  font-size: 1.15rem;
}

.edu-location {
  font-size: 0.85rem;
  color: #9ca3af;
}

.edu-degree {
  margin: 10px 0;
  font-size: 0.95rem;
}

/* TAGS */
.edu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color:#ffff;
}

.edu-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

/* RIGHT */
.edu-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.edu-date {
  font-size: 0.85rem;
  color: #9ca3af;
}

.edu-score {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(234,179,8,0.15);
  color: #facc15;
  width: fit-content;
  align-self: flex-end;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .education-card {
    flex-direction: column;
  }

  .edu-right {
    align-items: flex-start;
    text-align: left;
  }

  .edu-score {
    align-self: flex-start;
  }
}


/* =====================================================
   TIMELINE STRUCTURE
===================================================== */

.timeline{
  position:relative;
  padding-left:90px;
  text-align:left;
}

/* Vertical Line */
.timeline-line{
  position:absolute;
  left:45px;                 /* MASTER ALIGNMENT VALUE */
  top:0;
  bottom:0;
  width:2px;
  background:rgba(255,255,255,.08);
}

/* Progress line (optional future animation) */
.timeline-progress{
  position:absolute;
  left:0;
  top:0;
  width:2px;
  height:0;
  background:#3b82f6;
}

/* Timeline Item */
.timeline-item{
  position:relative;
  padding-left:60px;
  margin-bottom:70px;
}

/* Dot EXACT center on line */



/* =====================================================
   CARD DESIGN
===================================================== */

.timeline-card{
  padding:32px 34px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
  transition:.3s ease;
}

/* Natural Hover */
.timeline-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 8px 18px rgba(0,0,0,.25);
  border-color:rgba(255,255,255,.18);
}

/* =====================================================
   CARD HEADER
===================================================== */

.card-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:16px;
}

.card-title h3{
  margin:0;
  font-size:1.2rem;
  font-weight:600;
}

.company{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:6px;
  font-size:.9rem;
  color:#60a5fa;
}

.card-date{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.85rem;
  color:#facc15;
}

.card-date svg,
.company svg{
  width:16px;
  height:16px;
}

/* =====================================================
   TECH STACK CAPSULES
===================================================== */

.tech-stack{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 22px convince;
}

.tech-stack span{
  padding:7px 16px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:500;
  border:1px solid transparent;
  letter-spacing:.3px;
  transition:.3s;
}

/* Multi-color Capsules */
.tech-stack span:nth-child(1){
  background:rgba(59,130,246,.15);
  color:#60a5fa;
  border-color:rgba(59,130,246,.35);
}

.tech-stack span:nth-child(2){
  background:rgba(168,85,247,.15);
  color:#c084fc;
  border-color:rgba(168,85,247,.35);
}

.tech-stack span:nth-child(3){
  background:rgba(16,185,129,.15);
  color:#34d399;
  border-color:rgba(16,185,129,.35);
}

.tech-stack span:nth-child(4){
  background:rgba(234,179,8,.15);
  color:#facc15;
  border-color:rgba(234,179,8,.35);
}

.tech-stack span:hover{
  transform:translateY(-2px);
}

/* =====================================================
   BULLET LIST
===================================================== */

.exp-list{
  list-style:none;
  padding-left:0;
}

.exp-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:12px;
  color:#93abc7;
  line-height:1.7;
}

.exp-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#3b82f6;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:768px){

  .timeline{
    padding-left:60px;
  }

  .timeline-line{
    left:25px;
  }

  .timeline-dot{
    left:25px;
  }

  .timeline-item{
    padding-left:40px;
  }

  .card-header{
    flex-direction:column;
    gap:10px;
  }
}



/* updation */


/* =========================================
   EXPERIENCE SECTION FIXED ALIGNMENT
========================================= */

.experience-section{
  padding:140px 0 120px;
  max-width:1200px;
  margin:0 auto;
  text-align:center;
  padding: 30px;
}

/* Title */
.experience-section .section-title{
  font-size:clamp(42px,5vw,56px);
  font-weight:700;
  
  padding: 10px;
  margin:30px  40px 60px 90px;
}

/* Subtitle CENTER FIX */
.experience-section .section-subtitle{
  max-width:600px;
  margin:0 auto 80px auto;   /* ✅ perfectly centered */
  text-align:center;
  color:#9ca3af;
  font-size:.95rem;
  line-height:1.6;
  padding:100px 60px 100px  50px;
}


/* =========================================
   TIMELINE STRUCTURE
========================================= */

.timeline{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding-left:100px;
  text-align:left;
}

/* VERTICAL LINE */
.timeline-line{
  position:absolute;
  left:50px;            /* MASTER VALUE */
  top:0;
  bottom:0;
  width:2px;
  background:rgba(255,255,255,.08);
}

/* TIMELINE ITEM */
.timeline-item{
  position:relative;
  padding-left:60px;
  margin-bottom:80px;
}


/* Hover effect */

.skills-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 10px;
}

.skills-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.skill-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  background: rgba(255,255,255,0.12);
}

.tab.active {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: auto;
}

.skill-card {
  padding: 24px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(37,99,235,0.15);
}
.skill-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title {
  text-shadow: 0 0 30px rgba(59,130,246,0.15);
}
.skill-icon {
  font-size: 48px;
  margin-bottom: 18px;
}
.skills-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: #facc15;
  line-height: 1.6;
}
.skill-icon {
  font-size: 40px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(59,130,246,0.12);
  margin-bottom: 20px;
  
}
.skill-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.skill-name {
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}


.project-card {
  position: relative;
  padding: 36px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-card:hover {
  transform: translateY(-6px);
}


.github-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: rgba(255,255,255,0.7);
}

.tech-stack span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59,130,246,0.15);
  margin: 6px 6px 12px 0;
  font-size: 13px;
}
.projects-section {
  padding: 120px 0;
}

.projects-section .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.projects-section .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px auto;
  color: #facc15;
  padding:10px;;
}
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}
.project-card ul {
  margin: 10px 0 20px 0;
  padding-left: 18px;
  line-height: 1.6;
}

.project-card li {
  margin-bottom: 8px;
}
.github-icon {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  transition: 0.3s ease;
}

.github-icon:hover {
  color: white;
}

/* =========================
   VIEW ALL PROJECTS BUTTON
========================= */

/* =========================
   PROJECTS CTA FIXED
========================= */

.projects-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3px;   /* Perfect spacing */
}

.view-projects-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  border-radius: 14px;

  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;

  color: #facc15;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);

  transition: all 0.3s ease;
}

.view-projects-btn:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* =========================
   ACHIEVEMENTS SECTION
========================= */

/* =========================
   ACHIEVEMENTS SECTION
========================= */

/* =========================
   ACHIEVEMENTS SECTION
========================= */

.achievements-section {
  padding: 120px 8%;
}

.achievements-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #facc15;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ================= GRID ================= */

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.center-card {
  grid-column: span 2;
  max-width: 550px;
  margin: 0 auto;
}

/* ================= CARD ================= */

.achievement-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.15);
}

/* ================= IMAGES ================= */

.single-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.multi-img {
  padding: 16px;
}

.main-img {
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 12px;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-img {
  display: flex;
  gap: 10px;
}

.sub-img img {
  width: 50%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}

/* ================= CONTENT ================= */

.achievement-content {
  padding: 26px;
}

.achievement-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.achievement-org {
  font-size: 14px;
  color: #60a5fa;
  margin-bottom: 18px;
}

/* ================= BULLETS ================= */

.achievement-content ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.achievement-content li {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

.achievement-content li::marker {
  color: #3b82f6;
}

/* ================= RESPONSIVE ================= */

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

  .center-card {
    grid-column: span 1;
  }
}

/* ================= CONTACT SECTION ================= */

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 90px 8%;
  position: relative;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-title {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-subtitle {
  color: #facc15;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* =========================
   LAYOUT
========================= */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 🔥 Same Row */
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* =========================
   LEFT SIDE
========================= */

.contact-heading {
  font-size: 22px;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 22px;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* ICON BOX */
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-icon.blue {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}

.contact-icon.purple {
  background: rgba(168,85,247,0.15);
  color: #c084fc;
}

.contact-icon.green {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}

.contact-label {
  font-size: 0.85rem;
  color: #9ca3af;
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-icon i {
  font-size: 18px;
  color: #cbd5e1;
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(59,130,246,0.2);
}

/* =========================
   RIGHT SIDE
========================= */

.contact-right {
  padding: 40px;
  border-radius: 22px;
}

.contact-right h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-desc {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* HIGHLIGHT BOXES */
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.highlight-box i {
  font-size: 20px;
}

.blue-box {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
}

.purple-box {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.25);
}

.highlight-box:hover {
  transform: translateY(-3px);
}

/* BUTTONS */

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: #2563eb;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #e5e7eb;
  text-decoration: none;
  margin-top: 16px;
  transition: 0.3s ease;
}

.btn-outline:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
}

/* =========================
   GLASS EFFECT
========================= */

.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ================= FOOTER SECTION ================= */

.footer-section {
  background: rgba(255,255,255,0.05);
  padding: 80px 10% 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-desc {
  color: #9aa4b2;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 25px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-icon:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

/* Quick Links */
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #facc15;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2563eb;
}

/* Contact */
.footer-contact p {
  color: #9aa4b2;
  margin-bottom: 10px;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 14px;
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
 

#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: rgba(20, 20, 25, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  z-index: 1000;

  /* Smooth animation setup */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

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

#scrollTopBtn svg {
  width: 20px;
  height: 20px;
  stroke: #3b82f6;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}


html {
  scroll-behavior: smooth;
}
button, a, .card, .nav-item {
  transition: all 0.3s ease;
}

