.elementor-52 .elementor-element.elementor-element-d1f0f22{margin-top:-100px;margin-bottom:0px;}/* Start custom CSS for html, class: .elementor-element-52c71f8 */html {
  scroll-behavior: smooth;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 999;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #0066ff;
  text-decoration: none;
}

/* TOGGLE (MOBILE) */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: block;
}

/* MENU – MOBILE DEFAULT */
.nav-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  text-align: center;
}

.nav-menu ul li {
  padding: 12px 0;
}

.nav-menu ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* DESKTOP / LAPTOP */
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: block !important;
    position: static;
    box-shadow: none;
    width: auto;
  }

  .nav-menu ul {
    display: flex;
    gap: 22px;
    padding: 0;
  }

  .nav-menu ul li {
    padding: 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6d13a85 *//* ===== INTRO SECTION ===== */
.intro-section {
  padding: 90px 20px;
  background: linear-gradient(120deg, #f0f9ff, #ffffff);
}

.intro-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT */
.intro-text h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.intro-text h1 span {
  color: #0066ff;
}
.intro-text h3 {
  font-size: 22px;
  color: #444;
  margin-bottom: 15px;
}
.intro-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 26px;
  background: #0066ff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
}
.btn.outline {
  background: transparent;
  color: #0066ff;
  border: 2px solid #0066ff;
}

/* IMAGE */
.intro-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #0066ff;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .intro-text h1 {
    font-size: 32px;
  }

  .intro-image img {
    width: 200px;
    height: 200px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0ce45bf *//* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #0066ff;
  margin-bottom: 20px;
}

.about-text {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
  .about-text {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c1aff9c *//* ===== EXPERIENCE SECTION ===== */
.experience-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.experience-container {
  max-width: 900px;
  margin: auto;
}

.experience-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.experience-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}

/* bullet dot */
.experience-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0066ff;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .experience-box {
    padding: 22px;
  }
  .experience-box h3 {
    font-size: 20px;
  }
  .experience-list li {
    font-size: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-40e100b *//* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: 80px 20px;
  background: #ffffff;
}

.projects-container {
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

/* CARD */
.project-card {
  background: #f9fbff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.project-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

/* TAG */
.project-tag {
  display: inline-block;
  background: #0066ff;
  color: #ffffff;
  padding: 5px 14px;
  font-size: 13px;
  border-radius: 20px;
}

/* 💻 LAPTOP */
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 🖥️ LARGE SCREEN */
@media (min-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9836374 *//* ===== SKILLS SECTION ===== */
.skills-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.skills-container {
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

/* CARD */
.skill-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
}

.skill-icon {
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
}

.skill-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.skill-card p {
  font-size: 14px;
  color: #555;
}

/* 💻 LAPTOP */
@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-074d689 *//* ===== EDUCATION SECTION ===== */
.education-section {
  padding: 80px 20px;
  background: #ffffff;
}

.education-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* BOX */
.education-box {
  background: #f9fbff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.education-box h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #222;
}

.edu-institute {
  font-size: 15px;
  color: #555;
  margin-bottom: 4px;
}

.edu-year {
  font-size: 14px;
  color: #0066ff;
  font-weight: 500;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .education-box h3 {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-67a3a40 *//* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.certifications-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.certification-box {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.certification-box h3 {
  font-size: 19px;
  margin-bottom: 6px;
  color: #222;
}

.certification-box p {
  font-size: 15px;
  color: #555;
}

.coming-soon {
  opacity: 0.7;
  font-style: italic;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .certification-box h3 {
    font-size: 18px;
  }
}/* End custom CSS */