/* Navbar background */
.custom-navbar {
  background: linear-gradient(90deg, #050816, #020617);
  padding: 18px 0;
}

/* Logo dot */
.dot {
  color: #00E5FF;
}

/* Nav links */
.nav-link {
  color: #cbd5e1 !important;
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: #ffffff !important;
}

/* CTA Button */
.talk-btn {
  border: 1px solid #00E5FF;
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
   display: inline-flex;
  align-items: center;
  gap: 8px;
}

.talk-btn:hover {
  background: #00E5FF
;
  color: #fff;
}

/* Mobile fixes */
.navbar-toggler {
  border: 1px solid #00E5FF;
}

/* Bootstrap 5 hamburger icon color */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300E5FF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.hero-img img {
  width: 260px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.25);
}

/* Text */
.subtitle {
  font-size: 22px;
  margin-bottom: 10px;
}

.subtitle span {
  color: #00E5FF;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.wave {
  display: inline-block;
  animation: wave 1.6s infinite;
}

@keyframes wave {
  0% { transform: rotate(0); }
  50% { transform: rotate(20deg); }
  100% { transform: rotate(0); }
}

.hero-content p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img {
    width: 220px;
  }
}


/* ===== ROLE TEXT ===== */
.role-text {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Blue animated text */
#changing-role {
  color: #00E5FF;
  display: inline-block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Scroll animation effect */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}


.skills-section {
  padding: 100px 20px;
  background-color: #050814;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
}

.section-title span {
  color: #00E5FF;
}

.section-subtitle {
  margin-top: 10px;
  color: #9aa0b4;
  font-size: 18px;
}

.skills-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.skill-card {
  background: linear-gradient(180deg, #0e152f, #070b1f);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: left;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05),
              0 20px 50px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
  background: #111;
}

/* Icon Colors */
.blue { border: 1px solid #1ea7ff; color: #1ea7ff; }
.pink { border: 1px solid #ff4d8d; color: #ff4d8d; }
.purple { border: 1px solid #a970ff; color: #a970ff; }
.orange { border: 1px solid #ff9f1a; color: #ff9f1a; }

.skill-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Tag Colors */
.tag.blue { background: rgba(30,167,255,0.15); color: #1ea7ff; }
.tag.pink { background: rgba(255,77,141,0.15); color: #ff4d8d; }
.tag.purple { background: rgba(169,112,255,0.15); color: #a970ff; }
.tag.orange { background: rgba(255,159,26,0.15); color: #ff9f1a; }

.skill-card p {
  color: #b7bdd6;
  line-height: 1.6;
  font-size: 15px;
}


.services-section {
  background: radial-gradient(circle at top, #070b1f, #02030a);
  padding: 100px 0;
  color: #fff;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
}

.section-title span {
  color: #00E5FF;
}

.section-subtitle {
  color: #9aa0b4;
  margin-top: 10px;
}

.service-card {
  background: #0e152f;
  border-radius: 22px;
  padding: 35px;
  height: 100%;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.15);
  transition: all 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 6px;
  background: #00E5FF;
  border-radius: 0 22px 0 22px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.25);
}

.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 44, 109, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: #9aa0b4;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  display: block;
  margin-top: 25px;
  font-size: 14px;
  color: #00E5FF;
  font-weight: 600;
}


.journey-section {
  background: radial-gradient(circle at top, #0b1220, #050814);
  padding: 100px 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.journey-heading {
  text-align: center;
  margin-bottom: 60px;
}

.journey-heading h2 {
  font-size: 42px;
  font-weight: 700;
}

.journey-heading h2 span {
  color: #00E5FF;
}

.journey-heading p {
  color: #9aa4b2;
  margin-top: 10px;
}

/* Grid */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Card */
.journey-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 35px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.15);
  color: #00E5FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.journey-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.journey-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.highlight {
  color: #00E5FF;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.journey-card p {
  color: #b6c0ce;
  line-height: 1.6;
}

/* Connector */
.connector {
  width: 60px;
  height: 2px;
  border-top: 2px dashed #00E5FF;
}

/* Buttons */
.journey-buttons {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn.primary {
  background: #00E5FF;
  color: #000;
}

.btn.primary:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .connector {
    display: none;
  }
}


.projects-section {
  background: radial-gradient(circle at top, #050b1e, #000);
  padding: 80px 0;
}

.projects-title {
  color: #fff;
 
  margin-bottom: 30px;
}

/* Card */
.project-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.project-card h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-card p {
  color: #b9c0d4;
  font-size: 14px;
  line-height: 1.5;
}

/* Hover */
.project-card:hover {
  transform: translateY(-6px);
  border-color: #00E5FF;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.15);
}


.faq-section {
  background: radial-gradient(circle at top, #050b1e, #000);
  padding: 90px 0;
  color: #fff;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
}

.faq-title span {
  color: #00E5FF;
}

.faq-sub {
  text-align: center;
  color: #9aa4bf;
  margin-top: 10px;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
}

.num {
  background: rgba(255,255,255,0.08);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5f5;
  font-weight: 600;
}

.icon {
  margin-left: auto;
  opacity: 0.7;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: #b8c1dd;
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 0.3s ease;
  margin-top: 12px;
}

/* ACTIVE */
.faq-item.active .faq-a {
  max-height: 150px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}




.process-section {
  background: radial-gradient(circle at top, #0a1220, #050810);
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}

.process-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-title span {
  color: #00E5FF;
}

.process-sub {
  color: #9aa4b2;
  max-width: 600px;
  margin: 0 auto 70px;
}

/* Wrapper */
.process-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* Steps */
.step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: #00E5FF;
}

/* Number */
.step-num {
  width: 38px;
  height: 38px;
  background: #00E5FF;
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Text */
.step h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #b8c1cc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .process-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process-title {
    font-size: 32px;
  }
}



.contact-section {
  background: radial-gradient(circle at top, #0b132b, #050814);
  padding: 100px 0;
  font-family: "Inter", sans-serif;
  color: #fff;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* COMMON CARD */
.contact-card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,229,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* LEFT CARD */
.info-card h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00e5ff, #2979ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.info-item p {
  color: #b7c0d1;
  font-size: 14px;
}

.form-container {
  width: 100%;
}

.form-container iframe {
  width: 100%;
  height: 450px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fbaff;
  font-size: 18px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.social-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #00e5ff, #2979ff);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}


.site-footer {
  background: radial-gradient(circle at top, #0a1020, #050814);
  padding: 80px 0 40px;
  color: #cbd5e1;
  font-family: "Inter", sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-left h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-left h3 span {
  color: #00E5FF;
}

.footer-left p {
  color: #9aa4b2;
  max-width: 420px;
  line-height: 1.6;
}

/* Divider */
.footer-divider {
  width: 90%;
  max-width: 1200px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px auto 30px;
}

/* Bottom */
.footer-bottom {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p span {
  color: #ffffff;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: #9aa4b2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00e5ff;
}


@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-left p {
    max-width: 100%;
  }
}

.btn {
  border: 1px solid #00E5FF;
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #00E5FF;
  color: #000;
}


.design-showcase {
  background: radial-gradient(circle at top, #050814, #02040a);
  padding: 90px 0;
  color: #fff;
}

/* Heading */
.section-head h2 {
  font-size: 42px;
  font-weight: 700;
}

.section-head h2 span {
  color: #00E5FF;
}

.section-head p {
  color: #9aa4b2;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Slider */
.design-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 5px;
  scroll-snap-type: x mandatory;
}

.design-slider::-webkit-scrollbar {
  height: 6px;
}

.design-slider::-webkit-scrollbar-thumb {
  background: #00E5FF;
  border-radius: 10px;
}

/* Card */
.design-card {
  min-width: 280px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 16px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

/* Image placeholder */
.design-img {
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b1225, #050814);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
  font-weight: 500;
  margin-bottom: 14px;
}

/* Text */
.design-card h5 {
  font-size: 18px;
  margin-bottom: 2px;
}

.design-card small {
  color: #00E5FF;
  font-size: 12px;
}

.design-card p {
  font-size: 14px;
  color: #cfd6e4;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-head h2 {
    font-size: 32px;
  }
}


.design-img {
  height: 220px; /* increased from 160px */
  border-radius: 16px;
  overflow: hidden;
  background: #050814;
}
.design-card {
  min-width: 320px;
  max-width: 320px;
}

.design-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.behance-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #00E5FF;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(135deg, #00E5FF20, transparent);
  transition: all 0.35s ease;
}

.behance-btn:hover {
  background: #00E5FF;
  color: #050814;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.4);
}

@media (max-width: 576px) {
  .behance-btn {
    font-size: 16px;
    padding: 14px 28px;
  }
}
