/* File: Portfolio/Style.css */

/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    background: radial-gradient(circle, #e6e6e6 0%, #d1cccc 100%);
    color: #111;
}
nav {
  border: 2px solid #007bff; /* blue border around */
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  background-color: #000;
} 
 nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #007bff;
}
.btn-contact {
  border: 1.8px solid white;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: black;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-contact:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}
.hero-section {
    display: flex;
    min-height: 80vh;
    width: 100vw;
    position: relative;
}
.hero-left {
    background: #d1cccc;
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    min-width: 0;
}
.hero-right {
    background: #000;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
}
.hero-content {
    max-width: 420px;
    margin-left: 40px;
}
.hero-logo {
    width: 96px;
    margin-bottom: 32px;
}
.hero-hi {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.hero-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}
.hero-title {
    font-size: 1.1rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 2rem;
}
.hero-socials a {
    display: inline-block;
    margin-right: 18px;
    font-size: 1.7rem;
    color: #222;
    background: #eee;
    border-radius: 6px;
    padding: 8px 12px;
    transition: background 0.2s;
}
.hero-socials a:hover {
    background: #bbb;
    color: #000;
}
.hero-photo {
    width: 320px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.95rem;
    opacity: 0.7;
    text-align: center;
    width: 80%;
}
.it-berries-section {
position: relative;
background: #1a1a1a;
color: #fff;
padding: 48px 0 36px 0;
overflow: hidden;
border-top: 2px solid #ccc;
}

.it-berries-content {
max-width: 900px;
margin: 0 auto;
padding: 0 32px;
position: relative;
z-index: 2;
}

.it-berries-section h2 {
letter-spacing: 3px;
font-size: 2rem;
font-weight: 700;
margin-bottom: 18px;
}

.it-berries-section p {
font-size: 1rem;
line-height: 1.5;
margin-bottom: 32px;
}

.read-more-btn {
background: none;
border: none;
color: #fff;
font-weight: 600;
letter-spacing: 1px;
font-size: 1rem;
padding: 0 0 0 0;
position: relative;
cursor: pointer;
transition: color 0.2s;
}

.read-more-btn::after {
content: "";
display: inline-block;
margin-left: 18px;
vertical-align: middle;
border-left: 2px solid #fff;
height: 18px;
}

.read-more-btn:hover {
color: #007bff;
}

.it-berries-bg-text {
position: absolute;
right: 0;
bottom: -30px;
font-size: 10rem;
color: #7171e9;
font-weight: 900;
opacity: 0.25;
z-index: 1;
pointer-events: none;
user-select: none;
line-height: 1;
transform: rotate(-22deg);
}

@media (max-width: 700px) {
.it-berries-bg-text {
font-size: 4.5rem;
bottom: 0;
}
.it-berries-content {
padding: 0 12px;
}
}
    @media (max-width: 900px) {
        .hero-section {
            flex-direction: column;
        }
        .hero-left, .hero-right {
            clip-path: none;
            width: 100%;
            min-height: 300px;
        }
        .hero-content {
            margin-left: 0;
            margin-top: 40px;
        }
    }

.contact-wrapper {
    max-width: 600px;
    margin: 40px auto 0 auto;
    padding: 32px 16px 0 16px;
}

.contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-title-box {
    display: inline-block;
    border: 3px solid #111;
    padding: 18px 54px 10px 54px;
    margin-bottom: 18px;
    font-size: 1.6rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    background: transparent;
}

.contact-desc {
    font-size: 1rem;
    color: #222;
    margin-bottom: 18px;
    margin-top: 0;
}

.contact-divider {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 3px solid #111;
    background: transparent;
    padding: 14px 12px;
    font-size: 1rem;
    color: #222;
    outline: none;
    resize: none;
    font-family: inherit;
    margin-bottom: 0;
}

.contact-form textarea {
    min-height: 100px;
    max-width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.contact-submit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.contact-submit-divider {
    display: inline-block;
    border-left: 2px solid #111;
    height: 24px;
    margin: 0 12px;
}

.contact-form button[type="submit"] {
    background: none;
    border: none;
    color: #111;
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 1rem;
    padding: 0 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.contact-form button[type="submit"]:hover {
    color: #007bff;
}

@media (max-width: 700px) {
    .contact-wrapper {
        max-width: 98vw;
        padding: 12px 2vw 0 2vw;
    }
    .contact-title-box {
        padding: 12px 18px 6px 18px;
        font-size: 1.1rem;
    }
}

.skills-section {
    max-width: 700px;
    margin: 40px auto 0 auto;
    padding: 24px 12px;
    text-align: center;
}

.skills-group {
    margin-bottom: 48px;
}

.skills-group h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.skills-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 48px;
    margin-bottom: 12px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.skill-item img {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
    object-fit: contain;
}

.skill-item span {
    font-size: 0.98rem;
    letter-spacing: 1px;
    color: #444;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .skills-section {
        padding: 12px 2vw;
    }
    .skills-icons {
        gap: 24px 18px;
    }
    .skill-item img {
        width: 38px;
        height: 38px;
    }
}
.experience-section {
  margin: 40px auto;
  max-width: 900px;
  background: #f7f7fb;
  border-radius: 10px;
  padding: 32px 24px;
}

.experience-row {
  display: flex;
  gap: 32px;
}

.experience-left {
  flex: 1;
  min-width: 180px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.company-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.company-duration {
  font-size: 1rem;
  color: #666;
}

.experience-right {
  flex: 2.5;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.job-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 2px;
  color: #222;
}

.job-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}
.centered-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 700px) {
  .experience-row {
    flex-direction: column;
    gap: 12px;
  }
  .experience-section {
    padding: 18px 8px;
  }
}
