* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #0a0a16;
  color: white;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.back-vid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 22, 0.8);
  backdrop-filter: blur(10px);
}

.left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.left img {
  width: 2.5rem;
  height: 2.5rem;
}

.left h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

header ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

header ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  font-size: 1rem;
}

header ul li a.active {
  color: #72a1de;
}

header ul li a:hover {
  color: #72a1de;
}

header ul li a::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0;
  height: 2px;
  background: #72a1de;
  transition: width 0.3s;
}

header ul li a:hover::after,
header ul li a.active::after {
  width: 100%;
}

.box-icons {
  display: flex;
  gap: 1rem;
}

.box-icons a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.box-icons a:hover {
  color: #72a1de;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: rgba(10, 10, 22, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar.active {
  right: 0;
}

.close-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 1rem;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.sidebar ul li a.active {
  color: #72a1de;
}

.sidebar ul li a:hover {
  color: #72a1de;
}

.social-sidebar {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-sidebar a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-sidebar a:hover {
  color: #72a1de;
}

/* Blackhole Box */
.blackhole-box {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.blackhole-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-info {
  max-width: 40rem;
  z-index: 2;
}

.hero-info-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #72a1de;
}

.hero-info h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gradient {
  background: linear-gradient(45deg, #72a1de, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-info p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #cccccc;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn.primary {
  background: #72a1de;
  color: white;
}

.btn.primary:hover {
  background: #5a8fd4;
  transform: translateY(-2px);
}

.btn.secondary {
  border: 2px solid #72a1de;
  color: #72a1de;
}

.btn.secondary:hover {
  background: #72a1de;
  color: white;
  transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
  padding: 8rem 5% 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #cccccc;
  max-width: 40rem;
  margin: 0 auto;
}

/* Quick Links */
.quick-links {
  padding: 5rem 5%;
}

.quick-links .section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.link-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-card:hover {
  transform: translateY(-5px);
}

.link-card i {
  font-size: 2.5rem;
  color: #72a1de;
  margin-bottom: 1rem;
}

.link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.link-card p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.link-card a {
  color: #72a1de;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.link-card a:hover {
  color: #8a2be2;
}

/* Skills Video Box */
.skills-video-box {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.skills-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
}

.scroll-down::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  width: 0.2rem;
  height: 0.5rem;
  background: white;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

/* Info Section */
.info-section {
  padding: 5rem 5%;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 3rem;
  text-align: center;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h1 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #72a1de;
}

.card p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card img,
.card video {
  width: 100%;
  border-radius: 5px;
}

/* Story Section */
.story-section {
  max-width: 50rem;
  margin: 5rem auto 0;
  text-align: center;
}

.story-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 1.8rem);
  margin-bottom: 1.5rem;
  color: #72a1de;
}

.story-section p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* My Project Section */
.my-project {
  padding: 5rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: #333;
}

.filter-btn:hover {
  background: #e0e0e0;
}

.filter-btn.active {
  background: #0078d4;
  color: white;
  border-color: #0078d4;
}

.project-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  width: 90%;
  max-width: 800px;
  min-height: 200px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.project-card:nth-child(even) {
  flex-direction: row-reverse;
  align-self: flex-end;
  margin-right: 2%;
}

.project-card:nth-child(odd) {
  align-self: flex-start;
  margin-left: 2%;
}

.project-card::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
}

.project-card:first-child::before {
  display: none;
}

.project-vidbox {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 15rem;
}

.project-vidbox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-sign {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-vidbox:hover .hover-sign {
  opacity: 1;
}

.hover-sign::before {
  content: "▶";
  color: white;
  font-size: 1.2rem;
}

.project-info {
  flex: 1;
  text-align: center;
  max-width: 35rem;
}

.project-info h1 {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
}

.project-info p {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.features span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.features i {
  color: #72a1de;
  margin-right: 0.3rem;
}

.project-info button {
  padding: 0.6rem 1.2rem;
  background: #72a1de;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.project-info button:hover {
  background: #5a8fd4;
}

/* Coming Soon Section */
.coming-soon {
  padding: 5rem 5%;
  text-align: center;
}

.coming-soon h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.coming-soon p {
  color: #cccccc;
  max-width: 40rem;
  margin: 0 auto 3rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.coming-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.coming-item:hover {
  transform: translateY(-5px);
}

.coming-item i {
  font-size: 2rem;
  color: #72a1de;
  margin-bottom: 1rem;
}

.coming-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.coming-item p {
  color: #cccccc;
  margin: 0;
}

/* Skills Section */
.skills-section {
  padding: 5rem 5%;
}

.skills-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.skills-image {
  width: 100%;
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 25rem;
  margin-bottom: 1.5rem;
}

.Designer,
.coder,
.consulting,
.support {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.Designer h1,
.coder h1,
.consulting h1,
.support h1 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.Designer p,
.coder p,
.consulting p,
.support p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.Designer ul,
.coder ul,
.consulting ul,
.support ul {
  color: #cccccc;
  padding-left: 1rem;
}

.Designer li,
.coder li,
.consulting li,
.support li {
  margin-bottom: 0.5rem;
}

/* Process Section */
.process-section {
  margin-top: 5rem;
  text-align: center;
}

.process-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 3rem;
  color: #72a1de;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: #72a1de;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.75rem;
  color: #72a1de;
}

.step p {
  color: #cccccc;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 5rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.social-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.social-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: center;
}

.social-box a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.social-box a:hover {
  color: #fff;
}

.social-box .social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-box .social-icons a {
  font-size: 1.5rem;
  color: #72a1de;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-box .social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}

.contact-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #72a1de;
}

.contact-box p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #72a1de;
}

.contact-box button {
  width: 100%;
  padding: 0.9rem;
  background: #72a1de;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-box button:hover {
  background: #5a8fd4;
}

/* FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: 5rem auto 0;
  text-align: center;
}

.faq-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 3rem;
  color: #72a1de;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #72a1de;
}

.faq-item p {
  color: #cccccc;
  line-height: 1.6;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  background: rgba(10, 10, 22, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h1 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #cccccc;
}

.footer .box-icons {
  display: flex;
  gap: 1rem;
}

/* Animations */
.autoBlur {
  backdrop-filter: blur(10px);
}

.fadein-left {
  animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* About Preview Section */
.about-preview {
  padding: 6rem 5%;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-preview .section-text {
  max-width: 50rem;
  margin: 1rem auto 3rem;
  line-height: 1.8;
  color: #d6d6d6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.value-card i {
  font-size: 2rem;
  color: #72a1de;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

/* Projects Section */
.projects {
  padding: 6rem 5%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.project-card h3 {
  color: #fff;
  margin: 1rem 0 0.5rem;
}

.project-card p {
  color: #d3d3d3;
  padding: 0 1rem 1.5rem;
  line-height: 1.6;
}

.project-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

/* Expertise Section */
.expertise {
  padding: 6rem 5%;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.expertise .section-text {
  max-width: 50rem;
  margin: 1rem auto 3rem;
  color: #d6d6d6;
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.expertise-card i {
  font-size: 2rem;
  color: #72a1de;
  margin-bottom: 0.75rem;
}

.expertise-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.expertise-card p {
  color: #ccc;
  line-height: 1.7;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about img {
  width: 10rem;
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-about img:hover {
  transform: scale(1.05);
}

.footer-about p {
  line-height: 1.7;
  color: #ccc;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 0.75rem;
  color: #72a1de;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links ul li a:hover {
  color: #72a1de;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  color: #72a1de;
  margin-right: 0.5rem;
}

.social-icons a {
  color: #ccc;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #72a1de;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: #aaa;
  font-size: 0.85rem;
}

/* Hero Section Video Refinement */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-video {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  max-width: 40rem;
}

.hero-video video {
  width: 100%;
  height: auto;
  border: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.hero-video video:hover {
  transform: scale(1.15);
}

/* Coming Soon Button Style */
.coming-btn {
  background: transparent;
  border: 1px solid #72a1de;
  color: #72a1de;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.coming-btn i {
  font-size: 1.2rem;
}

.coming-btn:hover {
  background: rgba(114, 161, 222, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blackhole-box {
    width: 12rem;
    height: 12rem;
    right: 3%;
  }

  .hero-info h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .project-card {
    flex-direction: column !important;
    align-self: center;
    margin: 0;
  }

  .project-card:nth-child(even),
  .project-card:nth-child(odd) {
    margin: 0;
  }

  .skills-box {
    grid-template-columns: 1fr;
  }

  .hero-video {
    max-width: 30rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 3%;
  }

  header ul {
    display: none;
  }

  .box-icons {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero {
    padding: 0 3%;
    text-align: center;
  }

  .hero-info h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  .blackhole-box {
    display: none;
  }

  .skills-video-box {
    display: none;
  }

  .page-hero {
    padding: 7rem 3% 2rem;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  .info-section,
  .my-project,
  .skills-section,
  .contact-section,
  .quick-links,
  .about-preview,
  .projects,
  .expertise,
  footer {
    padding: 4rem 3%;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-video {
    justify-content: center;
    max-width: 20rem;
    margin-top: 1rem;
  }

  .hero-video video {
    transform: scale(1);
  }

  .social-box {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
  }

  .social-box a {
    flex: 1 1 100%;
    justify-content: center;
  }

  .social-box h3 {
    font-size: 1.3rem;
  }

  .project-card img {
    height: 8rem;
  }
}

@media (max-width: 480px) {
  .hero-info h1 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .page-hero h1 {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 4vw, 1.8rem);
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 12rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 12rem;
    text-align: center;
  }

  .footer-about img {
    width: 8rem;
  }

  .hero-video {
    max-width: 100%;
  }
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
  .hero {
    padding-top: 150px; /* roughly equal to your header height */
  }
}
