.feedbackSection {
    background-color: white;
    min-height: 350px;
    font-weight: 400;
    text-align: center;
    align-content:center;
}
.Baybay {
  padding-top: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 0.8em;
  font-family: Takipsilim_baybayin_font;
  font-weight: bold;
}
.hero-banner {
    height: 600px;
    background-image: url('../img/herobannerbg.webp');
    background-position: right;
    background-size: cover;
    background-color: #8b93a3;
}
.small-section {
    color: black;
    text-shadow: 0px 0px 4px #0a55c2;
    position: relative;
    width: 50%;
    height: min(88px);
    margin: 20px auto;
    padding: 20px 0;
}

.upper-left {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5em;
  text-align: left;
}

.lower-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2.5em;
  text-align: right;
}

.upper-left, .lower-right {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    color: lightblue;
    text-shadow: 0px 0px 4px black;
}

.upper-left {
  transform: translate(20%, -50%);
}

.lower-right {
  transform: translate(-20%, 50%);
}


@media (min-width: 1200px) {
  .small-section {
    width: 39%;
  }
}



@media (max-width: 600px) {
    .small-section {
        width: 86%;
        height: auto;
        margin: 10px auto;
        padding: 10px 0;
    }
  .lower-right {
    bottom: 0px;
    right: 25px;
  }
    .upper-left {
        top: 0px;
        left: 25px;
    }
    .upper-left, .lower-right {
        font-size: 2em;
        transform: none;
        position: relative;
        text-align: center;
        
    }
}


@media (max-width: 768px) {
    .para-whtShadow {
        background: rgba(35,32,32,0.62);
        border-radius: 9px;
        padding: 10px;
        font-size: 15px;
        text-shadow: 0px 0px 4px lightblue;
        color: rgb(241,244,247) !important;
    }
    .black-whteShdow {
        text-shadow: 0px 0px 4px lightblue;
        color: rgb(255,255,255) !important;
        font-size: 23.4px;
    }
}

.para-whtShadow {
    text-shadow: 0px 0px 4px lightblue;
    color: rgb(0,0,0);
}

@media (max-width: 400px) {
    .black-whteShdow {
       
        font-size: 1.2rem !important; 
    }
    .para-whtShadow{
        font-size: 0.8rem !important;
    }
}
@media (max-width: 450px ){

    .skills-column {
        min-width: auto !important;
    }

    .skills-title {
        font-size: 2rem !important;
    }

    .instruction {
        font-size: .8rem !important;
    }

    .skill {
        font-size: 1rem !important;
        margin: 10px 0px !important;
    }

    .skills-column h3 {
        font-size: 1.5rem !important;
    }
    .bg-heading{
        font-size : 1.5rem !important;
    }
    .bacground-text {
        margin: 0px 10px !important;
        font-size: .7rem !important;
    }
    .qoute-heading{
        font-size: large !important;
    }

}
.black-whteShdow {
    text-shadow: 0px 0px 4px lightblue;
    color: rgb(8,8,8);
    font-size: 23.4px;
}





.skill-card {
    min-width: 200px;
    width: 200px; /* Wider card */
    height: 250px; /* Fixed height for all cards */
    min-height: 250px;
    border: none;
    background: #E1F5FE; /* Contrast background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px; /* Less rounded corners */
    transition: transform 0.5s ease, box-shadow 0.5s ease, height 0.7s ease; /* Smooth transition */
    overflow: hidden;
    position: relative;
    margin: 10px; /* Add some spacing between cards */
}

    .skill-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        height: auto; /* Expand height on hover */
    }

    .skill-card img {
        width: 100%;
        height: 100px; /* Image height */
        object-fit: cover;
        border-top-left-radius: 10px; /* Rounded corners for top */
        border-top-right-radius: 10px;
    }

    .skill-card .content {
        padding: 10px;
        text-align: center;
    }

    .skill-card h3,
    .skill-card p {
        margin: 0; /* Remove margins */
        text-align: left; /* Align text to the left */
    }

    .skill-card h3 {
        font-size: 16px;
        color: #333;
        margin-bottom: 5px; /* Add some spacing below heading */
    }

    .skill-card p {
        font-size: 12px;
        color: #666;
        height: 55px; /* Approximately three lines of text */
        overflow: hidden; /* Hide overflow text */
        text-overflow: ellipsis; /* Add ellipsis */
        white-space: normal; /* Allow wrapping */
        display: -webkit-box; /* For multiline ellipsis */
        -webkit-line-clamp: 3; /* Show 3 lines */
        -webkit-box-orient: vertical; /* Vertical box orientation */
        transition: height 0.7s ease; /* Smooth transition */
    }

    .skill-card:hover p {
        -webkit-line-clamp: unset; /* Remove line clamp on hover */
        height: auto;
    }

.stars {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

    .stars i {
        color: gold;
        margin: 0 1px;
    }




.skills-carousel {
    height: 300px; /* Increased height for more spacing */
    margin: 20px auto 0px auto; /* Added top and bottom margin for spacing */
    overflow: hidden;
    position: relative;
}



    .skills-carousel::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }

    .skills-carousel::before {
        left: 0;
        top: 0;
    }

.carousel-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(220px * 24); /* Adjust according to the number of skill cards */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 12));
    }
    /* Adjust according to the number of skill cards */

}



/* Main Title Styles */
.skills-title {
    font-family: 'Changa One', sans-serif;
    font-size: 55px;
    color: white;
    text-shadow: 0px 0px 4px #0a55c2;
    margin-bottom: 10px;
}

/* Skills and Skills Title Styles */
.skills-section {
    display: flex;
    flex-wrap: wrap;
}

.skills-column {
    flex: 1;
    min-width: 300px;
    padding: 0px 30px 30px 30px;
}

    .skills-column h3 {
        font-family: 'Changa One', sans-serif;
        font-size: 40px;
        color: lightblue;
        text-shadow: 0px 0px 4px black;
        margin-top: 15px; /* Added space on top */
    }

.skill {
    font-family: 'Roboto', sans-serif;
    color: lightblue;
    text-shadow: 0px 0px 4px black;
    margin: 10px 20px 10px 20px;
    position: relative;
    cursor: pointer;
    background-color: #ffffff46;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgb(8,8,8);
}
.instruction {
    color: lightblue;
    text-shadow: 0px 0px 4px black;
    font-size: 15px;
}


/* Skill Description Styles */
.skill-description {
    color: black;
    display: none;
    position: absolute;
    background-color: #f8f9fa;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-top:10px;
    text-align:left !important;
    text-shadow : 0 0 black;
}

.skill:hover .skill-description {
    display: block;
}

@media (max-width: 768px) {
    .skills-section {
        flex-direction: column-reverse;
    }
}




    .qoute-box {
        background-color: rgba(255,255,255,0.51);
        padding: 10px;
        border-radius: 10px;
    }

@media (min-width: 992px) {
    .qoute-heading {
        font-size: xx-large !important;
    }
}

.qoute-heading {
    font-size: x-large;
}

.bg-heading {
    font-family: Kalam, serif;
    font-size: 2em;
    padding: 40px 0px 40px 0px;
    margin: 0px !important;
    background-color: #6f7274;
    color: rgb(255,255,255);
    text-shadow: 2px 3px 11px #000000;
}

.author {
    margin-bottom: 0px;
}

.bacground-text {
    margin: 0px 10px !important;
    text-shadow: 0 0 4px rgba(255,255,255,0.6);
    font-size: 1.2em;
}

.parallax-1 {
    background-image: url("../../assets/img/IMG_20240124_075521.jpg");
    background-position: right;
    background-size: cover;
    height: 450px;
    background-attachment: fixed;
}

.parallax-2 {
    background-image: url("../../assets/img/IMG_20230727_152301.jpg");
    background-position: right;
    background-size: cover;
    background-attachment: fixed;
}

