* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}
:root {
  --bg-color: #020312;
  --accent: linear-gradient(90deg, #6bb8ff, #6bff72);
  --text-color: #fff;
  --main-color: #4aadeb;
  --second-color: rgb(187, 184, 184);
  --other-color: #12141c;
  --h1-font: 5.2rem;
  --h2-font: 3.5rem;
  --p-font: 1.1rem;


}
body {
  background: #111;
  color: var(--text-color);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--main-color);
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(88, 234, 95, 0.2);
}

/* LOGO */
header .logo {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
}
header .logo span {
  color: #ff4242;
}

/* NAVBAR */
header .navbar {
  display: flex;
  gap: 25px;
  list-style: none;
}
header .navbar li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 0.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  transition: 0.3s ease;
}
header .navbar li a:hover {
  background: #6195e4;
  color: var(--text-color);
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  header {
    padding: 15px 5%;
  }

  header .navbar {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 200px;
    height: calc(100% - 65px);
    background: rgba(2, 3, 18, 0.95);
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    transition: 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  header .navbar.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hamburger animation when open */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* End Navbar styles */

/* ===== HOME SECTION ===== */
.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}
.home-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  padding: 0 8%;
  min-height: 100vh;
  z-index: 2;
}

/* TEXT */
.home-text {
  flex: 1 1 280px;
  max-width: 600px;
}

.home-text h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--main-color);
  margin-bottom: 10px;
}

.home-text h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
}

.home-text h1 span {
  color: var(--main-color);
}

.home-text h3 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin: 15px 0 30px;
  color: #ddd;
}

/* SOCIAL MEDIA */
.social-media {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-media a {
  color: #4aff42;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  transition: 0.3s ease;
}

.social-media a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* BUTTON */
.btn {
  background: var(--main-color);
  color: #000;
  padding: clamp(10px, 1.5vw, 12px) clamp(22px, 3vw, 28px);
  border-radius: 25px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background: var(--main-color);
  transform: translateY(-3px);
}

/* IMAGE */
.home-img {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-img img {
  width: clamp(240px, 30vw, 380px);
  height: clamp(320px, 40vw, 480px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(107, 255, 112, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(107, 255, 112, 0.4);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .home-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 80px 5%;
  }

  .social-media {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-content {
    padding: 60px 5%;
  }

  .home-text h1 {
    font-size: 2rem;
  }

  .home-text h3 {
    font-size: 0.9rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #0f1724;
  color: #fff;
  display: block;
  padding: 80px 5%;
  box-shadow: 0 8px 30px rgba(13, 29, 61, 0.6);
  border-radius: 12px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ===== IMAGE STYLING ===== */
.about-img {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.about-img img {
  width: 250px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #d3dad3;
  box-shadow: 0 8px 25px rgba(255, 184, 107, 0.2);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* ===== TEXT SECTION ===== */
.about-text {
  flex: 1 1 450px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.4rem;
  color: #38ae46;
  margin-bottom: 10px;
}

.about-text h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: #b0b9c3;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== BUTTON STYLING ===== */
.btn {
  display: inline-block;
  background: #52b228;
  color: #0a0f1c;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--main-color);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about {
    padding: 60px 4%;
  }
  .about-text h2 {
    font-size: 2rem;
  }
  .about-text h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 250px;
    height: 250px;
  }

  .about-text {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-img img {
    width: 250px;
    height: 320px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text h4 {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }
}

.top {
  position: fixed;
  bottom: 2.1rem;
  right: 2.1rem;
  scroll-behavior: smooth;
}
.top i {
  color: var(--text-color);
  background: var(--main-color);
  font-size: 20px;
  padding: 10px;
  border-radius: 0.5rem;
}

.back-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(60%) contrast(110%);
}

@media (min-aspect-ratio: 16/10) {
  .back-video {
    width: 100%;
    height: 100%;
  }
}
@media (max-aspect-ratio: 16/10) {
  .back-video {
    width: 100%;
    height: 100%;
  }
}

img {
  height: 150px;
  width: 250px;
}

/* Technical Skills CSS */

/* Skills Section */
.skills-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.skills-wrap h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 600;
}

/* Grid for skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Individual skill card */
.skill {
  background: #1b2230;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.skill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.skill-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
}

.skill-name {
  font-weight: 500;
  color: #e0e0e0;
}

/* Percent counter */
.skill-percent {
  font-weight: 600;
  color: #4CAF50;
}

/* Progress bar */
.bar-wrap {
  background: #e0e0e0;
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
}

.bar {
  background: #4CAF50;
  height: 100%;
  width: 0%;
  border-radius: 10px;
  position: relative;
  transition: width 1.5s ease-in-out;
}

.bar-label {
  position: absolute;
  right: 10px;
  top: -22px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .skills-wrap {
    padding: 40px 15px;
  }

  .skill-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .skill-percent {
    margin-top: 5px;
  }

  .bar-label {
    right: 0;
    top: -20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skills-wrap h2 {
    font-size: 1.8rem;
  }
}


/* ========== EXPERIENCE SECTION ========== */
/* Experience Section */
.experience {
  padding: 60px 20px;

}

.experience h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 600;
  color: #fff;
}

/* Container for all cards */
.experience-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.experience-card {
  background: #1b2230;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  transition: transform 0.4s, box-shadow 0.3s;
  
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(91, 202, 61, 0.5);.
  
}

/* Image section of card */
.exp-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Body section of card */
.exp-body {
  padding: 20px;
}

.exp-body h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
}

.exp-body h4 {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.exp-body h4 span {
  font-weight: 500;
  color: #4CAF50;
}

.exp-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.exp-body i {
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
  .experience-content {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .experience-card {
    width: 100%;
  }

  .exp-body h3 {
    font-size: 1.2rem;
  }

  .exp-body h4 {
    font-size: 0.95rem;
  }

  .exp-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .experience h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .exp-body {
    padding: 15px;
  }
}


/* ===== ACHIEVEMENT SECTION ===== */
.achievement {
  background: #0f1724;
  color: #fff;
  padding: 80px 5%;
  text-align: center;
}

.achievement .main-text h2 {
  font-size: 2.2rem;
  color: #ffb86b;
  margin-bottom: 40px;
  position: relative;
}

.achievement .main-text h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6bff97, #81ff6b);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.achievement-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* CARD DESIGN */
.achievement-card {
  background: #1b2230;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 350px;
}

.achievement-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(235, 255, 107, 0.3);
}

.achievement-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s ease;
}

.achievement-card:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
  text-align: left;
}

.card-body h4 {
  color: #b0ff6b;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-body p {
  color: #b0b9c3;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .achievement {
    padding: 60px 20px;
  }

  .achievement .main-text h2 {
    font-size: 1.8rem;
  }

  .card-body h4 {
    font-size: 1rem;
  }

  .card-body p {
    font-size: 0.9rem;
  }
}

/* ===== PROJECTS SECTION ===== */
.portfolio {
  /* background: #0f1724; */
  color: #fff;
  padding: 80px 5%;
  text-align: center;
}

.portfolio .main-text h2 {
  font-size: 2.3rem;
  color: #f28253;
  margin-bottom: 10px;
}

.portfolio .main-text h4 {
  color: #b0b9c3;
  font-weight: 400;
  margin-bottom: 40px;
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* CARD DESIGN */
.portfolio-card {
  background: #1b2230;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(156, 255, 107, 0.3);
}

.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.card-body {
  padding: 20px;
  text-align: left;
}

.card-body h4 {
  color: #77ff6b;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-body p {
  color: #b0b9c3;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.card-body .tag {
  display: inline-block;
  background: linear-gradient(90deg, #bfff6b, #6bbcff);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .portfolio {
    padding: 60px 20px;
  }

  .portfolio .main-text h2 {
    font-size: 1.8rem;
  }

  .portfolio .main-text h4 {
    font-size: 1rem;
  }

  .card-body h4 {
    font-size: 1rem;
  }

  .card-body p {
    font-size: 0.9rem;
  }
}

/* ===== EDUCATION SECTION ===== */

/* ===== QUALIFICATION SECTION ===== */
.qualification {
  background: #0f1724;
  color: #fff;
  padding: 80px 5%;
  text-align: center;
}

.qualification .main-text h2 {
  font-size: 2.3rem;
  color: #7bdd67;
  margin-bottom: 10px;
}

.qualification .main-text h4 {
  color: #b0b9c3;
  font-weight: 400;
  margin-bottom: 40px;
}

/* ===== GRID LAYOUT ===== */
.qualification-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* ===== CARD STYLING ===== */
.qualification-card {
  background: #1b2230;
  border-radius: 16px;
  overflow: hidden;
  max-width: 400px;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.qualification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.25);
}

/* ===== IMAGE STYLE ===== */
.q-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.qualification-card:hover .q-img img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ===== TEXT BODY ===== */
.q-body {
  padding: 20px;
}

.q-body h3 {
  color: #81ff6b;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.q-body h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.q-body p {
  color: #b0b9c3;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .qualification {
    padding: 60px 4%;
  }
}

@media (max-width: 768px) {
  .qualification .main-text h2 {
    font-size: 1.8rem;
  }

  .qualification-container {
    grid-template-columns: 1fr;
  }

  .q-body h3 {
    font-size: 1.1rem;
  }

  .q-body p {
    font-size: 0.9rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 5%;
  background: #0f1724;
  color: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  justify-content: space-between;
}

.contact-text {
  flex: 1 1 350px;
}

.contact-text h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-text h4 {
  color: #75ff6b;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-text p {
  color: #b0b9c3;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-list li {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-list a {
  color: #6bff6b;
  text-decoration: none;
  transition: 0.3s;
}

.contact-list a:hover {
  color: #6bff6b;
}

.btn {
  padding: 10px 25px;
  background: linear-gradient(90deg, #6bff6b, #ddd867);
  border: none;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  flex: 1 1 400px;
  background: #1b2230;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #0f1724;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6bff6b;
  box-shadow: 0 0 8px rgba(107, 255, 107, 0.5);
}

.submit-btn {
  padding: 12px 25px;
  background: linear-gradient(90deg, #6bff6b, #ddd867);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #81ff6b, #ddd867);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-text,
  .contact-form {
    width: 100%;
  }

  .contact-text h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    margin-top: 20px;
  }
}

/* floating contact */
.floating-contact {
  position: fixed;
  top: 70%;
  left: 12px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 1000;
}

.floating-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #25d366; /* WhatsApp green */
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.floating-contact a.call {
  background: #0a66c2; /* Blue for call button */
}

.floating-contact a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
  background: #b15c65;
  color: #fff;
  padding: 50px 8%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
  align-items: start;
}

/* Footer Columns */
.footer-col h3 {
  margin-bottom: 15px;
  color: #5eff42;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.footer-col p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #ccc;
}

/* Navbar Links */
.footer-navbar {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-navbar li {
  margin-bottom: 10px;
}
.footer-navbar li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}
.footer-navbar li a:hover {
  color: #5eff42;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-social a {
  color: #5eff42;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  transition: 0.3s ease;
}
.footer-social a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Footer Logo */
.footer-logo {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span {
  color: #74ff42;
}

/* Footer Copy */
.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #aaa;
  grid-column: 1 / -1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: center;
  }

  .footer-col p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}






