:root {
  --bg-main: #0f172a;
  --text-color: #e2e8f0;
  --accent: #06b6d4;
  --accent-gradient: linear-gradient(90deg, #06b6d4, #3b82f6);
  --hover-glow: rgba(6,182,212,0.3);
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-main);
  color: var(--text-color);
}

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 94%);
  padding: 14px 28px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.tagline {
  font-size: 11px;
  color: #38bdf8;
  text-transform: uppercase;
}

/* ===== Navigation ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul li a {
  font-weight: 600;
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--hover-glow);
  color: var(--accent);
  box-shadow: 0 0 10px var(--hover-glow);
  transform: translateY(-2px);
}

/* ===== Contact Button ===== */
.btn-talk {
  background: var(--accent-gradient);
  color: #fff;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(6,182,212,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-talk:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(6,182,212,0.45);
}

/* ===== Dark Mode Toggle ===== */
.dark-toggle {
  cursor: pointer;
  font-size: 20px;
  margin-left: 14px;
  transition: transform 0.3s ease;
}
.dark-toggle:hover {
  transform: rotate(25deg) scale(1.2);
}

/* ===== Hamburger Menu ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--accent);
  transition: 0.3s;
}
.menu-toggle:hover {
  transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
  }
  nav.show {
    max-height: 400px;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 18px;
  }
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
#hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 10%;
  flex-wrap: wrap;
  background: radial-gradient(circle at top left, #0f172a, #1e293b 90%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* ===== Light Beams ===== */
#hero::before,
#hero::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(120deg, rgba(6,182,212,0.2), rgba(59,130,246,0.1), rgba(6,182,212,0.2));
  transform: rotate(25deg);
  animation: lightMove 8s linear infinite;
  pointer-events: none;
}
#hero::after {
  transform: rotate(-25deg);
  animation-duration: 12s;
}

/* Hero text */
.hero-content {
  flex: 1 1 500px;
  animation: fadeInUp 1.2s ease forwards;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.hero-content h1 strong {
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content .subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 20px 0 25px;
  color: #38bdf8;
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 520px;
  color: #cbd5e1;
}

/* Buttons */
.buttons .btn {
  display: inline-block;
  padding: 12px 30px;
  margin-right: 12px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(6,182,212,0.3);
}
.buttons .btn.secondary {
  background: transparent;
  border: 2px solid #38bdf8;
  color: #38bdf8;
}
.buttons .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(6,182,212,0.5);
}

/* Social icons */
.social-icons {
  margin-top: 30px;
}
.social-icons a {
  color: #38bdf8;
  font-size: 1.6rem;
  margin-right: 18px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #3b82f6;
  transform: scale(1.2);
}

/* Hero Image */
.hero-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.2s ease forwards;
  z-index: 2;
}
.img-border {
  position: relative;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 0deg, #06b6d4, #3b82f6, #06b6d4, #3b82f6);
  animation: rotateBorder 6s linear infinite;
  box-shadow: 0 0 30px rgba(6,182,212,0.2);
}
.img-border img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #0f172a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: #38bdf8;
  opacity: 0.8;
  animation: bounce 1.5s infinite;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}
@keyframes lightMove {
  0% { transform: rotate(25deg) translateX(-50%); }
  50% { transform: rotate(25deg) translateX(50%); }
  100% { transform: rotate(25deg) translateX(-50%); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 90px 25px;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content .subtitle {
    font-size: 1.3rem;
  }
  .img-border img {
    width: 220px;
    height: 220px;
  }
}
/* ===== Services Section (Ultra Premium Style with Icon Layout) ===== */
.services-section {
  position: relative;
  padding: 110px 20px;
  text-align: center;
  background: radial-gradient(circle at top left, #0f172a, #1e293b 50%, #020617 100%);
  color: #f1f5f9;
  overflow: hidden;
}

/* Light Beams */
.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(115deg, rgba(59,130,246,0.12), rgba(236,72,153,0.15), transparent);
  filter: blur(120px);
  animation: beamMove 14s infinite linear;
  z-index: 0;
  pointer-events: none;
}
.services-section::after {
  animation-delay: -7s;
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(56,189,248,0.15), transparent);
}

@keyframes beamMove {
  0% { transform: translateX(-10%) rotate(0deg); }
  50% { transform: translateX(10%) rotate(180deg); }
  100% { transform: translateX(-10%) rotate(360deg); }
}

/* Section Titles */
.section-title {
  position: relative;
  font-size: 2.8rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 10px;
  z-index: 1;
}
.section-subtitle {
  position: relative;
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 60px;
  z-index: 1;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Service Card */
.service-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 45px 25px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(14px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #38bdf8, #8b5cf6, #f472b6, #38bdf8);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.service-card:hover::before {
  opacity: 0.4;
  animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 45px rgba(56,189,248,0.25);
}

/* Icon Design */
.service-icon {
  font-size: 3.5rem;
  color: #38bdf8;
  background: linear-gradient(135deg, #38bdf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.15);
  text-shadow: 0 0 25px rgba(56,189,248,0.5);
}

/* Text */
.service-card h3 {
  font-size: 1.6rem;
  color: #e2e8f0;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Button */
.read-more {
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(56,189,248,0.2);
}
.read-more:hover span { transform: translateX(4px); }
.read-more:hover {
  box-shadow: 0 8px 25px rgba(56,189,248,0.4);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 2.2rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 40px; }
  .service-card { padding: 30px 18px; }
}

/* ===== Ultra Premium Skills Section ===== */
.skills-section {
  position: relative;
  padding: 110px 20px;
  text-align: center;
  background: radial-gradient(circle at top left, #020617, #0f172a 50%, #1e293b 100%);
  color: #f8fafc;
  overflow: hidden;
}

/* Animated background light beams */
.skills-section::before,
.skills-section::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(115deg, rgba(56,189,248,0.12), rgba(236,72,153,0.12), transparent);
  filter: blur(130px);
  animation: moveBeams 16s infinite linear;
  z-index: 0;
  pointer-events: none;
}
.skills-section::after {
  background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(147,51,234,0.12), transparent);
  animation-delay: -8s;
}
@keyframes moveBeams {
  0% { transform: translateX(-10%) rotate(0deg); }
  50% { transform: translateX(10%) rotate(180deg); }
  100% { transform: translateX(-10%) rotate(360deg); }
}

/* Section Titles */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 2;
}

/* Skills Card */
.skills-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 45px 30px;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.skills-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #38bdf8, #8b5cf6, #f472b6, #38bdf8);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.skills-card:hover::before {
  opacity: 0.4;
  animation: rotateBorderSkill 6s linear infinite;
}
@keyframes rotateBorderSkill {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.skills-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 45px rgba(56,189,248,0.25);
}
.skills-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #38bdf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.skills-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 20px;
}

/* ===== Circular Progress ===== */
.circular-skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 20px;
}
.circle {
  position: relative;
  width: 110px;
  height: 110px;
}
.circle svg {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}
.circle svg circle {
  fill: none;
  stroke: rgba(255,255,255,0.1);
  stroke-width: 10;
  stroke-linecap: round;
}
.circle svg circle:nth-child(1) {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: progressCircle 2.5s ease forwards;
}
@keyframes progressCircle {
  to { stroke-dashoffset: var(--offset, 0); }
}
.circle .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #f8fafc;
  font-size: 1.1rem;
}
.circle p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* Soft Skills + Languages */
.skills-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.skills-card ul li {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.skills-card ul li::before {
  content: "•";
  color: #38bdf8;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .skills-section { padding: 80px 15px; }
  .section-title { font-size: 2.3rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 35px; }
  .skills-card { padding: 30px 20px; }
}
 /* ===== Certificates & Achievements Section ===== */
.experience-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at top, #10131a, #07080c);
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 225, 255, 0.08), transparent 70%);
  transform: translateX(-50%);
  filter: blur(100px);
  z-index: 0;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

/* ===== Carousel Layout ===== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* ===== Certificate Card ===== */
.certificate-card {
  min-width: 330px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  color: #fff;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.08);
  position: relative;
}

.certificate-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.3);
}

.certificate-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
}

.certificate-card h3 {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #00e0ff;
}

.certificate-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 4px 0;
}

/* ===== Carousel Buttons ===== */
.carousel-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #00e0ff;
  font-size: 2rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0 10px;
}

.carousel-btn:hover {
  background: rgba(0, 255, 255, 0.15);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
  
/* ===== CV / Resume Section ===== */
.cv-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  text-align: center;
  transition: background 0.5s ease, color 0.5s ease;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 50px;
  transition: color 0.4s ease;
}

/* Grid Layout */
.cv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* CV Card */
.cv-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease, background 0.5s ease;
  text-align: left;
}

.cv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

/* Icons */
.cv-icon {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 12px;
}

/* Headings */
.cv-card h3 {
  font-size: 1.4rem;
  color: #111827;
  margin-bottom: 15px;
  font-weight: 600;
  transition: color 0.4s ease;
}

/* Lists */
.cv-card ul {
  list-style: none;
  padding: 0;
}

.cv-card ul li {
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.5;
  transition: color 0.4s ease;
}

/* Links */
.cv-links a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s;
}
.cv-links a:hover {
  color: #111827;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #f97316;
  color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #111827;
}

.download-btn {
  margin-top: 15px;
}
.contact-btn {
  margin-top: 50px;
}

/* ===== Dark Mode ===== */
@media (prefers-color-scheme: dark) {
  .cv-section {
    background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
  }

  .section-title {
    color: #f9fafb;
  }

  .section-subtitle {
    color: #9ca3af;
  }

  .cv-card {
    background: rgba(31, 41, 55, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .cv-card:hover {
    background: rgba(55, 65, 81, 0.9);
  }

  .cv-card h3 {
    color: #f9fafb;
  }

  .cv-card ul li {
    color: #d1d5db;
  }

  .cv-links a:hover {
    color: #f97316;
  }

  .btn:hover {
    background: #f97316;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .cv-card {
    text-align: center;
  }
  .cv-card ul li {
    font-size: 0.9rem;
  }
}

.contact-section {
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at 10% 10%, #071026 0%, #0f172a 30%, #071022 100%);
  color: var(--text);
  overflow: hidden;
  transition: background 0.4s ease, color 0.4s ease;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* animated subtle background beams */
.contact-bg {
  position: absolute;
  inset: -30% -20% auto -20%;
  width: 160%;
  height: 160%;
  background:
    radial-gradient(400px circle at 15% 20%, rgba(6,182,212,0.08), transparent 20%),
    radial-gradient(400px circle at 85% 80%, rgba(59,130,246,0.06), transparent 18%);
  filter: blur(90px);
  transform: translate3d(0,0,0);
  animation: bgFloat 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes bgFloat { 0%{transform:translateX(-5%)}50%{transform:translateX(5%)}100%{transform:translateX(-5%)} }

/* inner container to match site width */
.contact-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* header */
.contact-header { text-align:center; margin-bottom:28px; }
.contact-header .title {
  font-size: 2.6rem;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.contact-header .subtitle {
  color: var(--muted);
  font-size: 1.05rem;
}

/* layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* cards column */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 20px rgba(2,6,23,0.6);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.card:focus { outline: none; transform: translateY(-6px); box-shadow: 0 18px 60px rgba(6,182,212,0.12) }
.icon { font-size: 1.8rem; filter: drop-shadow(0 6px 18px rgba(6,182,212,0.06)); }
.details h3 { margin: 0; font-size: 1rem; color: #e6f6fb; }
.details a, .details p { color: var(--text); text-decoration: none; opacity: 0.9; }
.details a:hover { color: var(--accent); text-decoration: underline; }

/* form */
.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 12px 40px rgba(2,6,23,0.6);
}

/* floating label fields */
.field {
  position: relative;
  display: block;
  margin-bottom: 14px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 14px 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-size: 0.98rem;
  outline: none;
  transition: box-shadow .22s ease, border-color .22s ease, background .22s ease;
  resize: vertical;
}
.field.area textarea { min-height: 140px; padding-top: 18px; }

.field input:focus, .field textarea:focus {
  box-shadow: 0 8px 30px rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.35);
  background: rgba(255,255,255,0.03);
}

/* label text (floating) */
.label-text {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 0.95rem;
  color: var(--muted);
  pointer-events: none;
  transform-origin: left top;
  transition: transform .18s ease, font-size .18s ease, top .18s ease, color .18s ease;
}
.field input:focus + .label-text,
.field input:not(:placeholder-shown) + .label-text,
.field textarea:focus + .label-text,
.field textarea:not(:placeholder-shown) + .label-text {
  transform: translateY(-10px) scale(.88);
  top: 6px;
  color: var(--accent);
}

/* two-column row on desktop */
.form-row { display:flex; gap:14px; }
.form-row .field { flex:1; margin-bottom:16px; }

/* submit button */
.form-actions { display:flex; justify-content:flex-end; margin-top:6px; }
.btn-send {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight:700;
  color: #062226;
  background: var(--accent-gradient);
  box-shadow: 0 8px 30px rgba(6,182,212,0.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn-send:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(6,182,212,0.26); }
.btn-send:active { transform: translateY(-1px); }

/* feedback */
.form-feedback {
  margin-top:12px;
  font-size:0.95rem;
  color: #d1f7ff;
  background: rgba(6,182,212,0.06);
  padding:8px 12px;
  border-radius:8px;
  border:1px solid rgba(6,182,212,0.12);
}

/* small screens */
@media (max-width: 900px) {
  .contact-content { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .form-actions { justify-content: center; }
  .contact-cards { flex-direction: row; justify-content: space-between; gap:10px; margin-bottom:12px; }
}

/* prefers dark fallback (ensures consistent look) */
@media (prefers-color-scheme: dark) {
  :root { --card-bg: rgba(255,255,255,0.03); }
  .contact-section { background: radial-gradient(circle at 10% 10%, #071026 0%, #071022 100%); }
}

/* small aesthetic polish for accessibility focus */
a:focus, button:focus, input:focus, textarea:focus { outline: 3px solid rgba(6,182,212,0.12); outline-offset: 2px; }

.site-footer {
  background-color: #111827;
  color: #f97316;
  padding: 40px 0;
  font-family: 'Arial', sans-serif;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.footer-logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f97316;
  text-decoration: none;
}

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

.footer-nav a {
  color: #f97316;
  text-decoration: none;
  font-size: 1rem;
}

/* ===== Footer Social (Luxury Glow Edition) ===== */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.footer-social .social-icon {
  width: 46px;
  height: 46px;
  background: radial-gradient(circle at top left, #38bdf8, #818cf8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(56,189,248,0.35);
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Subtle lighting effect inside icons */
.footer-social .social-icon::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  top: -70%;
  left: -70%;
  transform: rotate(25deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.footer-social .social-icon:hover::before {
  top: -10%;
  left: -10%;
  opacity: 0.4;
}

/* Hover animations */
.footer-social .social-icon:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 0 25px rgba(56,189,248,0.6), 0 0 60px rgba(236,72,153,0.4);
  background: linear-gradient(135deg, #0ea5e9, #6366f1, #ec4899);
}

.footer-social .social-icon i {
  z-index: 2;
  position: relative;
}

/* Responsive sizing */
@media (max-width: 600px) {
  .footer-social {
    gap: 12px;
  }
  .footer-social .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}


.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #f97316;
}
