/* BASE */
body {
  font-family: "Poppins", sans-serif;
  background-color: #e6ecf0;
  margin: 0;
  padding: 0;
}

/* NAVBAR */
.navbar {
  background: #092a4b;
  /* background: #001f3f; */
  /* background: #1d1c1c; */
  padding: 16px 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, padding 0.3s ease;
}

/* Brand */
.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #ffffff !important;
  transition: color 0.3s ease;
}
.navbar-brand:hover {
  color: #5e81ff !important;
}

/* Nav items */
.navbar-nav .nav-item {
  margin: 0 18px;
}

.navbar-nav .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff !important;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #5e81ff !important;
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ------------------------------------- */
/* 1. Base Styles & Smooth Scrolling */
/* ------------------------------------- */

html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 100px; 
}


/* ------------------------------------- */
/* 2. Custom Mobile Toggler Icon (Hamburger) */
/* ------------------------------------- */

.navbar-toggler {
    border: none !important;
    outline: none !important;
    padding: 6px;
}

/* The middle line of the hamburger icon */
.custom-toggler-icon {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #ffffff !important;
    position: relative;
    transition: background-color 0.3s ease; 
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: #ffffff !important;
    transition: transform 0.3s ease, top 0.3s ease; 
}

/* Positioning the top line */
.custom-toggler-icon::before {
    top: -8px;
}

/* Positioning the bottom line */
.custom-toggler-icon::after {
    top: 8px; 
}


/* ------------------------------------- */
/* 3. Media Query (Mobile Specific Styles) */
/* ------------------------------------- */

@media (max-width: 767.98px) {
    .navbar {
        padding: 12px 20px;
    }

    /* Mobile Dropdown Background and Shape */
    .navbar-nav {
        /* background: #1d1c1c; */
        background: #092a4b;
        /* background: #001f3f; */
        padding: 18px 0;
        border-radius: 12px;
        margin-top: 12px;
        
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 18px;
        text-align: center;
    }
    

    :target {
        scroll-margin-top: 70px; 
    }
}

/* =-=-=-=-=- */
#hero {
  position: relative;
  padding: 180px 0;
  background-image: url("img/cover-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

/* ✨ DARK OVERLAY FOR OPACITY REDUCTION */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.06); /* 0.35 = 35% dark overlay */

  z-index: 1;
}

/* Original hero content must stay above overlay */
#hero > * {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
}

.highlight {
  color: #007bff;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
}

.hero-desc {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

/* .hero-buttons a {
    margin-right: 10px;
    padding: 12px 25px;
    font-size: 1.1rem;
} */

.hero-buttons a {
  margin-right: 15px;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 50px;
}
/* .hero-image {
  max-width: 300px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  padding: 0;
  position: relative;
  z-index: 1;
  animation: rgbGlow 4s linear infinite;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}


@keyframes rgbGlow {
  0% {
    box-shadow: 0 0 20px 4px #ff004f;
  }
  33% {
    box-shadow: 0 0 22px 6px #00e0ff;
  }
  66% {
    box-shadow: 0 0 22px 6px #8dff00;
  }
  100% {
    box-shadow: 0 0 20px 4px #ff004f;
  }
} */

.hero-image-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto; /* center */
}

/* IMAGE */
.hero-image {
  max-width: 340px;
  border-radius: 50%;
  border: 8px solid #ffffff;
  display: block;
  position: relative;
  z-index: 2;
}

/* DESKTOP RGB GLOW */
/* .hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    #ff004f,
    #00e0ff,
    #7cff00,
    #ff9a00,
    #ff004f
  );
  background-size: 300% 300%;
  animation: rgbRotate 4s ease infinite;
  z-index: 1;
  filter: blur(18px);
}

@keyframes rgbRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  border-radius: 50%;

  /* ★ Ultra Premium Gradient Glow */
  background: conic-gradient(
    from 0deg,
    #ff007f,
    #8b5cf6,
    #00d4ff,
    #22ff88,
    #ffea00,
    #ff6b00,
    #ff007f
  );

  background-size: 300% 300%;
  animation: smoothGlow 6s linear infinite;

  filter: blur(30px);
  opacity: 0.9;
  z-index: 1;
}

@keyframes smoothGlow {
  0% {
    transform: rotate(0deg);
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    transform: rotate(360deg);
    background-position: 0% 50%;
  }
}

/* MOBILE RESPONSIVE */
/* MOBILE RESPONSIVE - SMALLER DEVICES */
@media (max-width: 768px) {
  #hero {
    text-align: center;
    flex-direction: column;
    padding: 50px 15px 70px; /* কম space, balanced */
  }

  .hero-title,
  .hero-subtitle,
  .hero-desc {
    color: cadetblue !important;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-top: 20px;
    margin-bottom: 5px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .hero-buttons a {
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  /* Image Size - smaller but balanced */
  .hero-image {
    max-width: 220px; /* ছোট স্ক্রিনে compact */
  }

  /* Keep image centered & not too low */
  .hero-image-wrapper {
    margin-top: 50px; /* top spacing slightly reduced */
    position: relative;
  }

  /* Mobile Glow - proportional & subtle */
  .hero-image-wrapper::after {
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;

    background: conic-gradient(
      from 0deg,
      #ff007f,
      #8b5cf6,
      #00d4ff,
      #22ff88,
      #ffea00,
      #ff6b00,
      #ff007f
    );

    background-size: 300% 300%;
    filter: blur(20px);
    opacity: 1.5;

    animation: rgbRotateMobile 8s linear infinite;

    z-index: 1;
  }
}

/* Extra small devices (≤480px) */
@media (max-width: 480px) {
  #hero {
    padding: 40px 10px 60px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .hero-buttons a {
    font-size: 1rem;
    margin: 8px 0;
  }

  .hero-image {
    max-width: 280px;
  }

  .hero-image-wrapper::after {
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    filter: blur(16px);
  }
}

/* Mobile Animation */
@keyframes rgbRotateMobile {
  0% {
    transform: rotate(0deg);
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    transform: rotate(360deg);
    background-position: 0% 50%;
  }
}

/* .hero-image {
  max-width: 300px;
  border: 8px solid white;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
} */

/* ----======================================-------------------- */

/* .about-section-title {
  font-size: 2rem;
} */

/* About Title */
.all-section-title {
  max-width: 1100px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: justify; /* 🔥 Justify text */
  letter-spacing: 0.2px;
}

.all-section-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: #74b3f7;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  text-align: justify; /* 🔥 Justify text */
  letter-spacing: 0.2px;
}

/* Text Container */
.about-content {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.14rem;
  line-height: 1.75;
  color: #333;
  letter-spacing: 0.2px;
  text-align: justify; /* 🔥 Justify text */
  letter-spacing: 0.2px;
}

/* Paragraphs */
.about-content p {
  margin-bottom: 18px;
  text-align: justify; /* 🔥 Justify text */
  letter-spacing: 0.2px;
}

/* Lead / First paragraph */
.about-content .lead {
  font-size: 1.23rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
}
.about-content ul {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 18px;
  padding-left: 20px; /* proper indentation for list */
}

/* Mobile Responsive */
/* Mobile Responsive for About Section */
@media (max-width: 768px) {
  .about-content {
    font-size: 1.12rem; /* readable size */
    line-height: 1.65; /* spacious but compact */
    padding: 0 12px;
    text-align: justify; /* neat justified look */
  }

  .about-content .lead {
    font-size: 1.18rem; /* slightly larger first paragraph */
    margin-bottom: 16px;
  }

  /* Lists remain left-aligned */
  .about-content ul {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .about-content ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Extra small devices (≤480px) */
@media (max-width: 480px) {
  .about-content {
    font-size: 1.08rem; /* slightly smaller for tiny screens */
    line-height: 1.55;
    padding: 0 10px;
  }

  .about-content .lead {
    font-size: 1.12rem;
  }

  .about-content ul {
    padding-left: 16px;
  }

  .about-content ul li {
    font-size: 0.98rem;
    line-height: 1.45;
  }
}

/* -=-=-=-=-========================---- */

/* Skills Section */
.section-title {
  font-size: 2.3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #00aaff);
  border-radius: 3px;
}

.skill-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(180, 180, 180, 0.6);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative; /* IMPORTANT */
  overflow: hidden;
}

/* TOP BAR --- default collapsed */
.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 0%; /* collapsed */
  height: 4px;

  background: linear-gradient(90deg, #007aff, #00d4ff);
  border-radius: 12px; /* smoother curve */
  transition: width 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

/* HOVER EFFECT */
.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

/* EXPAND BAR ON HOVER */
.skill-card:hover::before {
  width: calc(100% - 12px); /* perfect left-right spacing */
  opacity: 1;
}

/* Icon + Title */
.skill-item {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

/* Underline below card title */
.skill-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 4px;
  background: #008cff;
  border-radius: 1.5px;
}

/* Icons */
.skill-item i {
  font-size: 2rem;
  color: #555;
  margin-right: 12px;
  transition: 0.3s ease;
}

/* On hover icon turns blue */
.skill-card:hover .skill-item i {
  color: #008cff;
}

/* List Styles */
.skill-card ul {
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
}

.skill-card ul li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.skill-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  color: #777;
}

/* Mobile */
@media (max-width: 768px) {
  .skill-item {
    font-size: 1.15rem;
  }

  .skill-item i {
    font-size: 1.6rem;
  }

  .skill-card {
    padding: 18px;
  }
}

/* =================== */
/* =================== */
/* PREMIUM CP CARD SECTION */
/* =================== */

.cp-card {
  border: 1.5px solid #e5e5e5;
  border-radius: 14px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  /* MOST IMPORTANT → equal height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 340px; /* adjust height from here */
  height: 100%;

  position: relative;
  overflow: hidden;
}

/* TOP BORDER */
.cp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 0%;
  height: 4px;

  background: linear-gradient(90deg, #007bff, #00d0ff);
  border-radius: 6px;

  opacity: 0;
  transition: width 0.35s ease, opacity 0.25s ease;
}

/* Title */
.cp-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Description container */
.cp-desc {
  flex-grow: 1; /* pushes button to bottom */
  margin-bottom: 18px; /* spacing before button */
}

.cp-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

/* Button */
.profile-btn {
  padding: 10px 20px;
  font-size: 0.95rem;
  width: 100%;
  border-radius: 40px;
  border: none;
  margin-top: 40px;
  margin-bottom: 10px;

  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  font-weight: 600;

  transition: all 0.25s ease;
}

.profile-btn:hover {
  background: linear-gradient(135deg, #0066d6, #00b4ff);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 140, 255, 0.25);
}

/* Card hover */
.cp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Expand top border */
.cp-card:hover::before {
  width: calc(100% - 12px);
  opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .all-section-title {
    font-size: 1.7rem;
    text-align: center;
  }
  .cp-card {
    padding: 16px;
    min-height: 420px;
  }
  .cp-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .cp-card-title {
    font-size: 5.3rem;
    margin-bottom: 12px;
    margin-top: 12px;
  }
  .cp-card p {
    font-size: 0.95rem;
  }
  .profile-btn {
    font-size: 0.95rem;
    margin-top: 60px;
    margin-bottom: 20px;
    padding: 13px;
  }
}

/* =================== */
/* PROJECT GRID WRAPPER */
.projects-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 25px;
  padding: 10px 0;
}

#projects.container {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.project-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #007bff;
}

.project-card .project-content {
  padding: 20px;
}

.project-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.project-card .project-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.project-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #222;
}

.project-card ul {
  padding-left: 18px;
  font-size: 15px;
  color: #444;
}

.project-card .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.project-card .tech-list span {
  background: lightgray;
  color: black;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.project-card .project-links {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.project-card .project-links a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}

.project-card .project-links a:first-child {
  background: #333;
  color: white;
}

.project-card .project-links a:last-child {
  background: #007bff;
  color: white;
}

.project-card .project-links a:hover {
  opacity: 0.8;
}

.live-demo-btn {
  background: linear-gradient(135deg, #007bff, #00c6ff) !important;
  color: white !important;
}

@media (min-width: 1200px) {
  .project-col {
    flex: 0 0 32%;
    max-width: 32%;
  }
}

/* 🔥 Large Tablet / Small Laptop */
@media (max-width: 1100px) {
  .projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 🔥 Tablet & Big Phones */
@media (max-width: 768px) {
  .projects-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .project-card {
    margin-bottom: 30px;
  }

  .project-card .project-links {
    flex-direction: column;
  }

  .project-card .project-links a {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

/* =================== */

/* ========================= */
/*     CONTACT FORM CARD     */
/* ========================= */

.contact-form-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);

  border-radius: 16px;
  padding: 30px;

  border: 1px solid rgba(180, 180, 180, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* PREMIUM TOP BORDER GLOW */
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 0%;
  height: 4px;

  background: linear-gradient(90deg, #007bff, #00d4ff);
  border-radius: 12px;

  opacity: 0;
  transition: width 0.35s ease, opacity 0.25s ease;
}

/* HOVER EFFECT */
.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.contact-form-card:hover::before {
  width: calc(100% - 12px);
  opacity: 1;
}

/* ------------------------ */
/*       TEXT & INPUTS      */
/* ------------------------ */

.contact-form-card h2 {
  font-size: 26px;
  color: #222;
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-form-card .form-label {
  font-size: 16px;
  font-weight: 600;
  color: #444;
}

.contact-form-card .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 14px;
  font-size: 15px;
  color: #333;

  background: #fafafa;
  transition: 0.25s ease;
}

.contact-form-card .form-control:focus {
  border-color: #007bff;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

.contact-form-card textarea {
  resize: vertical;
}

/* ------------------------ */
/*         BUTTON           */
/* ------------------------ */

.contact-form-card button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;

  border: none;
  border-radius: 50px;

  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;

  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 30px;
  margin-bottom: 10px;
}

.contact-form-card button:hover {
  background: linear-gradient(135deg, #0066d6, #00b4ff);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 140, 255, 0.25);
}

/* ------------------------ */
/*        RESPONSIVE        */
/* ------------------------ */

@media (max-width: 768px) {
  .contact-form-card {
    padding: 22px;
    border-radius: 14px;
  }

  .contact-form-card h2 {
    font-size: 22px;
  }

  .contact-form-card .form-control {
    font-size: 14px;
  }

  .contact-form-card button {
    font-size: 14px;
    padding: 13px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

/* =================== */
.footer {
  background: #1c1c1c;
  color: #ffffff;
  padding-bottom: 40px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.2rem;
  color: #f4f4f4;
  position: relative;
  text-align: left; /* desktop default */
}

/* Underline Effect */
.footer-title::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: #007bff;
  margin-top: 6px;
  border-radius: 10px;
  margin-left: 0; /* desktop default left aligned */
}

.footer-text {
  color: #d0d0d0;
  font-size: 0.96rem;
  line-height: 1.6;
  text-align: left;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  text-align: left;
}

.footer-link {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-link:hover {
  color: #4d9bff;
  padding-left: 6px;
  text-shadow: 0 0 6px rgba(77, 155, 255, 0.7);
}

.footer i {
  color: #4d9bff;
  margin-right: 10px;
  font-size: 1rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 25px auto;
  width: 80%;
}

.footer-bottom-text {
  font-size: 0.9rem;
  color: #bfbfbf;
}

/* Social Links */
.social-links a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #d1d1d1;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
  transform: translateY(-3px);
}

/* ================== MOBILE CENTERED ================== */
@media (max-width: 768px) {
  .footer-title {
    font-size: 1.15rem;
    text-align: center;
  }

  .footer-title::after {
    margin-left: auto;
    margin-right: auto; /* underline centered */
  }

  .footer-text,
  .footer-link,
  .footer-list li,
  .social-links,
  .social-links a {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-list li {
    margin-bottom: 10px;
  }
}
