

.navbar-brand img 
{
    height: 90px;
}





a.btn.signin:hover {
   border: 2px solid white !important;
}




    .contact-right-section {
            position: fixed;
            right: 20px; /* Positioning on the right */
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        .contact-item-box {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            text-decoration: none;
            color: white;
            font-size: 18px;
            font-weight: bold;
        }
        .icon-container {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
        }
        .email-icon-box { background-color: #800080; } /* Purple */
        .phone-icon-box { background-color: #228B22; } /* Green */
        .whatsapp-icon-box { background-color: #25D366; } /* WhatsApp Green */
        
        .icon-container img {
            width: 20px;
            height: 20px;
        }






body {
    font-family: Arial, sans-serif;
}


a {
    text-decoration: none !important;
    color: inherit !important;
}


.btn2 {
    font-family: 'Cormorant', serif !important;
}


nav.navbar.navbar-expand-lg.navbar-dark {
    background: transparent;
    position: relative;
    z-index: 1;
    color: #fff;
}


.navbar-brand span {
    font-family: 'Cormorant', serif;
}

.nav-item {
    font-family: 'Lato', sans-serif;
}

ul.navbar-nav {
    text-align: center;
    margin: auto;
}


.signin {
    color: #fff;
    background-color: #2C3E50;
    border: none !important;
    padding: 8px 20px;
    margin: 10px;
    font-family: 'Lato', sans-serif;
}



.login {
    font-family: 'Lato', sans-serif;
    padding: 6px 20px;
    color: #000 !important;
    background-color: #fff;
}


nav.navbar.navbar-expand-lg.navbar-dark .nav-link {
    color: #d8d8d8;
    font-weight: 700;
}


.hero {
    background: url('../images/home-banner.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    top: -90px;
    font-family: 'Cormorant', serif;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 55px;
}


.hero-content p {
    font-size: 32px;
    width: 65%;
    margin: auto;
}


.btn-custom {
    margin: 10px auto;
    background: #2C3E50CC;
    border: 1px solid #2C3E50CC;
    color: white;
}

.btn-custom:hover {
    background: #E67E22;
    border: 2px solid #E67E22;
    color: black;
}




/* ----------- About Section ---------------- */


.home_about {
    /* padding: 50px 0; */
    padding-bottom: 50px;
    /* background-color: #f9f9f9; */
}

.home_about-image {
    width: 100%;
    border-radius: 10px;
}

.home_about-content,
.home_about-team {
    padding: 20px;
}

.home_about-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1B4F72;
}

.home_about-description,
.home_about-team-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {

    .home_about-content,
    .home_about-team {
        text-align: center;
    }
}



/* -------------Home Section 3 Styling----------------------- */



/* Import Cormorant Font */
/* Import Lato Font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&display=swap');


.home_sec_title {
    text-align: center;
    padding: 40px 0px;
    font-family: 'Cormorant', serif;
}


.home_sec_title h2 {
    font-weight: 700;
    font-size: 40px;
}

.home_sec_title p {
    font-weight: 500;
    font-size: 32px;
    width: 90%;
}


.home_sec3 {
    padding: 50px 0;
    background-color: #f9f5e7;
    /* font-family: 'Cormorant', serif;  */
}

.home_sec3-card {
    border-radius: 8px;
    background-color: #f1ebe1;
    border: none;
    transition: transform 0.3s ease-in-out;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
}

.home_sec3-card:hover {
    transform: translateY(-5px);
}

.home_sec3-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
}


.home_sec3_card_body {
    color: #130101;
    font-family: 'Lato', sans-serif;
    padding-bottom: 40px;
}


.home_sec3_card_body a {
    font-size: 14px;
}

.home_sec3-title {
    /* font-size: 20px; */
    /* padding: 5px 0px 25px 0px; */
    font-size: 18px;
    padding: 10px 0px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}

.home_sec3-text {
    font-size: 16px;
    padding: 15px 0px;
}


.home_load_more {
    margin: 60px auto;
    text-align: center;
}


.home_load_more a {
    background-color: #2C3E50;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: white !important;
    border-radius: 18px;
    padding: 12px 20px;
}



@media (max-width: 992px) {
    .row-cols-md-2 {
        row-gap: 20px;
    }
}

@media (max-width: 768px) {

    .row-cols-md-2,
    .row-cols-lg-3 {
        row-gap: 15px;
    }

    .home_sec3-card {
        text-align: center;
    }
}





/* ------------------------------------Event Hero Section ---------------------*/


.event-hero {
    position: relative;
    background: url('../images/home-cont-evnt.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Cormorant', serif;
}

/* Overlay for Readability */
.event-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Content Section */
.event-content {
    /* max-width: 600px; */
    margin-bottom: 20px;
    text-align: left;
}

.event-heading {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 10px;
}

.event-description {
    font-size: 1rem;
    line-height: 1.5;
    padding: 15px 0px;
}

/* Form Section */
.event-form-container {
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 20px;
    border-radius: 10px;
    margin: auto;
    width: 100%;
    max-width: 400px;
}

/* Form Inputs */
#event-contact-form input,
#event-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* Submit Button */
#event-submit-btn {
    width: 100%;
    padding: 10px;
    background: #2C3E50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

#event-submit-btn:hover {
    background: #1d4ed8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .event-hero {
        height: auto;
        padding: 50px 20px;
    }

    .event-heading {
        font-size: 1.5rem;
    }

    .event-description {
        font-size: 0.9rem;
    }
}

/* -----end event--- */



/* -----------FAQ Section start----- */

#FAQ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: auto;
    background: linear-gradient(to left, #EFBB8D, #FFFFFF);
    font-family: 'Cormorant', serif;
}


#FAQ .title {
    color: #E67E22;
    font-size: 51px;
    text-align: center;
}

.accordian {
    width: 100%;
    max-width: 950px;
    margin: 60px auto;
    padding: 15px 20px;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); */
}

.item {
    background-color: #fff;
    border: 3px solid #E67E22;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    transition: background-color 0.3s ease;
}

.item.selected {
    background-color: #ffffff;
}

.item::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E67E22;
}

.FAQ-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    color: #131414;
}

.faqQuestion {
    font-size: 20px;
    color: #131414;
    text-align: start;
}

.FAQ-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #131414;
    font-family: 'Cormorant', serif;
}

.FAQ-content.show {
    max-height: 9999px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.expandToggle {
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.FAQ-ShowMore {
    text-align: center;
    margin-top: 10px;
}

.FAQ-ShowMore button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #E67E22;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.FAQ-ShowMore button:hover {
    background-color: #8ee0c4;
    color: black;
    font-weight: 700;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .accordian {
        max-width: 90%;
    }

    .item {
        padding: 12px 16px;
    }

    .FAQ-title {
        font-size: 16px;
    }

    .expandToggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .accordian {
        padding: 10px;
    }

    .item {
        padding: 10px 14px;
    }

    .FAQ-title {
        font-size: 14px;
    }

    .expandToggle {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .accordian {
        padding: 5px;
    }

    .item {
        padding: 8px 12px;
    }

    .FAQ-title {
        font-size: 12px;
    }

    .expandToggle {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* ------end faq sec---------- */





/* --------------------footer section------- */

.footer-container {
    position: relative;
    background: url('../images/footer-img.png') no-repeat center center/cover;
    color: white;
    padding: 50px 20px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
}

.footer-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo {
    /*width: 50px;*/
    height: 90px;
    vertical-align: middle;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    padding: 60px 0px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 10px;
}

.location-icon,
.phone-icon,
.email-icon {
    margin-right: 8px;
}



.footer_icons {
    /* display: inline-block; */
    border-top: 2px solid white;
    padding: 15px 0px;
    width: 90%;
    margin: auto;
    border-bottom: 2px solid white;
}

.footer_icons p {
    display: inline-block;
    padding: 0px 20px;
    text-align: center;
}



@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }
}



/* =====================END INDEX PAGE==================== */



/* ============================ABOUT PAGE================*/


/* ------about section------ */

.about-section {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    padding: 50px;
    /* background-color: #EFBB8D24; */
    background-color: #EFBB8D24;
    top: -116px;
}


.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    /* background: rgb(0 0 0 / 63%) */
    background: rgb(0 0 0 / 36%);
}


.about-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
    top: 20%;
}


.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Cormorant', serif;
}


.about-text {
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Lato', sans-serif;
}


@media (max-width: 768px) {
    .about-section {
        text-align: center;
        padding: 20px;
    }

    .about-content {
        max-width: 100%;
    }
}


/* ------------- */



section.about2pg {
    margin-bottom: 80px;
}


.about2-text {
    font-family: 'Lato', sans-serif;
}

.abt2-img img {
    width: 300px;
}

.abt-img-pg1 {
    height: 340px;
}

.about2-title {
    margin: auto;
    text-align: center;
    padding-bottom: 60px;
    font-family: 'Cormorant', serif;
    font-size: 45px;
}

.abt-links2 a {
    padding: 10px 15px;
    border-radius: 14px;
}

.abt-link_read {
    background-color: transparent;
    color: #2C3E50;
    border: 2px solid #2C3E50;
}

.abt-link2_contct {
    text-align: center;
    background-color: #2C3E50;
    border: #2C3E50;
    color: white !important;
}


section.about_sec_mission {
    background-color: white !important;
    /* padding-top: 60px; */
    padding: 60px 10px;
    color: white;
    font-family: 'Lato', sans-serif;

}

.about_miss_vis {
    background-color: #5B12077D;
    padding: 60px;
    border-radius: 15px;
}

h2.mission_vision {
    margin: auto;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 20px;
    /* padding-top: 60px; */
}


.mission h2,
.vision h2 {
    font-size: 24px;
    font-weight: bold;
}


.dsai_about_intro {
    /* background-color: white; */
}

.dsai_about_intro p {
    background-color: #F9F5E7;
    padding: 20px 40px 10px;
    margin: auto;
    text-align: center;
    font-family: 'Cormorant', serif;
    width: 90%;
    font-size: 18px;
}


.abt-dsaievent {
    background-color: #fff;
    height: 50px;
}


.dsai-evnt_tody p {
    background-color: white;
    text-align: center;
    font-size: 18px;
    padding-bottom: 40px;
    font-family: 'Lato', sans-serif; 
}


/* =========================End About Page=============== */



/* ===========================SERVICE PAGE START============ */


.srvice
{
    font-family: 'Lato', sans-serif; 
    margin-bottom: 60px;
}


a.btn.btn-primary.service_cont {
    background-color: #2C3E50CC;
    border: none;
    box-shadow: 0px 2px 8px #2C3E50CC;
}


.our_service_pge
{
    background-color: #5B120799;
    color: white;
    padding: 40px;
    border-radius: 15px;
}


h2.our_service_title {
    padding-bottom: 30px;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
}

.our_service_pge p
{
    font-size: 17px;
    padding-bottom: 20px;
}

.service_evnt ul li , .social_evt ul li
{
    font-size: 18px;
    padding: 10px 0px;
}


.service-sec-img1
{
    padding: 40px 10px;
    text-align: center;
}

.service-sec-img1 img {
    width: 100%;
    margin: auto;
    text-align: center;
}


h2.social_evt_title {
    font-size: 30px;
    font-weight: 600;
}

/* ================End service page================ */





/* ==================================EVENT PAGE========================= */


.event1-container {
    text-align: center;
    padding: 20px;
    background: white;
    max-width: 80%;
    margin: auto;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.event1-title {
    font-size: 36px;
    font-weight: 600;
    color: #E67E22;
}

.event1-description {
    font-size: 15px;
    margin-bottom: 50px;
    margin-top: 20px;
}

.event1-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    padding: 20px;
}

.event1-image {
    width: 60%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
    position: relative;
}


/* .event1-prev,
.event1-next {
    background: none;
    border: 2px solid #e85d04;
    color: #e85d04;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
} */



/* Half Overlapping Effect */
.event1-card {
    background: #5a1a00;
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons for Carousel */
.event1-prev, .event1-next {
    background: none;
    border: 2px solid #e85d04;
    color: #e85d04;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.event1-prev {
    left: 10px;
}

.event1-next {
    right: 10px;
}


.event1-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.event1-card-description {
    font-size: 14px;
    margin-bottom: 15px;
}

.event1-button {
    background: white;
    color: #5a1a00;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}


/* Responsive Fix */
@media (max-width: 768px) {
    .event1-content {
        flex-direction: column;
        text-align: center;
    }

    .event1-image {
        width: 100%;
    }

    .event1-card {
        max-width: 90%;
        position: static;
        transform: none;
        margin-top: -50px; /* Adjust positioning */
    }

    .event1-prev, .event1-next {
        position: relative;
        top: auto;
        transform: none;
        margin-top: 10px;
    }
}






/* ================== */

.evntpg-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
    /* top: 20%; */
    margin: auto;
    text-align: center;
}


.evt-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Cormorant', serif;
}





/* Container */
.evntpage-container {
    /* padding: 50px 20px; */
    /* background-color: #5B12071A; */
    background-color: white;
    padding-bottom: 60px;
    font-family: 'Lato', sans-serif; 
}

/* Title */
.evntpage-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #d87d30;
}

/* Description */
.evntpage-description {
    max-width: 90%;
    text-align: center;
    margin: 10px auto 40px;
    color: #555;
    font-size: 1rem;
}

/* Card Container */
.evntpage-card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .evntpage-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .evntpage-card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styles */
.evntpage-card {
    background-color: #5B12071A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.evntpage-card:hover {
    transform: translateY(-5px);
}

/* Card Image */
.evntpage-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card Content */
.evntpage-card-content {
    padding: 15px;
    /* background-color: #5B12071A; */
}
.evntpage-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}
.evntpage-card-content p {
    font-size: 0.9rem;
    color: #161616;
    margin-bottom: 15px;
}

/* Button */
.evntpage-btn {
    background-color: #5B120780;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.evntpage-btn:hover {
    /* background-color: #E67E22; */
    background-color: #d87d30;
}










/* ================================Gallery page================= */


/* Gallery Wrapper */
.gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
}

/* Title */
.gallery-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #E67E22;
}

.gallery-wrapper p
{
    text-align: center;
}


/* Gallery Container */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Hover Effect */
.gallery-item:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .gallery-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery-title {
        font-size: 1.5rem;
    }
}











/* ===========================CONTACT PAGE======================== */


.contact-info
p i 
{
    font-size: 22px;
    padding: 0px 10px;
}


.con-phn
{
    padding: 0px 45px;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #f9f3ed;
    padding: 30px;
    margin-bottom: 40px;
}
.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}
.contact-info h2 {
    margin-bottom: 15px;
    font-size: 40px;
    color: #E67E22;
    font-weight: 500;
}
.contact-info p {
    margin: 10px 0;
    font-size: 20px;
}
.contact-info a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}
.contact-form button:hover {
    background-color: #1a252f;
}
.social-icons {
    margin-top: 15px;
}
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 24px;
}
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
    }
}




/* ================================================================= */

/*

RESPONSIVE CSS

*/

/* ================================================================= */




@media (min-width:05px) and (max-width:326px) {
    
    nav.navbar.navbar-expand-lg.navbar-dark {
        background: transparent;
        position: relative;
        z-index: 1;
        color: #fff;
        background-color: black;
        text-align: left;
    }

    ul.navbar-nav {
        text-align: left;
        margin:0px;
    }

       .navbar-collapse {
        padding: 30px 10px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 18px;
        width: 100%;
        margin: auto;
    }

    .home_sec_title p {
        font-weight: 500;
        font-size: 18px;
        width: 100%;
    }


    .abt-sec-pge {
        text-align: justify;
    }

    .abt2-img img {
        /* width: 300px; */
        width: 100%;
        margin-top: 60px;
        margin: 60px 0px auto;
    }

    .about-title {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 15px;
        font-family: 'Cormorant', serif;
    }

    .about-text {
        font-size: 13px;
        line-height: 1.6;
        font-family: 'Lato', sans-serif;
    }

    .about_miss_vis {
        padding: 60px 10px;
    }

    .dsai_about_intro p {
        width: 100%;
    }
    
    .our_service_pge {
        padding: 60px 22px;
        margin: 10px auto;
        width: 96%;
    }


    .service-sec-img1 {
        padding: 20px 0px;
        text-align: center;
        width: 100%;
    }


    .evntpage-card {
        margin: 10px;
    }

    .event1-container {
        max-width: 100%;
    }

    .contact-section {
        padding: 0px;
    }


    .contact-info {
        flex: 1;
        width: 100%;
        padding: 0px;
    }

    .contact-info h2 {
        font-size: 25px;
        text-align: center;
    }

    .contact-info p {
        margin: 10px 0;
        font-size: 17px;
        padding: 0px 15px;
    }

    .social-icons {
        margin-top: 15px;
        text-align: center;
        /* padding: 0px 20px; */
    }

    .contact-form {
        flex: 1;
        width: 100%;
        padding:10px 20px;
    }

    .footer_icons {
        border-top: 2px solid white;
        padding: 15px 0px;
        width: 100%;
        margin: auto;
        border-bottom: 2px solid white;
    }

    .footer_icons p {
        display: inline-block;
        padding: 0px;
        text-align: center;
    }

    .event-overlay {
        padding: 20px 0px;
    }

    .event-form-container {
        padding: 20px 0px;
        margin: auto;
        width: 100%;
        max-width: 100%;
    }

    .event-hero {
        height: auto;
        padding: 50px 10px;
    }

    .about-content {
        position: relative;
        max-width: 600px;
        z-index: 2;
        top: 10%;
    }

}



@media (min-width:326px) and (max-width:500px) {
    
    nav.navbar.navbar-expand-lg.navbar-dark {
        background: transparent;
        position: relative;
        z-index: 1;
        color: #fff;
        background-color: black;
        text-align: left;
    }

    ul.navbar-nav {
        text-align: left;
        margin:0px;
    }

       .navbar-collapse {
        padding: 30px 10px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 18px;
        width: 100%;
        margin: auto;
    }

    .home_sec_title p {
        font-weight: 500;
        font-size: 18px;
        width: 100%;
    }


    .abt2-img img {
        width: 100%;
        margin-top: 60px;
        margin: 60px 0px auto;
    }

    .about_miss_vis {
        padding: 60px 22px;
    }

    .dsai_about_intro p {
        width: 100%;
    }
    
    .our_service_pge {
        padding: 60px 22px;
        margin: 10px auto;
        width: 96%;
    }


    .service-sec-img1 {
        padding: 20px 0px;
        text-align: center;
        width: 100%;
    }


    .evntpage-card {
        margin: 10px;
    }

    .event1-container {
        max-width: 100%;
    }

    .contact-section {
        padding: 0px;
    }


    .contact-info {
        flex: 1;
        min-width: 100%;
        padding: 0px;
    }

    .contact-info h2 {
        font-size: 25px;
        text-align: center;
    }

    .contact-info p {
        margin: 10px 0;
        font-size: 17px;
        padding: 0px 15px;
    }

    .social-icons {
        margin-top: 15px;
        text-align: center;
        /* padding: 0px 20px; */
    }

    .contact-form {
        flex: 1;
        width: 100%;
        padding:10px 20px;
    }

    .footer_icons {
        border-top: 2px solid white;
        padding: 15px 0px;
        width: 100%;
        margin: auto;
        border-bottom: 2px solid white;
    }

    .footer_icons p {
        display: inline-block;
        padding: 0px;
        text-align: center;
    }


    .event-overlay {
        padding: 20px 0px;
    }

    .event-form-container {
        padding: 20px 0px;
        margin: auto;
        width: 100%;
        max-width: 100%;
    }

    .event-hero {
        height: auto;
        padding: 50px 10px;
    }


    .about-content {
        position: relative;
        max-width: 600px;
        z-index: 2;
        top: 10%;
    }

}




@media (min-width:500px) and (max-width:768px) {
    
    nav.navbar.navbar-expand-lg.navbar-dark {
        background: transparent;
        position: relative;
        z-index: 1;
        color: #fff;
        background-color: black;
        text-align: left;
    }

    ul.navbar-nav {
        text-align: left;
        margin:0px;
    }

    /* .navbar-collapse {
        flex-basis: 100%;
        padding: 30px 10px;
        flex-grow: 1;
        align-items: center;
    } */

}




@media (min-width:769px) and (max-width:900px) {
    
    nav.navbar.navbar-expand-lg.navbar-dark {
        background: transparent;
        position: relative;
        z-index: 1;
        color: #fff;
        background-color: black;
        text-align: left;
    }

    ul.navbar-nav {
        text-align: left;
        margin:0px;
    }

    /* .navbar-collapse {
        flex-basis: 100%;
        padding: 30px 10px;
        flex-grow: 1;
        align-items: center;
    } */

}




@media (min-width:901px) and (max-width:1025px) {
    
    nav.navbar.navbar-expand-lg.navbar-dark {
        background: transparent;
        position: relative;
        z-index: 1;
        color: #fff;
        background-color: black;
        text-align: left;
    }

    ul.navbar-nav {
        text-align: left;
        margin:0px;
    }

    /* .navbar-collapse {
        flex-basis: 100%;
        padding: 30px 10px;
        flex-grow: 1;
        align-items: center;
    } */

}



