body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; 
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: linear-gradient(90deg, #0056b3, #003d80);
  position: relative;
  z-index: 100;
}


.logo img {
  height: 50px;
  display: block;
}


.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}


.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}


.nav a.active {
  color: #ffd400;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #ffd400;
  border-radius: 4px;
}


.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}


.dropbtn {
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  user-select: none;
}


.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #0a5bb5;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 9999;
  padding: 6px 0;
}


.dropdown-content a {
  display: block;
  padding: 14px 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #084a96;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.linkedin {
  font-weight: bold;
  font-size: 18px;
}



.hero-slider {
    position: relative;
    height: calc(100vh - 70px);
    width: 100%;
    overflow: hidden;
}


.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}


.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}


.content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 620px;
}


.btn {
    display: inline-block;
    padding: 13px 34px;
    border-radius: 30px;
    background: linear-gradient(45deg, #ff5f6d, #ffc371);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {

    .header {
        padding: 0 20px;
    }

    .nav a {
        margin-left: 14px;
        font-size: 14px;
    }

    .content h1 {
        font-size: 30px;
    }

    .content p {
        font-size: 14px;
    }

    .btn {
        padding: 11px 26px;
    }
}

@media (max-width: 480px) {

    .nav {
        display: none; /* Optional: replace with mobile menu */
    }

    .content h1 {
        font-size: 26px;
    }

    .content p {
        font-size: 13px;
    }
}

.services-alt {
    padding: 90px 40px;
    background: #f7f9fc;
}

.services-title {
    text-align: center;
    font-size: 38px;
    color: #0b63ff;
    margin-bottom: 60px;
}


.services-list {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}


.service-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left: 6px solid transparent;
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
}



.icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #ffffff;
}


.icon.blue {
    background: linear-gradient(135deg, #00b4ff, #007aff);
}
.icon.orange {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.icon.teal {
    background: linear-gradient(135deg, #009688, #00695c);
}
.icon.red {
    background: linear-gradient(135deg, #e53935, #b71c1c);
}
.icon.purple {
    background: linear-gradient(135deg, #673ab7, #311b92);
}
.icon.pink {
    background: linear-gradient(135deg, #ff5fa2, #ff4081);
}


.service-text h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 8px;
}

.service-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #1f2937;
}

.skills-section {
  padding: 100px 20px;
}


.skills-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 70px 80px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}


.skills-title {
  margin-bottom: 30px;
}

.skills-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
}


.skills-text {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
}

.skills-text.strong {
  font-weight: 500;
  color: #1e293b;
}


.highlight {
  font-weight: 600;
  color: #2563eb;
}

.emphasis {
  font-weight: 600;
  color: #0f172a;
}


.pill {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 4px;
  background: #eef4ff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}


.skills-values {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.skills-values span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  position: relative;
}

.skills-values span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2563eb;
}


@media (max-width: 768px) {
  .skills-container {
    padding: 50px 30px;
  }

  .skills-title h2 {
    font-size: 30px;
  }

  .skills-values {
    flex-direction: column;
    gap: 18px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #1f2937;
}


.skills-section {
  padding: 100px 20px;
}


.skills-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 70px 80px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}


.skills-title {
  margin-bottom: 30px;
}

.skills-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
}


.skills-text {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
}

.skills-text.strong {
  font-weight: 500;
  color: #1e293b;
}


.highlight {
  font-weight: 600;
  color: #2563eb;
}

.emphasis {
  font-weight: 600;
  color: #0f172a;
}


.pill {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 4px;
  background: #eef4ff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}


.skills-values {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.skills-values span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  position: relative;
}

.skills-values span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2563eb;
}
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link:hover .service-item {
  cursor: pointer;
}



@media (max-width: 768px) {
  .skills-container {
    padding: 50px 30px;
  }

  .skills-title h2 {
    font-size: 30px;
  }

  .skills-values {
    flex-direction: column;
    gap: 18px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f1f5f9;
  color: #1f2937;
}

.skills-section {
  padding: 110px 20px;
}


.skills-box {
  max-width: 1150px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}


.skills-header {
  padding: 50px 70px;
  border-bottom: 1px solid #e5e7eb;
}

.skills-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.skills-subtitle {
  font-size: 16px;
  color: #64748b;
}


.skills-body {
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 950px;
}


.highlight-block {
  position: relative;
  padding: 28px 30px 28px 40px;
  background: #f8fafc;
  border-radius: 14px;
}

.highlight-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #2563eb;
  border-radius: 10px;
}

.highlight-block.light {
  background: #ffffff;
  border: 1px dashed #e5e7eb;
}

.highlight-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}

.highlight-block strong {
  color: #0f172a;
}


.chip {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 6px;
  background: #e0ecff;
  color: #1d4ed8;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.chip.dark {
  background: #1d4ed8;
  color: #ffffff;
}


.skills-values {
  display: flex;
  gap: 24px;
  margin-top: 10px;
}

.value {
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid #2563eb;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  .skills-header,
  .skills-body {
    padding: 35px;
  }

  .skills-values {
    flex-direction: column;
    align-items: flex-start;
  }
}


.footer {
  background: linear-gradient(180deg, #0d1626, #0b1322);
  color: #d1d5db;
  padding: 60px 80px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}


.footer h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.underline {
  display: block;
  width: 45px;
  height: 3px;
  background: #4cc3ff;
  margin-bottom: 20px;
}


.contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact i {
  color: #4cc3ff;
  font-size: 16px;
  margin-top: 4px;
  min-width: 18px;
}

/* LINKS */
.footer-links {
  list-style: none;
}

.footer-links li {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.footer-links li:last-child {
  border-bottom: none;
}


.about-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.linkedin {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;


  background: none;
  border: none;
  padding: 0;
  box-shadow: none;


  display: inline-block;
  line-height: 1;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}
.footer-links li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffd400;
}



@media (max-width: 767px) {

  .header {
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
  }

  .logo img {
    height: 42px;
    margin-bottom: 10px;
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .nav a {
    padding: 8px 0;
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #004a99;
    margin-top: 6px;
  }

  .linkedin {
    margin-top: 6px;
  }
}
