
body {
    background: linear-gradient(to bottom right, #c6ddeb, #eaf6fc);
    font-family: "Titillium Web", sans-serif;
    margin: 0;
    padding: 0;
}

#more-info{
  font-size:15px;}

.header {
    background-color: #2f2f2f;
    border-radius: 0 0 20px 20px;
    height: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#aboutmetext {
    color: #ffffff;
    font-size: 4.8em;
    margin: 0;
    text-align: center;
    margin-left:650px;
}
.header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading-text {
    color: #ffffff;
    font-size: 2.8em;
    margin: 0;
}

.lil-text {
    color: #ffffff;
    font-size: 1em;
    margin: 6px 0 0;
}

.button-container {
    display: flex;
    gap: 8px;
}

#aboutme, #contactme, #services {
    background-color: #a3d7de;
    color: #1a1717;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Titillium Web", sans-serif;
    font-weight: bold;
}

#aboutme:hover, #contactme:hover, #services:hover {
    background-color: #61bcce;
}


#all_cards_projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
}

.card {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #00acc1;
    box-shadow: 0 6px 12px rgba(0, 172, 193, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    background-color: #f0f8ff;
    box-shadow: 0 12px 24px rgba(0, 172, 193, 0.35);
    transform: scale(1.05);
    color: #222;
}

.card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
#header-aboutme {
    background-color: #2f2f2f;
    width:500px;
    height:100px;
    color:#ffffff;
    font-size: 2.3em;
    padding: 20px;
    margin-top: -45px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card.contact-card {
  height:70px;
  overflow: hidden;
}

.card.abtmecard.two-column{
    height:330px;
}


#abtmetxt{
    padding-left: 40px;
    margin-top: 10px;
}

.abtmebody{
    margin-left: 20px;
    font-size: 1.4em;
}
.card.abtmecard {
    text-align: left;
    width:1400px;
    margin-bottom: 10px;
    margin-left: 20px;
}

.card.abtmecard:hover{
    transform: scale(1.01);
}
.two-column {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-panel, .middle-panel, .right-panel {
  flex: 1;
  min-width: 200px;
}

.quote-box {
  font-style: italic;
  text-align: center;
  padding: 20px;
  background-color: #f4faff;
  border-left: 4px solid #00acc1;
  margin-top:100px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 172, 193, 0.15);
}

