* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}
:root {
  --bg-color: #020312;
  --accent: linear-gradient(90deg, #ff6b6b, #ffb86b);
  --text-color: #fff;
  --main-color: #eb4a4a;
  --second-color: gray;
  --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: rgba(2, 3, 18, 0.85); /* semi-transparent */
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* LOGO */
header .logo {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
}
header .logo span {
  color: #ff8c42;
}

/* 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 {
  /* color: #ffb86b; */
  background: var(--main-color);
  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;
}

.back-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(60%) contrast(110%);
}

.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: #ffb86b;
  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: #ff8c42;
}

.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: #ffb86b;
  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: #ffb86b;
  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: #ff8c42;
  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 8px 15px rgba(238, 239, 235, 0.888);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 184, 107, 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;
  padding: 80px 5%;
}

.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 #ffb86b;
  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: #ffb86b;
  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: #ffb86b;
  color: #0a0f1c;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ff8c42;
  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: 320px;
  }

  .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;
}
.top i {
  color: var(--text-color);
  background: var(--main-color);
  font-size: 20px;
  padding: 10px;
  border-radius: 0.5rem;
}

/* @media (max-width: 1325px) {
  header {
    padding: 16px 3%;
  }
  header.sticky {
    padding: 8px 3%;
  }
  section {
    padding: 130px 3% 60px;
  }
}

@media (max-width: 970px) {
  :root {
    --h1-font: 4.2rem;
    --h2-font: 2.9rem;
    --p-font: 1rem;
  }
  section {
    padding: 70px 3% 60px;
  }
  .home {
    height: 85vh;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-img {
    text-align: center;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 830px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: -600px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #12141c;
    text-align: left;
    transition: all 0.4s ease;
  }
  .navbar a {
    display: block;
    padding: 1rem;
    margin: 1rem;
  }
  .navbar.active {
    top: 100%;
  }
  :root {
    --h1-font: 3.7rem;
    --h2-font: 2.7rem;
  }
} */

.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (min-aspect-ratio: 16/10) {
  .back-video {
    width: 110%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/10) {
  .back-video {
    width: auto;
    height: 100%;
  }
}

img {
  height: 150px;
  width: 250px;
}

/* Technical Skills CSS */

.skills-wrap {
  width: 100%;
  max-width: var(--max-width);
  background: #0f1724;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(3, 6, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.skills-wrap:hover {
  content: "";
  display: block;
  clear: both;
  border-top: 4px solid var(--main-color);
}

.skills-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.skills-header h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.2px;
}
.skills-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* single skill card */
.skill {
  background: var(--card);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease;
}
.skill:hover {
  transform: translateY(-4px);
}

.skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.skill-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.skill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4fd1c5, #2bffb0);
  box-shadow: 0 4px 10px rgba(79, 209, 197, 0.12);
}
.skill-name {
  font-weight: 600;
  font-size: 0.98rem;
}
.skill-percent {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

/* progress bar area */
.bar-wrap {
  background: var(--bar-bg);
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(255, 107, 107, 0.08);
  transition: width 1.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  color: #071022;
  font-weight: 700;
  font-size: 0.82rem;
}

/* small label that rides the bar */
.bar-label {
  background: rgba(255, 255, 255, 0.9);
  color: #071022;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  transform: translateY(-50%);
  position: absolute;
  right: 8px;
  top: 50%;
  display: none; /* will display when wide enough */
}

/* show label inside bar when >=30% */
.bar[data-percent]:not([data-percent="0"]) .bar-label {
  display: block;
}

/* responsive */
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* accessible focus */
.skill:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.04);
}

/* tiny animate counter */
.counter {
  min-width: 44px;
  text-align: right;
  color: var(--muted);
  font-weight: 700;
}

/* subtle percentage floated over the bar on small devices */
@media (max-width: 420px) {
  .bar-label {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  .skill-name {
    font-size: 0.95rem;
  }
}

/* ========== EXPERIENCE SECTION ========== */
.experience {
  padding: 80px 5%;
  background: #0f1724;
  color: #f1f1f1;
  text-align: center;
}

.experience .main-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: #fff;
}

.experience .main-text h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ffb86b);
  left: 20%;
  bottom: -10px;
  border-radius: 5px;
}

/* Grid for all experience cards */
.experience-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

/* Individual Card Styling */
.experience-card {
  background: #1b2230;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.15);
}

.exp-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.exp-body {
  padding: 22px;
  flex-grow: 1;
}

.exp-body h3 {
  font-size: 1.4rem;
  color: #ffb86b;
  margin-bottom: 5px;
}

.exp-body h4 {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
}

.exp-body span {
  color: #ff6b6b;
  font-weight: 600;
}

.exp-body p {
  color: #b0b9c3;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .experience .main-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .experience {
    padding: 60px 4%;
  }

  .exp-body {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .experience .main-text h2 {
    font-size: 1.6rem;
  }

  .exp-body h3 {
    font-size: 1.2rem;
  }

  .exp-body p {
    font-size: 0.9rem;
  }
}

/* ===== 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, #ff6b6b, #ffb86b);
  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(255, 107, 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: #ffb86b;
  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: #ffb86b;
  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(255, 107, 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: #ffb86b;
  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, #ff6b6b, #ffb86b);
  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: #ffb86b;
  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: #ffb86b;
  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: #ffb86b;
  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: #ffb86b;
  text-decoration: none;
  transition: 0.3s;
}

.contact-list a:hover {
  color: #ff6b6b;
}

.btn {
  padding: 10px 25px;
  background: linear-gradient(90deg, #ff6b6b, #ffb86b);
  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: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.submit-btn {
  padding: 12px 25px;
  background: linear-gradient(90deg, #ff6b6b, #ffb86b);
  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, #ffb86b, #ff6b6b);
}

/* ===== 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 Base ====== */
footer {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
}

/* ====== Footer Container (Columns) ====== */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* ====== Each Column ====== */
.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 1.2rem;
  color: #00bcd4;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #00bcd4;
}

/* ====== Column Content ====== */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00bcd4;
  margin-left: 5px;
}

/* ====== Logo and About ====== */
.footer-logo {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #00bcd4;
}

.footer-about {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ====== Social Icons ====== */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  color: #fff;
  font-size: 1.6rem;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #00bcd4;
  transform: scale(1.2);
}

/* ====== Footer Bottom ====== */
.footer-copy {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

/* ====== Responsive ====== */

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 45%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }
}
