/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;     
        }
p{line-height: 1.8;
    /* text-align: justify; */
    font-weight: 300;
    color: #000;
}

        body { 
            font-family: "Roboto", sans-serif;
        }
h5, h3,h4{font-family: 'bell_mtbold'; color: #ff1e00 !important;}
@font-face {
    font-family: 'bell_mtbold';
    src: url('font/bellb-webfont.woff2') format('woff2'),
         url('font/bellb-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
img{max-width: 100%;}
        p{
          font-size: 1.1rem;
        }
        .bg-light.navbar{
         background-color:  rgba(7, 3, 117, 0.8)!important;
        }
        .navbar .nav-link{
          color: #fff!important;
        }
.header {
    position: fixed;
    width: 100%;
    background-color: rgba(7, 3, 117, 0.8)!important;
    padding: 10px 0;
    z-index: 100;
    display: flex;
    align-items: center;
}
        .fixed-top-1{
          width: 100%;
        }
        .title-heading{
          position: relative;
          font-size: 24px;
          color: #CD853F;
        }
        .title-heading::before{
          position: absolute;
          content: "";
          background-image: url(./sep.svg);
          background-repeat: no-repeat;
          bottom: -40px;
          width: 372px;
          height: 100%;
          transform: translate(-50%);
          display: block;
          left: 50%;
        }
        .nav-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-items {
            display: flex;
            gap: 2rem;
        }

        .menu-items a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .menu-items a:hover {
            color: #FFA500;
        }

        .donate-btn {
            background-color: #CD853F;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .donate-btn:hover {
            background-color: #8B4513;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s;
        }

       .hero {
        position: relative;
       }
        /*.hero {
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/02.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 1rem;
        }
        */
        .hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/02.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 1rem;
    background-attachment: scroll;
}

        .hero h1 {
            font-size: 3rem; 
        }

        .hero h2 {
            font-size: 75px;
            font-family: 'bell_mtbold';
            color: #fff; 
        }

.hero h3 {
    font-size: 2.5rem;
    color: #FFA500 !important;
    text-align: right;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

        .cta-buttons {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .cta-btn:hover {
            transform: scale(1.05);
        }

        .visit-btn {
            background-color: #FF6B6B;
            color: white;
        }

        .tour-btn {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
        }

        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .menu-items {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.9);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: right 0.3s;
            }

            .menu-items.active {
                right: 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero h2 {
                font-size: 3rem;
            }

            .hero h3 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }
            
        }
       
    .temple-info {
        background-color: #FFF5EB;
        padding: 5rem 2rem;
        text-align: center;
    }

    .section-title {
        font-size: 3.5rem;
        color: #FF8C00;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
        color: #333;
        max-width: 800px;
        margin: 0 auto 4rem;
        line-height: 1.6;
    }

    .legacy-container {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        gap: 4rem;
        align-items: center;
    }

    .legacy-image {
        flex: 1;
    }

    .legacy-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .legacy-content {
        flex: 1;
        text-align: left;
    }

    .legacy-title {
        font-size: 2.5rem;
        color: #FF0000;
        margin-bottom: 2rem;
    }

    .legacy-content p {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    .immersive-gallery{
          background-color: #FFF5EB!important;
    }
    @media screen and (max-width: 768px) {
        .legacy-container {
            flex-direction: column;
            gap: 2rem;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
        }

        .legacy-title {
            font-size: 2rem;
        }
    }
   
    .architecture-section {
        background-color: #FFF5EB;
        padding: 5rem 2rem;
    }

    .architecture-container {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        gap: 4rem;
        align-items: center;
    }

    .architecture-content {
        flex: 1;
    }

    .architecture-content p {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .architecture-images {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .arch-img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .arch-img:hover {
        transform: scale(1.05);
    }

    @media screen and (max-width: 768px) {
        .architecture-container {
            flex-direction: column-reverse;
            gap: 2rem;
        }

        .architecture-content {
            text-align: center;
        }
    }
   
    .deities-section {
        background-color: #FFF5EB;
        padding: 5rem 2rem;
        text-align: center;
    }

    .deities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 3rem auto;
        padding: 0 1rem;
    }

 .deity-card {
    background: #FEF3EF;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: solid 1px red;
}

    .deity-card:hover {
        transform: translateY(-10px);
    }

    .deity-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .deity-name {
        color: #FF0000;
        font-size: 1.5rem;
        margin: 1rem 0;
        padding: 0 1rem;
    }

    .deity-description {
        color: #444;
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem 1.5rem;
    }

    .coming-soon {
        opacity: 0.7;
    }

    @media screen and (max-width: 768px) {
        .deities-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .deity-image {
            height: 200px;
        }
    }
   
    .spiritual-section {
        background-color: #FFF5EB;
        padding: 5rem 2rem;
        text-align: center;
    }

    .activities-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 3rem auto;
        padding: 0 1rem;
    }

    .activity-card {
        display: flex;
        background: #FFFFFF;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .activity-card:hover {
        transform: translateY(-5px);
    }

    .activity-image {
        width: 40%;
        object-fit: cover;
    }

    .activity-content {
        width: 60%;
        padding: 1.5rem;
        text-align: left;
    }

    .activity-title {
        color: #FF0000;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .activity-description {
        color: #444;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

.timing-chips {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: row;
}

 .timing {
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.timing .day {
    background-color: #F0F0F0;
    padding: 0 15px;
    line-height: 35px;
    border-radius: 40px;
}
.text-decoration-none {
    text-decoration: none!important;
    color: #F7931E;
}

    .day {
        color: #FF8C00;
        font-weight: bold;
        font-size: 0.8rem;
    }

.time {
    color: #444;
    font-size: 0.8rem;
    white-space: nowrap;
}

    @media screen and (max-width: 992px) {
        .activities-container {
            grid-template-columns: 1fr;
        }
    }

    @media screen and (max-width: 768px) {
        .activity-card {
            flex-direction: column;
        }

        .activity-image {
            width: 100%;
            height: 200px;
        }

        .activity-content {
            width: 100%;
        }
    }
            .temple-guidelines {
            background-color: #FFF5EE;
            padding: 4rem 2rem;
        }

        .guidelines-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 1rem;
        }

        .guideline-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .guideline-card:hover {
            transform: translateY(-5px);
        }

        .guideline-card img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 1rem;
        }

        .guideline-card h3 {
            color: #FF6B47;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .guideline-card p {
            color: #333;
            font-size: 1rem;
            line-height: 1.5;
        }

        @media screen and (max-width: 768px) {
            .guidelines-container {
                grid-template-columns: 1fr;
            }
        }
                .vr-experience {
            background-color: #FFF5EE;
            padding: 4rem 2rem;
        }

        .vr-features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 1rem;
        }

        .vr-feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .vr-feature-card:hover {
            transform: translateY(-5px);
        }

        .vr-feature-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 60px;
            margin-bottom: 1.5rem;
        }

        .vr-feature-card h3 {
            color: #FF6B47;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .vr-feature-card p {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .vr-btn {
            background-color: #FF6B47;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .vr-btn:hover {
            background-color: #ff4f25;
        }

        @media screen and (max-width: 768px) {
            .vr-features-container {
                grid-template-columns: 1fr;
            }

            .vr-feature-card {
                padding: 1.5rem;
            }
        }
                .volunteer-opportunities {
            background-color: #FFF5EE;
            padding: 4rem 2rem;
        }

        .volunteer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 1rem;
        }

        .volunteer-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .volunteer-card:hover {
            transform: translateY(-5px);
        }

        .volunteer-icon {
            width: 100px;
            height: 100px;
            margin-bottom: 1.5rem;
        }

        .volunteer-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .volunteer-card h3 {
            color: #FF6B47;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .volunteer-card p {
            color: #333;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .time-commitment {
            background-color: #f0f0f0;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }

        .time-commitment span {
            color: #666;
            font-size: 0.9rem;
        }

        .volunteer-btn {
            background-color: #FF6B47;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .volunteer-btn:hover {
            background-color: #ff4f25;
        }

        @media screen and (max-width: 768px) {
            .volunteer-grid {
                grid-template-columns: 1fr;
            }

            .volunteer-card {
                padding: 1.5rem;
            }
        }
.text-orange {
    color: #E67E22;
}

.btn-orange {
    background-color: #E67E22;
    color: white;
}

.btn-orange:hover {
    background-color: #D35400;
    color: white;
}

.immersive-gallery .card {
    transition: transform 0.3s ease;
}

.immersive-gallery .card:hover {
    transform: translateY(-5px);
}

.gallery-filter .btn {
    transition: all 0.3s ease;
}

.gallery-filter .btn.active {
    background-color: #E67E22;
    color: white;
    border-color: #E67E22;
}

/*********Raj*************/

.activity-card {
    border-radius:50px;
    border: solid 1px #ED1C24;
}
.patter-one {
    background-image: url("images/pattern.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-repeat: repeat-x;
}
.section-title {
    background-image: url("images/header-down.svg");
    text-align: center;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 30px;
    font-weight: 300;
}
.section-subtitle {
    font-size: 20px;
    color: #000;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    text-align: center;
}
button.btn.btn-outline-secondary.px-4.rounded-pill.ms-2 {
    background-color: #fff;
    border: 0;
}
.gallery-filter.text-center.mb-5 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 !important;
}
.\33 d-lokkin {
    margin-left: auto;
    margin-right: 50px;
}
.\33 d-lokkin img {
    width: 220px;
}
 
.gallery-filter.text-center.mb-5 { 
    margin: 0 !important;
}
.card.rounded-4 img {
    border-radius: 50px;
    border: solid red 1px;
}
.card.rounded-4.overflow-hidden.border-0.shadow-sm { 
    background-color: transparent;
}


:root {
    --orange: #FF7722;
}

.text-orange {
    color: var(--orange);
}

.btn-orange {
    background-color: var(--orange);
    color: white;
}

.btn-orange:hover {
    background-color: #e66a1f;
    color: white;
}

.bg-orange {
    background-color: var(--orange);
}
.event-card {
          border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid red;
    }
    .event-card:hover {
      transform: scale(1.02);
    }
    .event-img {
      height: 250px;
      object-fit: cover;
    }
    .event-footer {
      background: #fff;
      padding: 25px 25px;
    }
.event-footer h5 {
    font-family: 'bell_mtbold';
    color: #ff1e00;
    font-size: 25px;
}
    .event-date {
      font-size: 0.9rem;
      color: #888;
    }
    .testimonial {
      font-style: italic;
      font-size: 1rem;
    }
    .stars {
      color: #f39c12;
    }
    .section-divider {
      border-top: 2px solid #ff9800;
      width: 80px;
      margin: auto;
    }
    .title-highlight {
      color: #e65100;
    }




    .background-section {
      height: 100vh;
      background-image: url('./images/02.jpg');
      background-size: cover;
      background-position: center;
      transition: background-image 0.5s ease-in-out;
    }

    /* Toggle Switch */
    .switch {
      position: absolute;
      bottom: 20px;
      left: 20px;
      display: inline-block;
      width: 60px;
      height: 34px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #ccc;
      transition: .4s;
      border-radius: 34px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 26px; width: 26px;
      left: 4px; bottom: 4px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background-color: #2196F3;
    }

    input:checked + .slider:before {
      transform: translateX(26px);
    }
    section.reach-us.py-5.bg-light {
    background-image: url(./images/001.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.cent-divs {
    text-align: left;
    max-width: 580px;
    margin: 0 auto;
}
a.btn:hover {
    opacity: .9;
}
.card {
    border-radius: 40px;
    border: solid 1px red !important;
    border-radius: 50px !important;
}
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.cent-sha {
    text-align: center;
    margin: 0 0 15px 0;
}
section.temple-informa.py-5.patter-one.pb-10 {
    padding-bottom: 20px !important;
}
button.btn.btn-outline-secondary.px-4.rounded-pill.ms-2:hover {
    background-color: #eaa759;
}


@media screen and (max-width: 990px) {
 
.gallery-filter.text-center.mb-5 {
    position: relative; 
    margin: 0 0 20px 0 !IMPORTANT;
}
	.gallery-filter.text-center.mb-5 button {
    padding: 5px 10px !important;
}
.\33 d-lokkin { 
    display: none; 
}
	.section-title {
    font-size: 35px !important;
    color: #FF8C00;
    margin-bottom: 1rem;
}
	.gallery-filter.text-center.mb-5 { 
    overflow-x: auto;
}
	button.navbar-toggler {
    background-color: #fff;
}
 .navbar-expand-lg .navbar-nav {
    flex-direction: column;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
	a.btn.btn-primary {
    margin: 0 !important;
}
	.hero h2 {
    font-size: 30px;
}
	.hero h1 {
    font-size: 25px;
}
.hero h3 {
    font-size: 30px;
    text-align: center;
}
	.hero h2 {
    font-size: 30px;
    text-align: center;
}
	.hero h1 {
    font-size: 25px;
    text-align: center;
}
	section.hero.min-vh-100.d-flex.align-items-center.text-center.text-white a.btn {
    padding: 10px 20px !important;
    font-size: 16px;
}
}





/* ============================================= */
@media(max-width: 991px) {
   .navbar-collapse {
    background: #e47e3ddb;
    box-shadow: 0 0 10px #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    text-align: center;
    
}
.navbar-nav {
    padding: 70px 20px 20px;
}

.navbar-expand-lg .navbar-nav {
    justify-content: center;
    align-items: center;
}

.navbar-toggler {
    z-index: 9;
}
}


@media(max-width:767px){
    p {
    font-size: 16px !important;
}
    .header {
    background: transparent !important;
    padding: 0;
}

.header .container {
    max-width: 100%;
}

.navbar-toggler {
    border-radius: 0 4px 4px 0;
    margin-left: -12px;
    position: relative; box-shadow: -4px 1px 30px 10px #00000054;
}
.patter-one {
    background-size: contain;
}
.section-title {
    background-size: 170px;         font-size: 26px !important;
    padding-bottom: 18px; margin-bottom: 12px !important;
}
.temple-informa img {
    width: 100%;
    margin-bottom: 25px;
}
.architecture-container {
    gap: 25px;
}
.cent-sha {
    width: 170px;
    margin: 0 auto 36px;
}
.lead.mb-5 {
    margin-bottom: 22px !important;
}
.temple-informa h3, .architecture-content h3 {
    margin-bottom: 18px;
}
p:last-child {
    margin-bottom: 0;
}
.architecture-content p {margin-bottom: 1rem;}
.section-subtitle {margin: 0 auto 25px;}
.deities-grid {margin: 0;}
.activities-container {padding: 0 1rem;}
.activities-container {
    margin-top: 10px;
}   
.upcoming-event p.mb-5 {
    margin-bottom: 22px !important;
}
.gallery-filter.text-center.mb-5 {
    overflow: unset;
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
}

/*  */
.architecture-section {
    padding: 0px 16px 25px;
}

.deities-section {
    padding: 48px 16px 50px;
}

.patter-one {
    padding: 48px 16px 50px;
}

.activities-container {
    margin-bottom: 0;
}

.upcoming-event .container {
    padding: 0 !important;
}


/* banner */
.hero {
    background-image: url('./images/02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000052;
}
.hero .container>div {
    position: relative;
}

/* container padding */
.deities-grid {
    padding: 0;
}

.temple-informa .container {
    padding: 0;
}

.architecture-images img {
    width: 100% !important;
}

.activities-container {
    padding: 0;
}

.immersive-gallery .container {
    padding: 0;
}
}

@media(max-width: 575px) {
    .hero .container {
        padding: 0;
    }
    .hero{padding-left: 0; padding-right: 0;}
    .hero h1, .hero h2, .hero h3 {
    text-shadow: 2px 3px 1px #000;
}

.timing {
    background-color: #F0F0F0;
    padding: 0 8px;
    border-radius: 8px;
}

.timing .day {
    background: unset;
    padding: 0;
    line-height: 30px;
}

.gallery-filter.text-center.mb-5 {
    justify-content: center;
}

.gallery-filter button {
    margin-left: 4px !important;
}

.gallery-filter button:first-child {
    margin-left: 0 !important;
}
.reach-us h5 img {
    width: 20px;
    margin-top: -4px;
    height: 20px;
    object-fit: contain;
}
}
.navbar .nav-link:hover {
    border-bottom: 1px solid #fff;
}