.contact-item {
    font-size: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-box {
    width: 30px;
    height: 30px;
    border: 2px solid #0d6efd;   /* border color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d6efd;  /* background */
    margin-right: 10px;
}

.icon-box i {
    color: #ffffff;             /* white icon */
    font-size: 16px;
}


/* ✅ Title Underline */
.about-title::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #2563eb;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* ✅ Tilted Image Card */
.about-img-wrapper {
  background: #dbeafe;
  border-radius: 12px;
  transform: rotate(-2deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-img {
  border-radius: 12px;
  transform: rotate(2deg);
}

/* ✅ Stats Card */
.stat-card {
  background: #fff;
  padding: 22px 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

/* ✅ Icon */
.stat-card i {
  font-size: 26px;
  color: #2563eb;
  margin-bottom: 6px;
  display: block;
}

.stat-card h3 {
  margin: 5px 0 0;
  font-weight: 700;
}

.stat-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.hero-shape {
  width: 100%;
  max-width: 668px;
  height: 328px;
  background: linear-gradient(135deg, #2563eb, #93c5fd);
  border-radius: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
        border: 5px solid #fff;
}


h1.fw-bold.display-5.aos-init.aos-animate {
    font-size: 3.75rem;
}

.align-items-center {
    align-items: center !important;
    margin-top: 2% !important;
    margin-bottom: 10%;
}

.hero-img {
  width: 50%;
  height: 100% !important;
  object-fit: cover;

}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {
  .hero-shape {
    height: 240px;
  }

  .hero-img {
    width: 80%;
  }
}
/* ✅ Title underline */
.skill-title::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #2563eb;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* ✅ Skill Card */
.skill-card {
  color: #fff;
  height: 100%;
  transition: 0.3s;
}

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

/* ✅ Header */
.skill-header {
  font-size: 20px;
  font-weight: 600;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  border-radius: 6px 6px 0px 0px;
  margin-bottom: 15px;
}

/* ✅ List */
.skill-card ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.skill-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  color:rgb(55 65 81 / var(--tw-text-opacity, 1));
}

/* ✅ Check Icon */
.skill-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dbeafe;
  font-weight: bold;
}

/* ✅ Additional Competencies Box */
.additional-box {
  background: #f1f5f9;
  padding: 25px;
  border-radius: 12px;
}

/* ✅ Pills */
.skill-pill {
  background: #e0edff;
  color: #1e40af;
  padding: 6px 14px;
  border-radius: 20
}

/* TITLE */
.exp-title {
  position: relative;
  display: inline-block;
}
.exp-title::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #2563eb;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}

/* TIMELINE WRAPPER */
.exp-timeline {
  position: relative;
  margin: auto;
}

/* CENTER LINE */
.exp-timeline::before {
  content: "";
  position: absolute;
  width: 3px;
  background: #bfdbfe;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ROW */
.exp-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
}

.exp-row.reverse {
  flex-direction: row-reverse;
}

/* CARD */
.exp-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  width: 44%;
}

.exp-card.left {
  margin-right: auto;
  text-align: left;
}

.exp-card.right {
  margin-left: auto;
  text-align: left;
}

/* META */
.exp-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

/* CENTER DOT */
.exp-center {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 2;
}

.exp-dot {
    width: 42px;
    height: 42px;
    background: #2563eb;
    border-radius: 50%;
    border: 4px solid #fff;
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 0%;
    font-size: 21px;
}

/* LIST */
.exp-card ul {
  padding-left: 18px;
  font-size: 14px;
}

/* ✅ MOBILE RESPONSIVE (IMAGE JAISE NICHE STACK) */
@media (max-width: 768px) {
  .exp-timeline::before {
    left: 12px;
  }

  .exp-row,
  .exp-row.reverse {
    flex-direction: column;
    padding-left: 40px;
  }

  .exp-card {
    width: 100%;
  }

  .exp-center {
    left: 12px;
    transform: none;
  }
}



.project-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.project-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d47a1, #1e88e5);
  color: white;
  padding: 25px;
  transform: translateY(100%);
  transition: 0.5s ease;
}

.project-box:hover .project-overlay {
  transform: translateY(0);
}

.overlay-content {
  font-size: 14px;
  line-height: 1.6;
}

.overlay-content ul li {
  font-size: 13px;
}


.testimonial-area {
  background: #ecf4ff;
}

/* Title underline */
.testi-heading {
  position: relative;
  display: inline-block;
}
.testi-heading::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #2563eb;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

/* Main White Card */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
}

/* Capsule Image */
.image-capsule {
  width: 260px;
  height: 140px;
  background: #dbeafe;
  border-radius: 999px;
  padding: 8px;
  margin: auto;
  box-shadow: 0 0 40px rgba(37,99,235,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-capsule img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

/* Quote Icon */
.quote-icon {
  font-size: 48px;
  color: #2563eb;
  margin-bottom: 10px;
}







/* Text */
.testi-text {
  fon
}






    .contact-section{
      padding: 80px 20px;
    }
    .contact-title{
      text-align: center;
      font-weight: 700;
      margin-bottom: 10px;
      text-decoration: underline;
      text-decoration-color: #0d6efd;
    }
    .contact-desc{
      text-align: center;
      color: #666;
      margin-bottom: 50px;
    }
    .info-box{
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      transition: 0.3s;
    }
    .info-box:hover{
      transform: translateX(5px);
    }
    .info-icon{
      width: 50px;
      height: 50px;
      background: #e7f1ff;
      color: #0d6efd;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 15px;
      font-size: 20px;
    }
    .form-control{
      padding: 12px;
    }

    /* ✅ Button Animation */
    .btn-primary{
      transition: 0.3s ease-in-out;
    }
    .btn-primary:hover{
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(13,110,253,0.4);
    }

    /* ✅ Footer */
    .footer{
      background: linear-gradient(to right, #0f172a, #020617);
      color: #ccc;
      padding: 60px 20px;
    }
    .footer h4{
      color: #fff;
      margin-bottom: 20px;
    }
    .footer a{
      color: #aaa;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
    }
    .footer a:hover{
      color: #0d6efd;
    }
    .footer-bottom{
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #222;
      margin-top: 40px;
      font-size: 14px;
    }







/* ✅ GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ✅ LIGHTBOX FULL WIDTH */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92%;
  max-height: 90vh;
  border-radius: 8px;
}

/* ✅ CLOSE + NAV BUTTONS */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }







/* ✅ EDUCATION DARK TIMELINE */
.edu-section {
  padding: 80px 0;
}

.edu-title {
  text-align: center;
  color: #00c6ff;
  font-weight: 700;
  margin-bottom: 50px;
}

.edu-timeline {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.edu-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.edu-year {
  min-width: 90px;
  background: linear-gradient(145deg, #0b2a3f, #091d2c);
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  border-radius: 12px;
  font-weight: 700;
}
.d-flex.gap-2.mt-2 img {
    width: 40px;
}

.edu-card {
  flex: 1;
  padding: 18px 25px;
  border-radius: 14px;
  color: white;
      background-color: #2563eb;
}

.edu-card h5 {
  margin-bottom: 5px;
  font-weight: 700;
}

.edu-card p {
  margin: 0;
  color: #ecf4ff;
  font-size: 14px;
}

/* ✅ MOBILE RESPONSIVE */
@media(max-width:768px){
  .edu-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .edu-year {
    width: 100%;
    text-align: left;
  }
}




/* ✅ PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 48px;
  font-weight: 800;
  color: #00c6ff;
  letter-spacing: 3px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* ✅ IF IMAGE LOGO */
.loader-logo-img {
  width: 120px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* ✅ PULSE ANIMATION */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}
