/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #c9e6f8, #c9e6f8);
    color: #333;
}
html {
  scroll-behavior: smooth;
}


.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-pic {
    width: 120px; /* Default size */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    transition: transform 0.3s ease; /* Smooth scaling effect */
    cursor: pointer; /* Change cursor to pointer */
}

.profile-pic:hover {
    transform: scale(1.1); /* Scale up on hover */
}


.profile-pic:active {
    transform: scale(1.05); /* Slightly reduce size on click */
}
/* For phones and small devices */
@media only screen and (max-width: 600px) {
    .profile-pic {
        width: 100px; /* Smaller size for phones */
        height: 100px;
    }
}

/* For tablets and medium devices */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .profile-pic {
        width: 120px; /* Medium size for tablets */
        height: 120px;
    }
}

/* For large screens like PCs */
@media only screen and (min-width: 1025px) {
    .profile-pic {
        width: 150px; /* Larger size for PCs */
        height: 150px;
    }
}

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

header h1, header h2, header h3 {
    margin: 10px 0; /* Adjust margins for spacing */
}

.download-link {
    display: flex;
    justify-content: center; /* Centers the button horizontally */
    margin: 0px 0; /* Adds some vertical spacing */
}


.download-link a {
    text-decoration: none;
    color: #070a0f;
    padding: 10px 20px;
    border-radius: 5px;
}

section {
    margin: 20px 0;
}

section h2 {
    margin-top: 0;
    border-bottom: 2px solid #174aaa;
    padding-bottom: 10px;
    color: #174aaa;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 5px 0;
}

a {
    color: #174aaa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.cert-item {
    text-align: left;
    margin-bottom: 20px;
}

.cert-image {
    max-width: 150px;
    height: auto;
    margin-top: 10px;
}
.skill-title {
    font-size: 1.125em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}
.side-menu {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #174aaa;
  font-weight: bold;
}

.side-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: none;
}

.side-menu.show ul {
  display: block;
}

.side-menu li {
  margin: 8px 0;
}

.side-menu a {
  color: #174aaa;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
}

.side-menu a:hover {
  text-decoration: underline;
}



