* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,
body {
    background: linear-gradient(to bottom, #EDF1F2, #D5E2F2);
    font-family: 'Roboto', sans-serif;
                scroll-behavior: smooth;
}

h1 {
    font-size: 40px;
    font-weight: bold;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 60px;
}

h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffc107;
}

h5.fs-2 {
    padding: 0 20px;
    color: #fff;
}

h5 {
    font-size: 24px;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    font-weight: 500;
}

p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color : #FFF8E7;
}

label {
    font-size: 20px;
    font-weight: 600;
    color: #0e0b0b;
    color: #0a4b44;
}

  
        
        .img_section {
            background: url('img/bg-01-img.webp') center/cover no-repeat;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        /*.img_overlay {*/
        /*    position: absolute;*/
        /*    inset: 0;*/
        /*    background: rgba(0, 0, 0, 0.5);*/
        /*    transform-origin: top;*/
        /*}*/


.home h2,
.about_heading h2{
    color: #ffc107;
}

/*.about p {*/
/*       color: #FFF8E7;*/

/*}*/

.top-nav {
    background-color: #0F6157;
    color: white;
    padding: 15px 0;
}

.top-nav a {
    color: white;
    text-decoration: none;
}

.top-nav-icons a {
    margin: 0 10px;
    font-size: 20px;
    color: #FFC72C;
}

.top-nav-icons a:hover {
    color: white;
}

.navbar {
    background-color: #FFC72C;
}

a.nav-link.active {
    font-weight: 700;
}

.navbar-expand-lg .navbar-nav {
    gap: 20px;
}

a.nav-link:hover {
    border-bottom: 2px solid #0a4b44;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}

a.nav-link:active {
    font-weight: bold;
}

.navbar-nav a {
    font-size: 20px;
    font-weight: 400px;
    color: #0a4b44;
}

/* Navbar Toggle Button */
.navbar-toggler {
    display: flex;
    flex-direction: column;
    border: none;
    background: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Bars */
.navbar-toggler .bars {
    display: block;
    /* Ensure spans are blocks */
    background-color: #0F6157;
    height: 3px;
    border-radius: 100px;
    margin-bottom: 6px;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* Bar Width */
.navbar-toggler .first_bar,
.navbar-toggler .third_bar {
    width: 24px;
}

.navbar-toggler .sec_bar {
    width: 14px;
    transition: opacity 0.4s ease-in-out;
}

/* Remove margin from last bar */
.navbar-toggler .bars:last-child {
    margin-bottom: 0;
}

/* Active State */
.navbar-toggler.active_new {
    transform: scale(1.1);
}

.navbar-toggler.active_new .first_bar {
    transform: translateY(9px) rotate(225deg);
    width: 24px;
    /* Ensure width remains constant */
}

.navbar-toggler.active_new .sec_bar {
    opacity: 0;
}

.navbar-toggler.active_new .third_bar {
    transform: translateY(-9px) rotate(-225deg);
    width: 24px;
    /* Ensure width remains constant */
}

.navbar-toggler:focus {
    border: 0;
    box-shadow: none;
}

.banner-bg {
    min-height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
}

.profile-bg {
    max-width: 1100px;
    border-radius: 20px;
    background-color: #0c706a;
    color: #ffd542;
    padding: 50px 40px;
    box-shadow: 10px 10px 10px #00000017;
    margin: 100px auto;
}

.contact-box {
    background-color: #0d635d;
    color: white;
    padding: 50px 30px;
    border-radius: 0 30px 30px 0;
    /*min-height: 630px;*/
    height: 100%;
}

.contact-box .text_p {
    font-size: 16px;
}

.bg_form {
    background-color: #ffc107;
    padding: 20px;
    border-radius: 30px 0 0 30px;
}

.bg_form .btn {
    background-color: #0a4b44;
    color: #ffc107;
    font-size: 20px;
    font-weight: 600;
}

.social-icons a {
    color: #0d635d;
    background: #ffc107;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 5px;
    font-size: 18px;
    text-decoration: none;
}

.marquee_container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #0F6157;
}

.marquee_container i {
    color: #ffc107 !important;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
    }
}

h5 {
    display: inline-block;

}

.footer {
    background-color: #0F6157;
    color: white;
    padding-top: 50px;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #FFC72C;
}

.footer-icons a {
    margin: 0 8px;
    font-size: 22px;
    color: #FFC72C;
}

.footer-icons a:hover {
    color: white;
}

.footer-bottom {
    background-color: #FFC72C;
    padding: 15px 0;
    color: black;
    font-weight: bold;
    border-radius: 20px 20px 0 0;
}

.footer-bottom a {
    color: black;
    font-weight: bold;
}

.subscribe-input {
    background-color: white;
    border: none;
    padding: 10px;
    width: 80%;
    border-radius: 5px;
}

.subscribe-btn {
    background-color: #FFC72C;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    margin-left: 5px;
}


.service-card {
    width: 330px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-img:hover {
    transform: scale(1.2) rotate(5deg);
    transition: all 0.3s ease-in-out;
    cursor: pointer
}

.service-info {
    padding: 15px;
    background: white;
    border-top: 5px solid #b29b7f;
    position: relative;
}

.service-info h5 {
    font-weight: bold;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: #0d635d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    bottom: 15px;
    text-decoration: none;
}

.icon-btn i:hover {
    color: #FFC72C;
    transition: all 0.3s ease-in-out;
    rotate: 320deg;
}

.icon-btn:hover {
    background: #0a4b44;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #FFC72C;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #0F6157;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #FFC72C;
}

.faq_section p {
    color: #212529;
}