@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg-color: #fff;
    --text-color: #000;
}

.dark-mode {
    --bg-color: #000;
    --text-color: #fff;
}

::-webkit-scrollbar {
    width: 0.6rem;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #006d77;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}


body {
    font-family: "Montserrat", sans-serif !important;
}



.main_button{
    background-color: #006d77;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.main_button:hover {
    background-color: #00575e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Focused and Active State */
.main_button:focus,
.main_button:active {
    outline: none;
    background-color: #004b4f;
}

.banner h1 {
    font-weight: 600;


}
.navbar .detail_section a{
    text-decoration: none;
    color: #000;
}

.banner h1 span {
    color: #006d77;
}

.banner h4 {
    color: #e29578;
}

@media (max-width:1000px) {
    .banner h2 {
        font-size: 25px;

    }
    .banner p{
        font-size: 16px;
    }
}
@media (max-width:470px) {
    .banner h2 {
        font-size: 16px;

    }
    .banner h4 {
        font-size: 14px;

    }
    .banner p{
        font-size: 13px;
    }
    .social-links a {
        width: 20px;
    height: 20px;
    }
    
    h2{
        font-size: 16px !important;
    }
    p{
        font-size: 13px !important;
    }
    h5{
        font-size: 15px !important;
    }
}



.social-links a {
    font-size: 16px;
    color: #83c5be;
    margin: 0 3px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: 0.3s;
    border: 1px solid #83c5be;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links a i {
    line-height: 0;
}

.social-links a:hover {
    background: #006d77;
    border-color: #006d77;
    color: #fff;
}

/* Blog Card Container */
.blog-card {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card a{
    text-decoration: none;
    color: #006d77;
}
.blog-card a:hover{
    text-decoration: none;
    color: #222;
    text-decoration: underline;
}

/* Hover Effect */
.blog-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}


.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1.1);
}

.blog-card:hover .card-image img {
    transform: scale(1);
}

/* Card Content */
.card-content {
    padding: 15px;
}

/* Card Title */
.card-content h3 {
    font-size: 1.2rem;
    margin: 0;
   
}

/* Card Date */
.card-date {
    font-size: 0.9rem;
    color: #777;
    margin-top: 8px;
}

.service_container h5 {
    color: #006d77;
}

.service_container p {
    color: #444;
}

.service_container i {
    color: #006d77;
}

footer {
    background-color: #00494d;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}
footer a{
    color: #fff;
    text-decoration: none;
}


.about_container ul {
    list-style-type: none;
    padding: 0;
}

.about_container ul li {
    background: #fdf0d5;
    color: #003049;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about_containerul li strong {
    color: #1287b5;
}


.about_container section {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about_container .skills-expertise ul li {
    background-color: #e0f7fa;
}


.about_container.my-philosophy ul li {
    background-color: #fff3e0;
}


.future-goals ul li {
    background-color: #e8f5e9;
}