/* GENERAL */
body {
  background: #000000;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* Hide default cursor */
body {
  cursor: none;
}

/* INNER DOT */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

/* OUTER CIRCLE */
.cursor-outline {
  width: 35px;
  height: 35px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  backdrop-filter: blur(2px);
}

/* HOVER EFFECT */
.cursor-grow {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(255, 255, 255, 0.1);
}

button, a, .work-card, .blog-card, .logo-card {
  transition: transform 0.2s ease;
}

header .logo {
  color: #ffffff;
  font-weight: 700;
}

/* BUTTONS */
.talk-btn {
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  padding: 6px 17px;
  margin-left: 15px;
  font-size: 14px;
  transition: 0.3s ease;
}

.talk-btn:hover {
  background-color: #ffffff;
  color: black;
}

@media (max-width: 768px) {
  header .logo {
    margin-top: 15px;
    font-size: 18px;
  }
  .talk-btn {
    margin-left: 0;
    margin-top: 10px;
    font-size: 10px;
  }
}
/* HERO SECTION */
.hero-title {
  font-size: 100px;
  font-weight: 600;
  letter-spacing: 5px;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  margin-top: 60px;
}

/* TITLES */
.small-title {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  color: #ffffff;
}

/* PROFILE IMAGE */
.profile-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: black;
  color: black;
}

/* SOCIAL ICONS */
.social-icons a {
  font-size: 15px;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffffff;
  color: #000;
}

/* EXTRA SMOOTH ANIMATION */
.social-icons a,
.profile-img,
.stat-number,
.hero-title {
  transition: 0.3s ease;
}

.social-icons a:hover,
.stat-number:hover,
.hero-title:hover {
  transform: scale(1.05);
}

.profile-img:hover {
  transform: scale(0.88);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.55);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .body {
    font-size: 12px;
  }
  .hero-title {
    font-size: 70px;
    text-align: center;
  }
  .profile-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
  }
}
/* SECTION TITLE STYLE */
.services-section {
  background: #000;
  color: white;
}

.section-tag {
  color: #777;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}

.section-title {
  font-size: 46px;
  font-weight: 700;
  color: white;
}

.section-title span {
  color: #430167;
}

/* SERVICE BOX CARD */
.service-box {
  background: #111;
  border-radius: 12px;
  padding: 28px 35px;
  border-bottom: 3px solid #430167;
  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  background: linear-gradient(to right, #41295a, #2F0743);
}

/* LEFT SIDE CONTENT */
.service-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-number {
  font-size: 22px;
  font-weight: 600;
  color: #ddd;
  margin: 0;
}

.service-name {
  font-size: 23px;
  font-weight: 600;
  color: white;
  margin: 0;
}

/* ICON STYLE */
.service-icon {
  font-size: 22px;
  color: #ddd;
}

/* DESCRIPTION TEXT */
.service-text {
  width: 40%;
  font-size: 15px;
  color: #bbb;
  line-height: 22px;
  margin: 0;
}

@media (max-width: 768px) {
  .service-text {
    width: 100%;
    margin-top: 15px;
    font-size: 12px;
  }
  .service-name, .service-number, .service-icon {
    font-size: 18px;
  }
  .service-box {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
/* PORTFOLIO SECTION */
.portfolio-section {
  background: #111;
  color: #fff;
  padding-left: 40px;
  padding-right: 40px;
}

.portfolio-tag {
  color: #777;
  font-size: 14px;
  letter-spacing: 1px;
}

.portfolio-title {
  font-size: 46px;
  font-weight: 700;
}

.portfolio-title span {
  color: #430167;
}

.portfolio-desc {
  max-width: 100%;
  font-size: 15px;
  color: #bbb;
  margin-bottom: 15px;
}

.work-card {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

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

.work-img {
  width: 100%;
  border-radius: 12px;
}

.work-cat {
  font-size: 12px;
  color: #bbb;
  letter-spacing: 1px;
  margin-top: 10px;
}

.work-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
}

.work-link {
  font-size: 13px;
  color: #777;
  text-decoration: none;
  font-weight: 600;
  margin-top: 5px;
  display: inline-block;
  transition: 0.3s ease;
}

.work-link:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Buttons */
.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #1D1D1D;
  color: #ccc;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #430167;
  color: #000;
}

@media (max-width: 768px) {
  .portfolio-title {
    font-size: 40px;
  }
}
/* LOGOS SECTION */
/* HEADING */
.logo-tag {
  color: #888;
  font-size: 13px;
  letter-spacing: 1px;
}

.logo-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 30px;
}

.logo-title span {
  color: #430167;
}

/* LOGO CARD */
.logo-card {
  background: #111;
  border-bottom: 2px solid #430167;
  border-radius: 10px;
}

.logo-card:hover {
  background: linear-gradient(to right, #41295a, #2F0743);
  color: #ffffff;
}

.logo-card:hover .logo-name {
  color: #ffffff;
}

/* LOGO IMAGE + NAME */
.logo-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-img:hover {
  cursor: zoom-in;
}

.logo-name {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

/* POPUP IMAGE */
.logo-popup {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .logo-title {
    font-size: 34px;
  }
}
/*FIGMA WORK*/
/* Remove underline from anchor */
.figma-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Hover effect stays same */
.figma-link:hover .work-card {
  transform: translateY(-8px);
}

/* EDUCATION SECTION */
.education-section {
  background-color: #000;
}

.edu-tag {
  color: #888;
  font-size: 14px;
}

.edu-title {
  font-size: 46px;
  font-weight: 700;
}

.edu-title span {
  color: #430167;
}

.edu-card {
  background: #151515;
  border-radius: 12px;
  border-bottom: 3px solid #430167;
  transition: 0.3s ease-in-out;
}

.edu-card:hover {
  background: linear-gradient(to right, #41295a, #2F0743);
  transform: translateY(-4px);
}

.edu-year {
  color: #bbb;
  font-size: 13px;
}

.edu-inst {
  color: #bbb;
  font-size: 13px;
  font-weight: 500;
}

.edu-grade {
  color: #bbb;
  font-size: 13px;
  font-weight: 600;
}

.edu-degree {
  font-size: 18px;
  font-weight: 600;
}

.edu-desc {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive title */
@media (max-width: 768px) {
  .edu-title {
    font-size: 34px;
  }
}
/* DESIGN PHILOSOPHY SECTION */
.philosophy-section {
  background: #000;
  padding-bottom: 80px;
}

/* Left Image */
.philosophy-photo {
  width: 230px;
  height: 230px;
  background: #430167;
  border-radius: 50%;
  overflow: hidden;
}

.philosophy-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Content */
.philosophy-tag {
  color: #888;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.philosophy-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 15px;
}

.philosophy-title span {
  color: #430167;
}

.philosophy-text {
  font-size: 17px;
  color: #e5e5e5;
  line-height: 1.7;
  max-width: 100%;
}

/* Purple underline */
.underline {
  height: 3px;
  width: 80px;
  margin-top: 25px;
  background: #430167;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .philosophy-title {
    font-size: 34px;
  }
  .philosophy-text {
    font-size: 15px;
  }
}
/* BLOG SECTION */
.blog-section {
  background: #000;
}

.blog-tag {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-title span {
  color: #430167;
}

/* Card Style */
.blog-card {
  background: #111;
  border-bottom: 2px solid #430167;
  border-radius: 12px;
  transition: 0.3s ease;
}

.blog-card:hover {
  background: linear-gradient(to right, #41295a, #2F0743);
  border-color: #000;
  color: #000;
}

/* Text */
.blog-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.blog-text {
  font-size: 14px;
  color: #d1d1d1;
  line-height: 1.6;
}

/* Badge */
.blog-badge {
  margin-top: 10px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  font-weight: 600;
}

/* READ BLOG BUTTON */
.read-btn {
  font-size: 13px;
  font-weight: 600;
  color: #a855f7;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover Effect */
.read-btn:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Optional: card hover effect sync */
.blog-card:hover .read-btn {
  color: #fff;
}

/* CONTACT SECTION */
.contact-section {
  background: #111;
}

.contact-tag {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
}

.contact-title {
  font-size: 52px;
  font-weight: 700;
}

.contact-title span {
  color: #430167;
}

.contact-label {
  font-size: 13px;
  color: #888;
}

.contact-link {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

/* INPUTS */
.contact-input, .contact-textarea {
  background: #131313;
  border: 1px solid #222;
  color: #fff;
  padding: 14px;
  border-radius: 5px;
  font-size: 14px;
}

.contact-input::-moz-placeholder, .contact-textarea::-moz-placeholder {
  color: #777;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #777;
}

.contact-form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background-color: #430167;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 17px;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #2F0743;
}

/* BUTTON */
.send-btn {
  background: #131313;
  border: 1px solid #430167;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.send-btn:hover {
  background: #430167;
  color: #fff;
}

#success-msg {
  background: rgba(76, 175, 80, 0.15);
  padding: 10px 15px;
  border-left: 4px solid #4CAF50;
  border-radius: 4px;
  color: #4CAF50;
}

/* MAP */
.map-box {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

/* FOOTER */
.footer-text {
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 36px;
  }
  .send-btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */