@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
    font-family: "DM Sans", sans-serif;
}

/* TOP BAR START */
.cs-topbar {
    background-color: #E8E2D7;
    font-size: 15px;
    padding: 10px 10px;
    color: #4a4036;
}

/* TOP BAR END */
p.footer-bottom a
 {
    color: #fff;
    text-decoration: none;
}
.pages-container a, .services-container a
 {
    color: #000;
    text-decoration: none;
}
/* HEADER START */
.cs-header {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.cs-logo {
    max-height: 80px;
}

.cs-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 40px;
}

.cs-nav a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.cs-nav .active {
    font-weight: 700;
    color: #42362A;
}

.cs-search {
    display: flex;
    border: 1px solid #d6cfc7;
    border-radius: 30px;
    overflow: hidden;
}

.cs-search input {
    border: none;
    padding: 8px 14px;
    flex: 1;
    outline: none;
}

.cs-search button {
    background: #42362A;
    border: none;
    padding: 0 22px;
    color: #fff;
}

.cs-login {
    margin-right: 30px;
    color: #42362A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cs-login i {
    font-size: 26px;
}

.cs-book-btn {
    background: #42362A;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
}

.cs-hamburger {
    background: none;
    border: none;
    font-size: 36px;
    color: #42362A;
    margin-left: 12px;
}

.cs-nav .menu-item-has-children {
    position: relative;
}

.cs-nav .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 999;
}

.cs-nav .menu-item-has-children .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.cs-nav .menu-item-has-children .sub-menu li a:hover {
    background: #f5f5f5;
}

.cs-nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .cs-desktop-only {
        display: none !important;
    }

    .cs-mobile-only {
        display: inline-flex !important;
    }

    .cs-header {
        padding: 20px 0;
    }
}

@media (min-width: 1024px) {
    .cs-mobile-only {
        display: none !important;
    }
}

.cs-mobile-nav {
    list-style: none;
    padding: 0;
}

.cs-mobile-nav li {
    margin-bottom: 16px;
}

.cs-mobile-nav a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
}

.cs-mobile-login,
.cs-mobile-book {
    display: block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 500;
}

.cs-mobile-book {
    background: #42362A;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-align: center;
}

/* HEADER END */

/* HERO SECTION START */
.cs-hero {
    position: relative;
/* 
    background-image:
        linear-gradient(to bottom,
            rgba(217, 217, 217, 0) 0%,
            rgba(66, 54, 42, 0.8) 100%),
        url("./assets/hero-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    padding: 170px 0;
    color: #ffffff;
}

.cs-hero-content h1 {
    font-size: 48px;
    margin-bottom: 18px;
    line-height: 1.25;
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
}

.cs-hero-content p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
}

.cs-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #42362A;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4s;
}

.cs-hero-btn:hover {
    background: #42362A;
    color: #fff;
    transform: scale(1.1);
}

/* HERO SECTION END */

/* ABOUT SECTION START */
.cs-about {
    padding: 70px 0;
    background-image: linear-gradient(to bottom,
            #FFFFFF 0%,
            #E8E2D7 50%,
            #ffffff 100%);
}

.cs-about-title {
    font-size: 42px;
    margin-bottom: 18px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.cs-about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2A2A2A;
}

.cs-about-text a {
    color: #1388D0;
    font-weight: 500;
    text-decoration: none;
}

.cs-about-box {
    margin-top: 30px;
}

.cs-about-box img {
    margin-bottom: 16px;
    height: 52px;
}

.cs-about-box h5 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.cs-about-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #2A2A2A;
    max-width: 185px;
}

.cs-about-images {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.cs-about-images img {
    width: 30%;
    height: 490px;
    object-fit: cover;
    border-radius: 120px;
}

/* ABOUT SECTION END */

/* FOUNDER SECTION START */

.cs-founder {
    padding: 60px 0;
    background-image: linear-gradient(to bottom,
            #FFFFFF 0%,
            #E8E2D7 50%,
            #ffffff 100%);

}

.cs-founder-title {
    font-size: 42px;
    margin-bottom: 18px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.cs-founder-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2A2A2A;
}

.cs-founder-btn {
    display: inline-block;
    background: #42362A;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    margin-top: 20px;
    transition: 0.4s;
}

.cs-founder-btn:hover {
    background-color: #FFFFFF;
    color: #42362A;
    border: 1px solid #42362A;

}

.cs-founder-image img {
    width: 260px;
    object-fit: cover;
    border-radius: 150px;
}

.cs-founder-stats {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cs-stat {
    border: 1px solid #42362A;
    border-radius: 50px;
    padding: 18px 20px;
    text-align: center;
}

.cs-stat h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2A2A2A;
}

.cs-stat p {
    font-size: 16px;
    margin: 0;
    color: #2A2A2A;
    font-weight: 600;
}

/* FOUNDER SECTION END */

/* SUPPORT SECTION START */

.cs-support {
    position: relative;
}

.cs-support-bg {
    padding: 180px 0;
    /* background:
        linear-gradient(to right,
            rgba(66, 54, 42, 0.2) 0%,
            rgba(66, 54, 42, 0.5) 50%,
            rgba(66, 54, 42, 0.85) 100%),
        url("./assets/suppport-bg.png");
    background-size: cover;
    background-position: center; */
    color: #ffffff;
}

.cs-support-title {
    font-size: 54px;
    margin-bottom: 5px;
    font-family: "Abhaya Libre", serif;
    font-weight: 600;
    font-style: normal;
}

.cs-support-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* SUPPORT SECTION END */

/* CARD SECTION START */
.cs-card-section {
    margin-top: -180px;
    position: relative;
}

.cs-support-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;

    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cs-support-img {
    margin-bottom: 30px;
}

.cs-support-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2A2A2A;
}

.cs-support-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #2A2A2A;
    margin-bottom: 22px;
}

.cs-support-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    background: #42362A;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cs-support-card:hover {
    background: #E8E2D7;
    transform: translateY(-10px);
}

.cs-support-card:hover .cs-support-btn {
    background: #ffffff;
    color: #42362A;
}

/* CARD SECTION END */

/* MOMENTS SECTION START */
.cs-moments {
    padding: 100px 0;
    background: #ffffff;
}

.cs-moments-title {
    font-size: 42px;
    margin-bottom: 18px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.cs-moments-row {
    display: flex;
    gap: 28px;
    align-items: center;
}

.cs-moment {
    flex: 1;
    overflow: hidden;
}

.cs-moment-clip-left img {
    clip-path: polygon(50% 2%, 100% 3%, 100% 96%, 50% 98%, 0 100%, 0% 60%, 0 0);
}

.cs-moment-clip-right img {
    clip-path: polygon(50% 2%, 100% 0, 100% 100%, 50% 98%, 0 96%, 0% 60%, 0 3%);
}

.cs-moment img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 335px;
    border-radius: 0;
    transition: 0.4s;
}

.cs-moment-clip-left img {
    height: 360px;
}

.cs-moment-clip-right img {
    height: 360px;
}

.cs-moment img:hover {
    transform: scale(1.1);
}

/* MOMENTS SECTION END */

/* GET IN TOUCH SECTION START  */
.contactX-section {
    background-image: linear-gradient(to bottom,
            #FFFFFF 0%,
            #E8E2D7 50%,
            #ffffff 100%);
	overflow-x: hidden;
	padding: 50px 0;
}

.contactX-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
}

.contactX-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contactX-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 25%,
            rgba(0, 0, 0, 0.25) 55%,
            rgba(0, 0, 0, 0) 75%);
    z-index: 1;
}

.contactX-image-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: #fff;
}

.contactX-image-content h3 {
    font-size: 42px;
    margin-bottom: 12px;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.contactX-image-content ul {
    padding-left: 18px;
    margin: 0;
}

.contactX-image-content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.contactX-form-wrapper h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.contactX-form-wrapper label {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.contactX-form-wrapper input,
.contactX-form-wrapper textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid #8b857a;
    font-size: 18px;
    outline: none;
}

.contactX-form-wrapper textarea {
    border-radius: 28px;
    resize: none;
}

.contactX-form-wrapper button {
    background: #42362A;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.4s;
}

.contactX-form-wrapper button:hover {
    background: #ffffff;
    color: #42362A;
    border: 1px solid #42362A;
}

/* GET IN TOUCH SECTION END */

/* NEWSLETTER SECTION START */
.newsletter-section {
    background: #EAE2D9;
    padding: 45px 0;
}

.newsletter-title {
    font-size: 42px;
    margin: 0;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.newsletter-form {
    display: flex;
    gap: 14px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 22px;
    border-radius: 999px;
    border: none;
    background: #42362A;
    color: #ffffff;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 14px 44px;
    border-radius: 999px;
    border: 1px solid #42362A;
    background: transparent;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: 0.4s;
}

.newsletter-form button:hover {
    background: #42362A;
    color: #fff;
}

/* NEWSLETTER SECTION END */

/* FOOTER START */

.footer-section {
    position: relative;
    padding: 80px 0;
    /* background: url("./assets/footer.png") center/cover no-repeat; */
    color: #ffffff;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.9) 100%);
}

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

.footer-info {
    display: flex;
    justify-content: space-between;
    padding: 32px 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.footer-info-item i {
    font-size: 18px;
}

.footer-logo {
    width: 145px;
    margin-bottom: 18px;
}

.footer-text {
    font-size: 16px;
    margin-left: 10px;
}

.footer-social {
    margin-left: 10px;
}

.footer-social a {
    text-decoration: none;
    color: #fff;
    margin-right: 8px;

}

.footer-social a i {
    font-size: 20px;
    transition: 0.2s;
    opacity: 0.7;
}
.footer-email{
    color: #fff;
    text-decoration: none;
}
.footer-social a i:hover {
    opacity: 1;
    font-size: 22px;
}


.footer-heading {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-list {
    padding: 0;
    margin: 0;
}

.footer-list a {
    text-decoration: none;
    color: #fff;
    opacity: 0.9;
}

.footer-list-two {
    list-style: none;
}

.footer-list li {
    font-size: 16px;
    margin-bottom: 14px;
    opacity: 0.8;
    transition: 0.2s;
}

.footer-list li:hover {
    font-weight: 600;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
    opacity: 0.7;
}

/* FOOTER END */


/* ===================ABOUT PAGE CSS START ==================== */

/* ABOUT HERO SECTION START */

.about-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url("./assets/about-hero.png");
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.8) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 18px;
    line-height: 1.25;
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-style: normal;
}

.about-hero-content p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #42362A;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4s;
}

.about-hero-btn:hover {
    background: #42362A;
    color: #fff;
    transform: scale(1.1);
}

/* ABOUT HERO SECTION END */

/* ABOUT INTRO SECTION START */
.about-intro {
    padding: 80px 0;
    background-image: linear-gradient(to bottom, #FFFFFF 0%, #E8E2D7 50%, #ffffff 100%);
}

.about-intro-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.about-intro-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #2A2A2A;
}

.about-intro-btn {
    display: inline-flex;
	gap: 8px;
    background: #42362A;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    margin-top: 20px;
}

.about-intro-btn i{
	margin-top: 1px;
}

.about-intro-btn:hover {
    background-color: #FFFFFF;
    color: #42362A;
    border: 1px solid #42362A;
}

.about-slider {
    overflow-x: auto;
    padding-left: 40px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.about-slider::-webkit-scrollbar {
    display: none;
}

.about-slider-track {
    display: flex;
    gap: 22px;
}

.about-slide {
    flex: 0 0 280px;
    border-radius: 22px;
    overflow: hidden;
}

.about-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ABOUT INTRO SECTION END */

/* WHY CHOOSE SECTION START */
.why-choose {
    padding: 40px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.why-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #2A2A2A;
}

.why-btn {
    display: inline-flex;
	gap: 8px;
    background: #42362A;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    margin-top: 20px;
    transition: 0.4s;
}

.why-btn i {
	margin-top: 1px;
}

.why-btn:hover {
    background-color: #FFFFFF;
    color: #42362A;
    border: 1px solid #42362A;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.why-card h4 {
    font-size: 36px;
    font-weight: 600;
    color: #2A2A2A;
}

.why-card p {
    font-size: 20px;
    color: #2A2A2A;
}

.why-card-one {
    background: #E8E2D780;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.why-card-two {
    background: #E8E2D7;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.text-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-card h3 {
    font-size: 30px;
    color: #42362A;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    font-style: normal;
}

.icon {
    font-size: 28px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* WHY CHOOSE SECTION END */

/* PROMISE SECTION START */
.promise-section {
    padding: 60px 0 0px;
    background: linear-gradient(to bottom, #ffffff 0%, #e8e2d7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.promise-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 90px;
}

.promise-header h2 {
    font-size: 42px;
    color: #42362a;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    margin-bottom: 18px;
}

.promise-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
}

.promise-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 220px;
    background: url("./assets/promise-line.png") center no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.promise-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.promise-card {
    background: #ffffff;
    border: 1px solid #d8d2c7;
    border-radius: 16px;
    padding: 55px 24px 28px;
    text-align: center;
    position: relative;
    max-height: 205px;
}

.promise-icon {
    width: 85px;
    height: 85px;
    background: #3f3328;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.promise-icon img {
    width: 45px;
}

.promise-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #42362a;
}

.promise-card p {
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.6;
}

.promise-card.promise-card-one {
    margin-top: -60px;
}

.promise-card.promise-card-three {
    margin-top: 60px;
}

.promise-card.promise-card-four {
    margin-top: 120px;
}

/* PROMISE SECTION END */


/* OFFER SECTION START */
.offer-section {
    padding: 90px 0;
    background: #fff;
}

.offer-header {
    text-align: center;
    margin: 0 auto 60px;
}

.offer-header h2 {
    font-size: 42px;
    color: #42362a;
    font-family: "Abhaya Libre", serif;
    font-weight: 500;
    margin-bottom: 18px;
}

.offer-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #2A2A2A;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.offer-card {
    background: #fff;
    border: 1px solid #cfc7bc;
    border-radius: 14px;
    padding: 28px;
    transition:
        transform 0.8s ease,
        box-shadow 0.8s ease;
    will-change: transform;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.offer-card:hover {
    transform: rotate(-8deg) translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    background: #42362A;
}

.icon-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.offer-card h4 {
    font-size: 22px;
    font-weight: 600;
}

.offer-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 300;
}

.offer-card:hover h4,
.offer-card:hover p {
    color: #fff;
}

.offer-card a {
    display: inline-block;
    padding: 6px 16px;
    background: #4b3621;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
	width: fit-content;
	}

.offer-card:hover a {
    background-color: #fff;
    color: #2A2A2A;
}

.offer-card:hover .icon-heading img{
	 filter: invert(1);
}

@media (max-width: 991px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* OFFER SECTION END */



/* ================= ABOUT PAGE CSS END ====================== */

/* ============= RESPONSIVE CSS START =================== */

@media (max-width: 1204px){
	
	.promise-cards {
    	grid-template-columns: repeat(2, 1fr);
	}
	
	.promise-card.promise-card-one {
		margin-top: -35px;
	}
	
}

@media (min-width: 992px) {

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children > .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        min-width: 220px;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        padding: 10px 0;
        z-index: 999;
    }

    .menu-item-has-children:hover > .sub-menu {
        display: block;
    }
}


@media (max-width: 991px){
	
	.footer-info {
		gap:20px;
	}
		
	.about-intro-content {
    	margin-bottom: 30px;
	}
	
	.cs-support-card h5 {
		font-size: 19px;
	}
	
	.cs-founder-image img {
		margin: 30px 0;
	}
	
	h2.cs-founder-title br {
		display: none;
	}
	
	.cs-about-images {
		justify-content: space-between;
	}
	
	.cs-hero-content h1 {
		font-size: 44px;
	}
	
/* 	DROPDOWN FOR IPAD AND PHONES */
	
	.menu-item-has-children > .sub-menu {
        display: none;
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }

    .menu-item-has-children.open > .sub-menu {
        display: block;
    }

    .menu-item-has-children > a {
        position: relative;
        padding-right: 25px;
    }

    .menu-item-has-children > a::after {
        content: "▼";
        position: absolute;
        right: 0px;
			 	top: 3px;
        font-size: 12px;
        transition: 0.3s ease;
    }

    .menu-item-has-children.open > a::after {
        transform: rotate(180deg);
    }

}

@media (max-width: 768px){
	
	.cs-about-box p {
    	max-width: none;
	}
	
	.cs-about-images{
		margin-top: 40px;
	}
	
	.cs-about {
    	padding-bottom: 0;
	}
	
	.cs-moments-row{
		flex-direction: column;
	}
	
	.promise-card{
		max-height: none;
		height: fit-content;
	}

	.why-choose {
    	padding: 20px 0;
	}
	
	.footer-info{
		flex-wrap: wrap;
	}
	

	
}

@media (max-width: 591px){
	
	.cs-about-images{
		flex-direction:column
	}
	
	.cs-about-images img{
		width: 100%
	}
	
	.why-card-one{
		min-height:220px
	}
	
	.promise-card {
        margin-top: 25px;
    }
	
	.cs-hero {
		padding: 60px 0;
	}
	
	.cs-founder-image img{
		width: 100%;
        border-radius: 23px;
	}
	
	.why-cards {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.footer-social {
    	margin-left: 0;
    	margin-bottom: 20px;
	}
	
	.footer-info{
		flex-direction: column;
	}
	
	.promise-cards {
        grid-template-columns: repeat(1, 1fr);
    }
	
	.promise-card.promise-card-four {
    	margin-top: 20px;
	}
	
	.footer-info {
    	border-radius: 30px;
	}
	
	.navbar-top-logo{
		text-align: center;
		margin-bottom: 10px;
	}
	
	.footer-list{
		list-style: none;
	}
}
