/* @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');


.about h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.4); /* Solid black with slight transparency */
    border-radius: 10px;
    text-decoration: none;
}


.about a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    /* text-decoration: underline; */
}

.about p {
    flex: 1;
    min-width: 300px;
    font-size: 18px;
    color: white;
    line-height: 1.6;
    background-color:  rgba(0, 0, 0, 0.4); /* Solid black background */
    padding: 20px;           /* Adds space around the text */
    border-radius: 10px;     /* Optional: rounded corners */
}

.section-heading {
    font-size: 40px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    text-align: center;
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.4); /* or #000 for solid black */
    border-radius: 10px;
}

.section-heading {
    font-size: 40px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    text-align: center;
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.4); /* or #000 for solid black */
    border-radius: 10px;

    /* Zoom effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1);
}

.section-heading:hover {
    transform: scale(1.05); /* Slight zoom */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Optional shadow */
}




.action-bar {
    display: flex;
    gap: 10px;
    background: #000;
    padding: 10px;
}

.action-btn {
    background-color: #2b2b2b;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.action-btn:hover {
    background-color: #3a3a3a;
}

.divider {
    height: 20px;
    width: 1px;
    background-color: #555;
    margin: 0 8px;
}

.skills .right .item i {
    font-size: 34px;
    color: #fff;
}

.skills .right .item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #383e45;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}
.guarantee-box {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}


.guarantee-box:hover {
    transform: translateY(-10px); /* moves box slightly upward */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* adds a soft shadow */
}


.item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    min-width: 120px;
    flex: 1 1 150px;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.item:hover {
            transform: matrix();
            background-color: rgba(255, 255, 255, 0.2);
        }

.icon img {
    width: 40px;
    height: 40px;
}

.info h3 {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #fff;
}


.guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* flex-direction: row; */
    gap: 90px;
    margin-top: 20px;
}

.guarantee .item {
    background-color: transparent;
    color: white;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 300px;
    gap: none;
}

.guarantee .item:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.3);
}

.guarantee .icon {
    margin-bottom: 10px;
}

.guarantee .info h3 {
    margin: 0;
    display: inline;
}

.hover-underline span {
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hover-underline span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: white; /* or any color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hover-underline span:hover::after {
  transform: scaleX(1);
}

#a_start{
    padding-left: 60px;
}

.about h1 {
    font-size: 40px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.4); /* Solid black with slight transparency */
    border-radius: 10px;
    text-decoration: none;

    /* Added for zoom transition */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1);
}

/* Hover effect */
.about h1:hover {
    transform: scale(1.05); /* Slight zoom in */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Optional: Adds a glow effect */
}

