@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

body {
    font-family: "Instrument Sans", sans-serif;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4 {
    margin-bottom: 0px;
}

p {
    margin-bottom: 0px;
}

:root {

    --black: #000;
    --white: #fff;

    --light: #E1E1E3;
    --gold: #A97918;
    --light-gold: #EDC453;
    --blue: #0B0F19;
    --light-blue: #1A202C;

}


/* section css */
section {
    padding: 100px 0px;
}

section p {
    text-align: justify;
}

@media screen and (max-width: 767px) {
    section {
        padding: 50px 0px;
    }

    section p {
        font-size: 12px;
    }
}



/* section css */



/* footer css */
.footer {
    padding: 100px 0px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 50px 0px;
    }
}

/* footer css */




/* custom css start here ----------------------------------------------------  */


/* -------------- Navbar css start here -------------- */
.custom-navbar {
    background: var(--blue);
    padding: 5px 0;
    transition: .4s;
    box-shadow: rgba(240, 238, 238, 0.616) 0px 5px 15px;
}

.navbar-brand img {
    width: 120px;
    height: 120px;
}



.navbar-nav {
    gap: 18px;
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 18px;
    /* font-weight: 600; */
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    /* padding: 10px 0; */
    transition: .3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--light-gold);
}


/* Dropdown Arrow */
.dropdown-toggle::after {
    margin-left: .55rem;
    vertical-align: middle;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    padding: 10px;
    margin-top: 15px;
}

.dropdown-item {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f9f3ed;
    color: #b27b3d;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: var(--white);
    font-size: 20px;
    transition: .3s;
    position: relative;
    text-decoration: none;
    background: transparent;
    border-radius: 50px;
    padding: 10px 20px;
    transition: .4s ease-in-out;
}

.nav-icons a:hover {
    background: var(--white);
    color: var(--blue);
}



.offcanvas {
    width: 300px;
}

.offcanvas-body .nav-link {
    padding: 14px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-icons a {
    color: var(--blue);
}

.navbar-toggler {
    padding: 0;
    border: none;
    background: var(--light-gold);
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media screen and (max-width: 1200px) {

    .navbar-brand img {
        width: 90px;
        height: 90px;
    }
        .offcanvas-header img{
        width: 80px;
        height: 80px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }

    .nav-icons a {
        font-size: 14px;
        padding: 5px 10px;
    }
}


@media(max-width:991px) {
    .navbar-brand img {
        width: 70px;
        height: 70px;
    }

    .nav-icons a {
        font-size: 14px;

    }

}

/* ------------------ navbar css ends here --------------- */




/* --------------- banner css start here ---------------- */

.carousel-indicators {
    margin-bottom: 5px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: none;
    background: var(--gold) !important;
}

.carousel-indicators button {
    border-radius: 50px;
}

@media screen and (max-width: 767px) {
    .carousel-indicators [data-bs-target] {
        width: 5px;
        height: 5px;
    }
}

/* --------------------- end of banner css here --------------------- */


/* ---------------------- about us section css start here ---------------------- */

.namaskar-about {
    position: relative;
    padding: 100px 0;

    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-small-title {
    display: inline-block;
    position: relative;
    padding-left: 42px;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-small-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 3px;
    background: var(--gold);
    transform: translateY(-50%);
}

.about-content h2 {
    margin: 0 0 18px;
    color: #0B0F19;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
}

.about-content h2 span {
    color: var(--gold);
}

.about-line {
    width: 70px;
    height: 4px;
    margin-bottom: 25px;
    background: var(--light-gold);
    border-radius: 5px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--light-blue);
    line-height: 1.8;
    text-align: justify;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 13px 25px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px);
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* about image */

.about-image-wrapper {
    position: relative;
    padding: 20px 20px 30px 30px;
}

.about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(11, 15, 25, 0.404);
}

.about-image img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* news badge */

.about-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border: 7px solid var(--light);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.2);
}

.about-badge strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.about-badge span {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* decorative element */

.about-decoration {
    position: absolute;
    z-index: 1;
    background: var(--light-blue);
}

.about-decoration-one {
    left: 0;
    top: 0;
    width: 150px;
    height: 150px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-decoration-two {
    right: 20px;
    bottom: 15px;
    width: 100px;
    height: 100px;
    background: #EDC453;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* responsive start */

@media screen and (max-width: 1200px) {
    .about-content h2 {
        font-size: 22px;
    }

    .about-small-title {
        font-size: 12px;
    }

    .about-content p {
        font-size: 14px;
    }

}

@media screen and (max-width: 991px) {
    .namaskar-about {
        padding: 70px 0;
    }

    .about-small-title {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-image-wrapper {
        margin-top: 20px;
    }

    .about-image img {
        height: 430px;
    }
}

@media screen and (max-width: 767px) {
    .about-small-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        line-height: 1.7;
        font-size: 12px;
    }

    .about-btn {
        padding: 6px 15px;
        font-size: 16px;
    }

    .about-image-wrapper {
        padding: 15px 15px 25px 20px;
    }

    .about-image img {
        height: 350px;
    }

    .about-badge {
        width: 115px;
        height: 115px;
        border-width: 5px;
    }

    .about-badge strong {
        font-size: 20px;
    }

    .about-badge span {
        font-size: 12px;
    }

    .about-decoration-one {
        width: 100px;
        height: 100px;
    }

    .about-decoration-two {
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 480px) {

    .about-image img {
        height: 280px;
    }

    .about-badge {
        width: 100px;
        height: 100px;
    }
}

/* responsive end */

/* ---------------------- end of about us section here ---------------------- */


/* ---------------------- mission vision section css start here ---------------------- */

.mission-vision-section {
    position: relative;

    overflow: hidden;
    background: #EDC45360;
}

.mv-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mv-title {
    margin: 0;
    color: var(--blue);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.mv-title span {
    color: var(--gold);
}

.mv-intro {
    max-width: 700px;
    margin: 15px auto 0;
    color: var(--light-blue);
    font-size: 16px;
    line-height: 1.8;
}

/* mission vision card */

.mv-card {
    position: relative;
    height: 100%;
    padding: 45px 40px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--light);
    box-shadow: 0 12px 35px rgba(11, 15, 25, 0.08);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(11, 15, 25, 0.13);
}

.mission-card {
    border-top: 5px solid var(--gold);
}

.vision-card {
    border-top: 5px solid var(--blue);
}

.mv-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 27px;
    box-shadow: 0 8px 20px rgba(169, 121, 24, 0.25);
}

.vision-card .mv-icon {
    background: var(--blue);
    box-shadow: 0 8px 20px rgba(11, 15, 25, 0.2);
}

.mv-label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vision-card .mv-label {
    color: var(--blue);
}

.mv-content h3 {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 28px;
    font-weight: 800;
}

.mv-content p {
    margin-bottom: 14px;
    color: var(--light-blue);
    line-height: 1.8;
}

.mv-number {
    position: absolute;
    right: 25px;
    bottom: 10px;
    color: rgba(169, 121, 24, 0.288);
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
}

.vision-card .mv-number {
    color: rgba(11, 15, 25, 0.267);
}

/* bottom  statement */

.mv-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    background: var(--blue);
    border-radius: 8px;
    border-left: 6px solid #A97918;
    box-shadow: 0 12px 30px rgba(11, 15, 25, 0.12);
}

.mv-bottom-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A97918;
    color: #fff;
    border-radius: 50%;
    font-size: 25px;
}

.mv-bottom h4 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.mv-bottom p {
    color: #d8d8d8;
    line-height: 1.7;
}

/* responsive start */

@media screen and (max-width: 1200px) {
    .mv-title {
        font-size: 36px;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .mv-content h3 {
        font-size: 24px;
    }

    .mv-number {
        font-size: 56px;
    }
}

@media screen and (max-width: 991px) {

    .mv-title {
        font-size: 28px;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-content h3 {
        font-size: 20px;
    }

    .mv-number {
        font-size: 36px;
    }

    .mv-bottom {
        padding: 30px 25px;
    }

}

@media screen and (max-width: 767px) {
    .mv-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .mv-title {
        font-size: 22px;
    }

    .mv-intro {
        font-size: 14px;
    }

    .mv-card {
        padding: 20px 15px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .mv-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .mv-number {
        right: 15px;
        bottom: 10px;
        font-size: 22px;
    }


    .mv-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
    }

    .mv-bottom-icon {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .mv-bottom h4 {
        font-size: 18px;
        font-weight: 500;
    }
}


/* responsive css end */

/* ---------------------- end of mission vision section css here ---------------------- */



/* -------------------- core value section css start here -------------------- */

.core-values-section {
    position: relative;
    background: #f7f7f7;
    overflow: hidden;
}

/* section heading */

.core-values-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.core-values-title {
    margin: 0;
    color: var(--blue);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.core-values-title span {
    color: var(--gold);
}

.core-values-intro {
    max-width: 720px;
    margin: 15px auto 0;
    color: var(--light-blue);
    line-height: 1.8;
}


/* value card */

.core-value-card {
    position: relative;
    height: 100%;
    padding: 40px 35px 35px;
    background: #fff;
    border: 1px solid rgba(169, 121, 24, 0.15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(11, 15, 25, 0.08);
    transition: all 0.4s ease;
}

.core-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(169, 121, 24, 0.35);
    box-shadow: 0 18px 45px rgba(11, 15, 25, 0.14);
}




/* icon */

.core-value-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: var(--blue);
    color: var(--light-gold);
    border-radius: 50%;
    font-size: 27px;
    box-shadow: 0 8px 22px rgba(11, 15, 25, 0.20);
    transition: all 0.4s ease;
}

.core-value-card:hover .core-value-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotateY(360deg);
}


/* content */

.core-value-content {
    position: relative;
    z-index: 2;
}

.core-value-content h3 {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 24px;
    font-weight: 800;
}

.core-value-content p {
    color: var(--light-blue);
    line-height: 1.8;
}


/* bottom line */

.core-value-line {
    width: 45px;
    height: 3px;
    margin-top: 25px;
    background: var(--light-gold);
    border-radius: 5px;
    transition: all 0.4s ease;
}

.core-value-card:hover .core-value-line {
    width: 80px;
    background: var(--light-gold);
}


/* bottom statement */

.core-values-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    background: var(--blue);
    border-radius: 10px;
    border-left: 6px solid var(--gold);
    box-shadow: 0 12px 30px rgba(11, 15, 25, 0.15);
}

.core-values-bottom-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 25px;
}

.core-values-bottom h4 {
    margin: 0 0 7px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.core-values-bottom p {
    color: var(--light);
    line-height: 1.7;
}


/* responsive css */

@media screen and (max-width: 1200px) {
    .core-values-title {
        font-size: 36px;
    }

    .core-value-card {
        padding: 25px 15px;
    }

    .core-value-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .core-value-content h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {

    .core-values-subtitle {
        letter-spacing: 2px;
    }

    .core-values-title {
        font-size: 28px;
    }

    .core-value-card {
        padding: 25px 20px;
    }

    .core-value-content h3 {
        font-size: 22px;
    }

    .core-value-line {
        margin-top: 15px;
    }

    .core-values-bottom {
        padding: 30px 25px;
    }


}

@media screen and (max-width: 767px) {

    .core-values-subtitle {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .core-values-title {
        font-size: 22px;
    }

    .core-values-intro {
        font-size: 14px;
    }

    .core-value-card {
        padding: 20px 15px;
    }

    .core-value-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .core-value-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .core-value-line {
        margin-top: 10px;
    }

    .core-values-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
    }

    .core-values-bottom h4 {
        font-size: 18px;
        font-weight: 500;
    }


    .core-values-bottom-icon {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

}


/* -------------------- end of core value section css here -------------------- */


/* ------------------- royal model section css start here ------------------- */


.royal-model-section {
    background: #E1E1E3;
    position: relative;
    overflow: hidden;
}


/* section heading */

.royal-model-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.royal-model-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 18px;
}

.royal-model-title span {
    color: var(--gold);
}

.royal-model-intro {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--light-blue);
}


/* model card */

.royal-model-card {
    position: relative;
    height: 100%;
    padding: 35px 28px 30px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(169, 121, 24, 0.20);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.08);
}

.royal-model-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-gold);
    box-shadow: 0 18px 40px rgba(11, 15, 25, 0.15);
}


/* icon */

.royal-model-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--light-gold);
    font-size: 28px;
    border: 4px solid var(--light-gold);
    transition: all 0.4s ease;
}

.royal-model-card:hover .royal-model-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotateY(360deg);
}


/* card content */

.royal-model-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.royal-model-card p {
    line-height: 1.75;
    color: var(--light-blue);
    text-align: center;
}


/* bottom message */

.royal-model-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 30px;
    background: var(--blue);
    border-radius: 18px;
    border: 1px solid #A97918;
    box-shadow:  0 15px 35px rgba(11, 15, 25, 0.15);
}

.royal-model-bottom-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 24px;
}

.royal-model-bottom h4 {
    color: var(--light-gold);

    font-size: 20px;
    font-weight: 800;

    margin-bottom: 5px;
}

.royal-model-bottom p {
    color: var(--light);
    line-height: 1.6;
}


/* responsive css */

@media screen and (max-width: 1200px) {
      .royal-model-title {
        font-size: 36px;
    }
     .royal-model-card {
        padding: 25px 15px;
    }
}

@media screen and (max-width: 991px) {

    .royal-model-title {
        font-size: 28px;
    }
     .royal-model-card {
        padding: 25px 20px;
    }

}


@media screen and (max-width: 767px) {

    .royal-model-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .royal-model-title {
        font-size: 22px;
    }

    .royal-model-intro {
        font-size: 14px;
    }

    .royal-model-card {
        padding: 20px 15px;
    }


    .royal-model-icon{
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 15px;
    }


    .royal-model-bottom {
        align-items: flex-start;
        padding: 20px 15px; 
    }

        .royal-model-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .royal-model-bottom h4 {
        font-size: 18px;
        font-weight: 500;
    }
    .royal-model-bottom p {
    text-align: center;
}

}



/* ---------------------- end of royal model section css here ---------------------- */




/* ---------------------- footer css start here ---------------------- */



.footer-main {
    position: relative;
    padding: 75px 0 60px;
    background: #0B0F19;
    overflow: hidden;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(169, 121, 24, 0.06);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* footer widget */

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-widget h4 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #A97918;
}

/* footer logo */

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    height: 150px;
}

.footer-about p {
    margin-bottom: 10px;
    color: var(--light);
    text-align: justify;
    line-height: 1.8;
}

/* social icons */

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A202C;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #A97918;
    color: #fff;
    transform: translateY(-4px);
}

/* footer links */

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #E1E1E3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a i {
    color: #EDC453;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* contact */



.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.contact-icon {
    flex: 0 0 38px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A202C;
    color: #EDC453;
    border-radius: 4px;
    font-size: 16px;
}

.footer-contact strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.footer-contact p {
    margin: 0;
    color: var(--light);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #EDC453;
}

/* footer bottom */

.footer-bottom {
    padding: 20px 0;
    background: #1A202C;
    border-top: 1px solid rgba(237, 196, 83, 0.15);
}

.footer-bottom p {
    color: #E1E1E3;
}

.footer-bottom strong {
    color: #EDC453;
}

.footer-policy {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-policy li {
    position: relative;
}

.footer-policy li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -11px;
    width: 1px;
    height: 13px;
    background: #A97918;
    transform: translateY(-50%);
}

.footer-policy a {
    color: #E1E1E3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: #EDC453;
}

/* responsive css */

@media screen and (max-width: 991px) {

    .footer-main {
        padding: 60px 0 45px;
    }
     .footer-widget{
        margin-top: 20px;
    }

}

@media screen and (max-width: 767px) {

    .footer-main {
        padding: 50px 0 30px;
    }
    .footer-widget{
        margin-top: 20px;
    }
      .footer-logo img {
        width: 120px;
        height: 120px;
    }
    .footer-about p {
        font-size: 14px;
    }

    .footer-widget h4 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .footer-links a{
        font-size: 14px;
    }
    .footer-contact strong{
        font-weight: 500;
    }

    .footer-contact p{
        font-size: 14px;
    }

  

    .footer-policy {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

}

@media (max-width: 480px) {

    .footer-newsletter h3 {
        font-size: 22px;
    }

    .footer-social {
        gap: 7px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom p {
        text-align: center;
        line-height: 1.7;
        font-size: 12px;
    }

    .footer-policy {
        gap: 12px;
    }

    .footer-policy a {
        font-size: 12px;
    }

}

/* ----------------------- end of footer css here ----------------------- */