@import "navbar.css";
@import "footer.css";
/* @import "hp-gallery.css"; */

:root {
    scroll-behavior: smooth;
    --default-font: "Inter", sans-serif;
    --heading-font: "Saira", sans-serif;
    
    --primary-color: #093D84;
    --royal-blue: #2576E8;
    --heading: #154282;
    --bluish-cyan: #008EC4;
    --bluish-cyan-light: #7ED0F4;
    --cyan-blue: #0F4793;
    --light-blue: #EBF9FF;
    --blue-cyan: #074293;
	--dark-blue: #052B5F;
    --tealish-blue: #102C5B; 
    --electric-blue: #0D8ECA; 
    --windows-blue: #3369D1;
    /* --sky-blue: #BEF6FF; */
    --sky-blue: #7ed0f4;
    --lighter-blue: #c9dbff;
    --lavender-blue: #DDECFB;
    --blue-whale: #0E2A46;
    --bg-blue-dark: rgba(31, 56, 120, 0.62);
    --frame-purple: #7d0e63;
    --blue-700: #e7f0ff;
    --brown-grey: #9C805D;
    --orange-yellow: #FFC107;
    --text-color: #5c6b7a;
    --soft-peach: #ECECEC;
    --ghost-white: #F7F9FF;
    --default-color: #787878;
    --bg-white-abstract: #E4E3ED;
    
	--black: #000000;
	--white: #ffffff;
    --vista-white: #FFF7F7;
    --white-blur: #fff3;
    --white-smoke: #F3F4F6;
    
    --white-800: #f8fafc;
    --grey-600: #eef2f7;
    --white-500: #f5f7fb;
    --grey-500: #DFE3E8;
    --grey-700: #81848A;
    --dark-gery: #BDBDBD;
    --btn-grad1: #003178;
    --btn-grad2: #005BDE;
    
    --shadow1: 0 18px 40px rgba(0, 0, 0, 0.22);
}

body {
    background-color: var(--white-500);
    font-family: var(--default-font);
    color: var(--default-color);
    overflow-x: hidden;
    /* padding-top: 100px; */
    scroll-behavior: smooth;
    overflow-x: hidden;
}
p, label, a, p, li, span, strong, b {
    font-family: var(--default-font);
}
p {
    color: var(----grey-700);
    font-weight: 400;
    line-height: 1.6em;
}
li {color: var(----grey-700);}
a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: var(--sky-blue);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-family: var(--heading-font);
}

section {
    scroll-margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.ptb-60 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.text-brown {
    color: var(--brown-grey);
}
.text-heading {
    color: var(--primary-color);
}
.text-sky-blue {
    color: var(--sky-blue);
}
.theme-breadcrumb {
    margin-bottom: 30px;
}
.theme-breadcrumb .breadcrumb li {
    color: var(--white);
}
.theme-breadcrumb .breadcrumb li a {
    color: var(--sky-blue);
}
.theme-breadcrumb .breadcrumb li a:hover {
    color: var(--white);
}
.theme-breadcrumb .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

/* scrollbar css */
.scrollbar {
  position: relative;
  overflow-x: hidden;
	overflow-y: scroll;
  scrollbar-color: var(--royal-blue);
  scrollbar-width: 1px;
  -ms-overflow-style: none;
}
.scrollbar::-webkit-scrollbar {
  height: 2px;
  width: 3px;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0.1);
}
.scrollbar:hover::-webkit-scrollbar-thumb {
  background-color: var(--royal-blue);;
  border-radius: 20px;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--royal-blue);;
}
/* .end scrollbar css */

.gradient-text {
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--heading) 100%);
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text1 {
    background: linear-gradient(180deg, var(--blue-cyan) 42.31%, var(--dark-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title {
    color: var(--primary-color);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 24px;
}

.bg-light-gradient {
    background: linear-gradient(135deg, var(--white) 0%, color-mix(in srgb, var(--primary-color), transparent 90%) 100%);
}

.theme-btn {
    background: linear-gradient(to right, var(--royal-blue) 0%, var(--dark-blue) 100%);
    border: 1px solid var(--royal-blue);
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 7px 18px;
    transition: all .5s ease-in-out;
}
.theme-btn:hover {
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--royal-blue) 100%);
}
.theme-btn-outline {
    font-family: var(--default-font);
    background: transparent;
    border: 1px solid var(--royal-blue);
    color: var(--royal-blue);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 14px;
    transition: all .3s ease;
}
.theme-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.theme-btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--heading) !important;
    font-weight: 600;
}
.theme-btn-white:hover {
    color: var(--white) !important;
}

.shadow-5 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.shadow-6 {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.shadow-7 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}
.shadow-8 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.theme-outline {
    /* border-radius: 20px;
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(to right, var(--royal-blue), var(--heading)) border-box;
    border: 3px solid transparent;
    box-shadow: 0 4px 30px rgba(0,0,0,.04); */
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--soft-peach);
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0 8.57px 34.278px -8.57px rgba(13, 71, 161, 0.08);

    transition: 0.4s;
}
.theme-btn-link {
    color: var(--heading);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
}
.theme-btn-link:hover {
    color: var(--sky-blue);
}
.theme-btn-link:hover img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(81%) saturate(307%) hue-rotate(167deg) brightness(97%) contrast(97%);
}

.theme-accordion .accordion-item .accordion-header .accordion-button {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 9px !important;
}
.theme-accordion .accordion-item .accordion-header .accordion-button::after {
    color: var(--white);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.theme-accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
}
.theme-accordion .accordion-item {
    margin-bottom: 16px;
    border-radius: 16px !important;
}

.mh-200 {
    height: 200px;    
}
.bg-shape {
    position: absolute;
    right: -320px;
    top: 20%;
    width: 600px;
    height: 70%;
    background-color: var(--lavender-blue);
    border-radius: 100%;
    z-index: -1;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
}
.green-venue-page .bullet-list {
    margin-bottom: 0px;
}
.bullet-list li {
    position: relative;
    padding: 15px 15px 15px 45px;
    margin-bottom: 12px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.bullet-list li:last-child {
    margin-bottom: 0px;
}

.bullet-list li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--royal-blue);
}

.bullet-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.theme-pagination .page-link{
    border-radius: 8px;
    border-color: var(--dark-gery);
    color: var(--black);
    text-align: center;
    width: 40px;
}

.theme-pagination .active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.theme-pagination .prev-arrow a,
.theme-pagination .next-arrow a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
.theme-pagination .page-link:focus {
    box-shadow: none;
}

.theme-pagination .page-item {
    border-radius: 4px;
}

.grid-swiper-pagination {
    bottom: 10%;
}
.grid-swiper-pagination .swiper-pagination-bullet {
    background: var(--white);
    width: 30px;
    height: 5px;
    border-radius: 2px;
    opacity: 0.8;
}
.grid-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--sky-blue);
}

/* Hero banner */
.hero-section {
    background-color: var(--ghost-white);
    height: 100vh;
}
.hp-hero-slider .swiper-button-prev,
.hp-hero-slider .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(9, 61, 132, 0.9);
    border-radius: 8px;
    color: var(--white);
    padding: 12px;
}
.hp-hero-slider .swiper-button-prev, .swiper-navigation-icon,
.hp-hero-slider .swiper-button-next, .swiper-navigation-icon {
    font-size: 14px;
}

.hp-hero-slider .swiper-button-prev {
  left: 4%;
}

.hp-hero-slider .swiper-button-next {
  right: 4%;
}

.hp-hero-slider .swiper-pagination {
    bottom: 10%;
}
.hp-hero-slider .swiper-pagination-bullet {
    background: var(--white);
    width: 30px;
    height: 5px;
    border-radius: 2px;
    opacity: 0.8;
}
.hp-hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
}
#hp-bg-video {
    min-width: 100%;
    max-width: 100%;
    /* height: 700px; */
    height: 100vh;
    object-fit: cover;
}
/* Hero banner */


.hp-cta-sec {
    background-color: var(--ghost-white);
    padding: 40px 0px;
    position: relative;
}
.hp-cta-sec .card {
    border-radius: 14px;
    background-color: var(--white);
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.hp-cta-sec .card .card-body {
    padding: 20px;
}
.hp-cta-sec .card .card-body h4 {
    color: var(--dark-blue);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.hp-cta-sec .card .card-body p {
    color: #425466;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 16px;
    width: 90%;
}
.hp-cta-sec .card .card-body .theme-btn {
    border-radius: 8px;
    font-weight: 500 !important;
    padding: 7px 20px;
    letter-spacing: 0.25px;
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--royal-blue) 100%);
    transition: all .3s;
}
.hp-cta-sec .card .card-body .theme-btn:hover,
.hp-cta-sec .card .card-body .theme-btn:focus {
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
}



.white-grid {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all .3s;
}
.white-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--cyan-blue);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    transition: all 0.4s;
}

a#scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--blue-cyan), transparent 20%);
    color: var(--white);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.swiper-control .swiper-button-prev,
.swiper-control  .swiper-button-next {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    padding: 12px;
    box-shadow: 4px 4px 21px 0px #00000024;
}
.swiper-control .swiper-pagination-bullet {
    background: var(--sky-blue);
    width: 30px;
    height: 7px;
    border-radius: 2px;
    opacity: 0.8;
}
.swiper-control .swiper-pagination-bullet-active {
    background: var(--bluish-cyan);
}
.swiper-control .swiper-button-prev,
.swiper-control .swiper-navigation-icon,
.swiper-control .swiper-button-next,
.swiper-control .swiper-navigation-icon {
    font-size: 18px;
}
/* Social Contact */


.hall-benefits {
    background-color: transparent;
    position: relative;
    top: -110px;
    width: 100%;
    padding: 10px 0px 0px 0px;
    transform: translate(0px, 0px);
    z-index: 5;
}
.hall-benefits .grid-box {
    border-radius: 19px;
    border: 2px solid var(--heading);
    background: var(--white);
    padding: 24px;
    box-shadow: 0 0 29px -2px rgba(0, 0, 0, 0.19);
    transition: all .35s ease;
    width: 100%;
}
.hall-benefits .grid-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.hall-benefits .grid-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 35px;
    background: linear-gradient(180deg, var(--blue-cyan) 42.31%, var(--dark-blue) 100%);
    color: var(--white);
    font-size: 24px;
}
.hall-benefits .grid-box h3, .hall-benefits .grid-box h4 {
    color: var(--heading);
    font-size: 18px;
    font-weight: 700;
}
.hall-benefits .grid-box h4 {
    font-weight: 500;
    color: rgb(21 66 130 / 90%);
}
.hall-benefits .grid-box h3 {
    font-size: 32px;
}


.hall-benefits-sec {
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    width: 100%;
    padding: 40px 0px;
    top: -4px;
}
.hall-benefits-sec .grid-box {
    border-radius: 19px;
    background: var(--white);
    padding: 24px;
    width: 100%;
    border-radius: 20.567px;
    background: rgba(255, 255, 255, 0.00);
    box-shadow: 0 8.57px 34.278px -8.57px rgba(13, 71, 161, 0.08);
    transition: all .35s ease;
}
.hall-benefits-sec .grid-box:hover {
    transform: translateY(-6px);
}
.hall-benefits-sec .grid-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 35px;
    background: linear-gradient(180deg, var(--blue-cyan) 42.31%, var(--dark-blue) 100%);
    color: var(--white);
    font-size: 24px;
}
.hall-benefits-sec .grid-box h3, .hall-benefits-sec .grid-box h4 {
    color: #006876;
    font-size: 18px;
    font-weight: 700;
}
.hall-benefits-sec .grid-box h4 {
    font-family: var(--default-font);
    font-weight: 400;
    color: #434652;
    line-height: 20.567px;
    width: 80%;
    margin: 0 auto;
}
.hall-benefits-sec .grid-box h3 {
    font-size: 32px;
}


/* About sir end */
.hp-about-us {
    padding: 10px 0px 60px 0px;
}
.hp-about-us .theme-outline {
    padding-bottom: 0px;
}
.hp-about-us .inner-wrapper {
    padding: 10px 6px 20px 6px;
}
.hp-about-us .inner-wrapper .right-content {
    padding-left: 40px;
}
.hp-about-us .inner-wrapper .avtar-img {
    position: relative;
}
.hp-about-us .inner-wrapper .avtar-img img {
    border-radius: 16px;
    position: relative;
}
.hp-about-us .inner-wrapper .avtar-img .info {
    border-radius: 10px;
    background-color: var(--tealish-blue);
    position: absolute;
    bottom: -20px;
    right: -35px;
    max-width: 210px;
    text-align: center;
    padding: 24px;
}
.hp-about-us .inner-wrapper .avtar-img .info h4 {
    font-size: 20px;
    margin-bottom: 0px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.4em;
}
.hp-about-us .inner-wrapper p {
    color: var(--black);
}
/* About sir end */

/* About Center info */
.hp-center-info .theme-pills {
    margin: 20px auto 20px auto;
    padding-bottom: 20px;
}
.pills-exhibitions-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-center-info .theme-pills .nav-item .nav-link {
    min-width: 260px;
    min-height: 50px;
}
.theme-pills .nav-item .nav-link {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    background: var(--heading);
    color: var(--white);
    border: 2px solid var(--heading);
    border-radius: 10px;
}
.theme-pills .nav-item .nav-link.active {
    background: var(--white) !important;
    color: var(--heading);
    border-color: var(--heading) !important;
    box-shadow: 0 0 49px -2px rgba(0, 0, 0, 0.19);
}
.theme-tab-content {
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(to right, var(--royal-blue), var(--heading)) border-box;
    border: 3px solid transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .04);
}

.hp-center-info .content {
    padding: 0px 2%;
}
.hp-center-info .exhi-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}
.hp-center-info .key-amenities .exhi-space {
    justify-content: start;
}
.hp-center-info .exhi-space .exhi-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* max-width: 188px;
    max-width: 220px; */
}
.hp-center-info .exhi-space .exhi-inner p {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}
.hp-center-info .exhi-space .exhi-inner .icon {
    margin-right: 16px;
}

.hp-center-info .exhi-space .icon {
    background-color: var(--light-blue);
    border-radius: 16px;
    width: 50px;
    height: 50px;
    min-height: 50px;
    min-width: 50px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-center-info .exhi-space .icon i {
    font-size: 22px;
    color: var(--bluish-cyan);
}

.hp-center-info .card {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
}
.hp-center-info .card:after {
    content: "";
    background: linear-gradient(0deg, rgb(0, 0, 0) 3%, rgba(0, 0, 0, 0.3) 69%);
    height: 100%;
    width: 100%;
    border-radius: 0.375rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.hp-center-info .card img {
    transition: transform 0.5s ease;
}
.hp-center-info .card h4 {
    transition: 1s;
}
.hp-center-info .card:hover img {
    transform: scale(1.1);
}
.hp-center-info .card:hover h4 {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
/* About Center info end */

.hp-association-partners {
    padding: 40px 0px 50px 0px;
}
.hp-association-partners .card {
    padding: 6px 10px;
    background-color: var(--white);
    border-radius: 6px;
    border: 1px solid var(--grey-700);
    /* box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25); */
    overflow: hidden;
    text-align: center;
    width: 100%;
    transition: all .35s ease;
}
.hp-association-partners .card img {
    object-fit: contain;
    padding: 5px;
    max-width: 100%;
    width: auto;
    height: auto;
}
.hp-association-partners .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.hp-getting-here {
    background-image: url("../img/CIDCO-Convention-Center1.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-page .hp-getting-here::after {
    content: "";
    background-color: rgba(9, 61, 132, 0.4);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.contact-page .hp-getting-here .container {
    z-index: 1;
}
.contact-page .hp-getting-here .title {
    background: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hp-by-location-info {
    padding: 60px 0px;
    margin-top: -160px;
    position: relative;
}
.hp-by-location-info .white-box {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.hp-by-location-info .theme-tab-content {
    background: transparent;
    box-shadow: none;
    padding: 40px;
}
.hp-by-location-info .theme-pills {
    /* gap: 20px; */
    padding-bottom: 6px;
}
.hp-by-location-info .theme-pills .nav-item {
    width: 100%;
}
.hp-by-location-info .theme-pills .nav-item:first-child .nav-link {
    border-top-left-radius: 10px;
}
.hp-by-location-info .theme-pills .nav-item:last-child .nav-link {
    border-top-right-radius: 10px;
}
.hp-by-location-info .theme-pills .nav-item .nav-link {
    background: var(--blue-cyan);
    border-radius: 0px;
    padding: 16px;
    width: 100%;
    white-space: nowrap;
    min-width: 220px;
}
.hp-by-location-info .theme-pills .nav-item .nav-link.active {
    box-shadow: none;
}
.hp-by-location-info .theme-pills .nav-item .nav-link i {
    margin-right: 10px;
}
.hp-by-location-info .theme-pills .nav-item .nav-link .bi-airplane:before {
    transform: rotate(33deg);
}
.hp-by-location-info p {
    color: var(--black);
}
/* .hp-by-location-info .theme-pills .nav-item:nth-child(1) .nav-link {
    background: #1558B5;
}
.hp-by-location-info .theme-pills .nav-item:nth-child(2) .nav-link {
    background: #3498DB;
}
.hp-by-location-info .theme-pills .nav-item:nth-child(3) .nav-link {
    background: #0D8ECA;
}
.hp-by-location-info .theme-pills .nav-item:nth-child(4) .nav-link {
    background-color: #0D6CCA;
}
.hp-by-location-info .theme-pills .nav-item:nth-child(5) .nav-link {
    background-color: #13B7DC;
} */

.hp-event-calender {
    position: relative;
    padding: 46px 0px;
}
.hp-event-calender .filter-section .search-box {
    border-radius: 50px;
    padding-left: 20px;
    position: relative;
}
.hp-event-calender .filter-section .search-box .form-control {
    border-color: var(--lighter-blue);
    min-height: 45px;
}
.hp-event-calender .filter-section .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--royal-blue);
}
.hp-event-calender .filter-section .search-box .form-control::placeholder {
    color: rgba(33, 37, 41, 0.55);
    opacity: 1;
}
/* For better browser support */
.hp-event-calender .filter-section .search-box .form-control::-webkit-input-placeholder {
    color: rgba(33, 37, 41, 0.55);
}
.hp-event-calender .filter-section .search-box .form-control:-ms-input-placeholder {
    color: rgba(33, 37, 41, 0.55);
}
.hp-event-calender .filter-section .search-box .form-control::-ms-input-placeholder {
    color: rgba(33, 37, 41, 0.55);
}
.hp-event-calender .filter-section .search-box i {
    position: absolute;
    right: 15px;
    top: 9px;
    font-size: 18px;
    color: var(--royal-blue);
    cursor: pointer;
}
.hp-event-calender .theme-pills .nav-item .nav-link {
    background: var(--blue-700);
    border-color: var(--blue-700);
    color: var(--heading);
    font-size: 18px;
}
.hp-event-calender .theme-tab-content {
    background: transparent;
    margin-top: 20px;
    box-shadow: none;
}
.hp-event-calender .theme-btn-outline {
    font-family: var(--heading-font);
    font-weight: 600;
}
.hp-event-calender .event-card {
    /* border: 2px solid var(--bluish-cyan);
    border-radius: 15px; */
    /* background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--soft-peach);
    box-shadow: 0 8.57px 34.278px -8.57px rgba(13, 71, 161, 0.08); */

    transition: all .3s ease;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #ECECEC;
    background: var(--white);
    box-shadow: 0 8.57px 34.278px -8.57px rgba(13, 71, 161, 0.08);
}
.hp-event-calender .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--royal-blue);
}
.hp-event-calender .event-img {
    border-radius: 10px !important;
    width: 100%;
    height: 90px;
    object-fit: contain;
}
.hp-event-calender .date-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--black);
}
.hp-event-calender .date-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


.contact-form-section {
    position: relative;
    /* background-attachment: fixed; */
    padding: 50px 0px;
}
.contact-form-section:after {
    content: "";
    background-image: url("../img/contact-form-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 70%;
    position: absolute;
    top: 0;
    z-index: 0;
}
.contact-form-section .container {
    position: relative;
    z-index: 2;
}
.contact-form-section .contact-form-bg {
    border-radius: 14px;
    padding: 24px;
    background: rgba(12, 66, 143, 0.7);
    box-shadow: 0 20px 30px 0 rgba(102, 106, 245, 0.13);
}
.contact-form-section .contact-form-bg h2 {
    font-size: 22px;
}
.contact-form-section .contact-form-bg label {
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 14px;
}
.contact-form-section .contact-form-bg .form-control {
    font-family: var(--default-font);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.2px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-left: 2px solid var(--lighter-blue) !important;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}
.contact-form-section .contact-form-bg .form-control:focus {
    border-color: var(--white);
    box-shadow: none;
}
.contact-form-section .contact-form-bg .namePrefix {
    position: relative;
}
.contact-form-section .contact-form-bg .namePrefix .form-control {
    padding-left: 66px;
}
.contact-form-section .contact-form-bg .namePrefix select {
    font-size: 14px;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: auto;
    left: 0;
    max-width: 70px;
    background-color: transparent;
    color: var(--white);
    padding: 0px 8px;
    border: none;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(3962%) hue-rotate(1deg) brightness(111%) contrast(106%);
}
.contact-form-section .contact-form-bg .namePrefix select:focus {
    box-shadow: none;
}
.contact-form-section .contact-form-bg .iti {
    width: 100%;
}
.contact-form-section .contact-form-bg .iti--separate-dial-code .iti__selected-flag {
    /* background-color: transparent; */
    color: var(--white);
    font-size: 14px;
}
.contact-form-section .contact-form-bg .iti__flag-container .iti__country-list {
    white-space: pre-wrap;
    min-width: 260px;
}
.contact-form-section .bi-calendar4-week {
    color: var(--lighter-blue) !important;
    font-size: 14px !important;
}
.contact-form-section .contact-form-bg .captcha {
    position: relative;
}
.contact-form-section .contact-form-bg .captcha .input-group-addon {
    background-color: rgba(39, 71, 136, 0.1);
    background-color: rgba(9, 61, 132, 0.6);
    color: var(--white);
    font-size: 14px;
    position: absolute;
    /* top: 42%; */
    top: 49%;
    right: 2px;
    transform: translate(0px, 0px);
    /* padding: 11px 12px; */
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.contact-form-section .contact-form-bg .row {
    margin-bottom: 18px;
}
/* .contact-form-section .contact-form-bg .form-select::after {
    content: '';
    height: 9px;
    width: 9px;
    position: relative;
    top: 2px;
    left: 3px;
    border-top: var(--white) solid 3px;
    border-left: var(--white) solid 3px;
    border-right: none;
    transform: rotate(225deg);
    transition: .5s;
} */
.contact-form-section .theme-btn-white {
    font-size: 14px;
}
.contact-form-section .theme-btn-white i {
    font-size: 14px;
}
.form-select {
    color: rgba(255, 255, 255, 0.60);
    position: relative;
}
.select-wrapper {
    position: relative;
}
.select-wrapper::after {
    content: "";
    background-image: url("../img/icon/down-arrow.svg") !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 8px;
    right: 7px;
}
.form-select option {
    background: rgba(255, 255, 255, 0.05);
    color: var(--heading);
}
.form-select:invalid {
    color: var(--white);
}
.form-select:focus {
    color: var(--white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.60);
    opacity: 1;
}
/* For better browser support */
.form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.60);
}
.form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.60);
}
.form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.60);
}


/* Homepage Our Services */
.homepage {
    background-color: var(--white);
}
.hp-our-services-section {
    background-image: url("../img/our-services2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}
.hp-our-services-section .title {
    margin-bottom: 0px;
}
.hp-our-services-section .row-wrapper {
    margin: 10px auto 20px auto;
}
.hp-our-services-section .service-card {
    border: 2px dashed var(--blue-whale);
    border-radius: 20px;
    transition: all .4s ease;
    padding: 40px 25px;
    background: var(--white);
    cursor: pointer;
}
.hp-our-services-section .service-card .icon-circle {
    width: 70px;
    height: 70px;
    background: var(--blue-whale);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: .4s;
}
.hp-our-services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.hp-our-services-section .service-card.active {
    border-radius: 30px;
    background: linear-gradient(180deg, var(--tealish-blue) 0%, var(--heading) 100%);
    color: var(--white);
    border: none;
}
.hp-our-services-section .service-card.active .icon-circle {
    background: var(--white);
    color: var(--heading);
}
.hp-our-services-section .service-card.active p {
    color: rgba(255,255,255,0.85);
}
.our-services-page .hp-our-services-section .col-md-6:nth-child(even) .service-card {
    background: linear-gradient(180deg, var(--tealish-blue) 0%, var(--heading) 100%);
    color: var(--white);
}
.our-services-page .hp-our-services-section .col-md-6:nth-child(even) .service-card .icon-circle {
    background: var(--white);
    color: var(--heading);
}
.our-services-page .hp-our-services-section .col-md-6:nth-child(even) .service-card p {
    color: rgba(255,255,255,0.85);
}
/* Homepage Our Services */

/* Hotels/ Accommodation Near CECC */
.accommodation-list-sec .theme-pills {
    margin-bottom: 30px;
}
.accommodation-list-sec .theme-pills .nav-item .nav-link {
    font-size: 16px;
    white-space: nowrap;
    min-width: 160px;
}
.accommodation-list-sec .horizontal-hotel-card .icon-box {
    min-width: 38px;
    min-height: 38px;
}
.accommodation-list-sec .horizontal-hotel-card .info-item a {
    white-space: normal;
    word-break: break-word;
}
.horizontal-hotel-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: var(--white);
}
.horizontal-hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.horizontal-hotel-card .hotel-image {
    position: relative;
    overflow: hidden;
}
.horizontal-hotel-card .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.horizontal-hotel-card:hover img {
    transform: scale(1.08);
}
.horizontal-hotel-card .rating-badge {
    position: absolute;
    top: 15px;
    left: 25px;
    background: var(--orange-yellow);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
}
.horizontal-hotel-card .stars i {
    color: var(--orange-yellow);
    font-size: 14px;
}
.horizontal-hotel-card .info-item {
    font-family: var(--default-font);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--bs-secondary-color);
}
.horizontal-hotel-card .info-item i {
    font-size: 14px;
    color: var(--heading);
}
.horizontal-hotel-card .info-item a {
    color: var(--heading);
}
.horizontal-hotel-card .info-item a:hover {
    color: var(--bluish-cyan);
}
.horizontal-hotel-card .book-btn {
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--royal-blue), var(--heading));
    border: none;
}
.horizontal-hotel-card .book-btn:hover {
    background: linear-gradient(135deg, var(--heading), var(--royal-blue));
}

.horizontal-hotel-card .available {
    background: #e9f7ef;
    color: #28a745;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.horizontal-hotel-card .icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading);
    font-size: 18px;
}
/* Hotels/ Accommodation Near CECC End */

.our-vision-mission-section {
    background-color: var(--white);
    background: url("../img/bg-pattern.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-bottom: 80px;
}
.our-vision-mission-section .card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 11.103px 66.62px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    margin-right: 20px;
    transition: all .3s ease;
}
.our-vision-mission-section .card::after {
    content: "";
    background-color: var(--heading);
    width: 100%;
    height: 100%;
    border-radius: 22px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
}
.our-vision-mission-section .card:hover::after {
    top: 0px;
    left: 0px;
}
.our-vision-mission-section .card:hover {
    transform: translateX(5px);
}
.our-vision-mission-section .card h4,
.our-vision-mission-section .card .icon-box i,
.our-vision-mission-section .card p {
    transition: all .3s ease;
}
.our-vision-mission-section .card:hover h4,
.our-vision-mission-section .card:hover .icon-box i,
.our-vision-mission-section .card:hover p {
    color: var(--white);
}
.our-vision-mission-section .card .icon-box {
    background-color: var(--light-blue);
    border-radius: 16px;
    width: 50px;
    height: 50px;
    min-height: 50px;
    min-width: 50px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-vision-mission-section .card .icon-box i {
    font-size: 22px;
    color: var(--bluish-cyan);
}
.our-vision-mission-section .card .card-header{
    background-color: transparent;
    border-bottom: none;
    padding: 16px;
}
.our-vision-mission-section .card:hover .icon-box {
    background: rgba(255,255,255,0.12)
}
.our-vision-mission-section .card .floating-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(21, 66, 130, 0.35), transparent);
    position: relative;
    z-index: 1;
}
.our-vision-mission-section .card:hover .floating-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent);
}

.our-awards-section {
    /* background: linear-gradient(135deg,#4b6cb7,#182848);
    background: radial-gradient(circle at top,#1a2a6c,#16222a); */
    background: radial-gradient(circle at top,#1a2a6c,#182848);
    /* background: linear-gradient(135deg,var(--primary-color), var(--heading));
    background: linear-gradient(180deg, var(--royal-blue) 0%, var(--heading) 100%) */
}
.our-awards-section .card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: 0.4s;
    position: relative;
}
.our-awards-section .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.6s;
}
.our-awards-section .card:hover::before {
    left: 100%;
}

.our-awards-section .card:hover {
    transform: translateY(-8px);
    transform: rotateX(6deg) rotateY(-6deg) scale(1.03);
    box-shadow: 0 10px 20px rgba(26, 42, 108, 0.3);
}
.our-awards-section .card img {
    padding: 4px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.our-awards-section .card p {
    color: var(--white-smoke);
    margin-bottom: 0px;
}
.our-awards-section .card .card-body {
    padding: 30px;
}

.attractions-section {
    position: relative;
}
.attractions-section .row:last-child .place-card .place-body .info-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.attractions-section .place-card {
    background: var(--white);
    border: none;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    /* height: 100%; */
}
.attractions-section .place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.15);
}
.attractions-section .place-card .place-img-wrap {
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}
.attractions-section .place-card .place-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.attractions-section .place-card:hover .place-img {
    transform: scale(1.08);
}
.attractions-section .place-card .place-body {
    padding: 2rem;
}
.attractions-section .place-card .place-body .col-index {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--light-blue);
      color: var(--heading);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-right: 12px;
      flex-shrink: 0;
      /* box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25); */
}
.attractions-section .place-card .place-body .place-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.attractions-section .place-card .place-body .desc {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.attractions-section .place-card .place-body .info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.attractions-section .place-card .place-body .info-item {
    /* background: #f8fbff; */
    background: var(--white-800);
    border: 1px solid #e3eefc;
    border: 1px solid var(--bg-white-abstract);
    border-radius: 14px;
    padding: 12px 14px;
    transition: all 0.3s ease;
    height: 100%;
}
.attractions-section .place-card .place-body .info-item:hover {
    background: #eef6ff;
    transform: translateY(-2px);
}
.attractions-section .place-card .place-body .info-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.attractions-section .place-card .place-body .info-value {
    font-size: 0.95rem;
    color: var(--bs-gray-700);
    margin: 0;
}
.attractions-section .place-card .place-body .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--bluish-cyan);
    margin-right: 8px;
}
.attractions-section .place-card .place-body .divider-space {
    margin: 3rem 0;
}

/* ------- Exhibition Hall CSS ---------- */
.center-info-wrapper .view-link {
    background-color: var(--light-blue);
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 14px;
}
.center-info-wrapper .view-link:hover {
    background-color: var(--electric-blue);
    color: var(--white);
}
.center-info-wrapper .view-link i {
    font-size: 14px;
}
.center-info-wrapper .exhi-space {
    display: flex;
    align-items: center;
    /* justify-content: start; */
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px
}
.center-info-wrapper .exhi-space .info i {
    color: var(--lighter-blue);
    position: relative;
    top: 4px;
}
.center-info-wrapper .content {
    padding-left: 20px;
    padding-right: 20px;
}
/* ------- Exhibition Hall CSS End ---------- */

.audi-key-features-sec .bullet-list li::before {
    content: "\F26A";
    top: 28px;
    color: var(--heading);
}
.audi-key-features-sec .bullet-list li {
    color: var(--bs-gray-800);
}
.audi-key-features-sec .bullet-list li strong {
    color: var(--heading);
    display: block;
}

.event-open-area-section .theme-outline {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.event-open-area-section .col-md-12:nth-child(1) .theme-outline {
    background-image: url("../img/open-area.webp");
}
/* .event-open-area-section .col-md-12:nth-child(2) .theme-outline {
    background-image: url("../img/outdoor-space.jpg");
} */
.event-open-area-section .theme-outline:after {
    content: "";
    background: linear-gradient(0deg, rgb(0, 0, 0) 3%, rgba(0, 0, 0, 0.3) 69%);
    height: 100%;
    width: 100%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.event-open-area-section .theme-outline .row {
    z-index: 2;
    position: relative;
}
.event-open-area-section .col-md-12:nth-child(2) .theme-outline:after {
    display: none;
}

.capacity-chart-section .note {
    background-color: var(--primary-color);
}
.capacity-chart-section .table-responsive {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.capacity-chart-section .table {
    margin-bottom: 0px;
    overflow: hidden;
}
.capacity-chart-section .table thead th {
    position: sticky;
    top: 0;
    background: var(--primary-color);
    color: var(--white);
    z-index: 2;
    text-align: center;
}
.capacity-chart-section .table .section-row {
    background: #d1c8a6;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.capacity-chart-section .table .section-row .text-heading {
    color: var(--primary-color) !important;
}
.capacity-chart-section .table tbody tr {
    transition: all 0.3s ease;
}
.capacity-chart-section .table tbody tr:hover {
    background-color: #f1f7ff;
    transform: scale(1.01);
}
.capacity-chart-section .table td,
.capacity-chart-section .table th {
    font-family: var(--default-font);
    text-align: center;
    vertical-align: middle;
}
.capacity-chart-section .table td:first-child {
    padding-left: 14px;
    font-weight: 600;
}
.capacity-chart-section .table td {
    background-color: var(--white-500);
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: var(--blue-700);
}
.capacity-chart-section .table tr:hover td {
    background-color: transparent;
}
.capacity-chart-section .table td:first-child,
.capacity-chart-section .table th:first-child {
    text-align: left;
}

.floor-plan-section .floor-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.floor-plan-section .floor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.floor-plan-section .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}
.floor-plan-section .img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.5s ease;
    border-radius: 10px;
    padding: 5px;
    
}
.floor-plan-section .img-box:hover img {
    transform: scale(1.15);
    filter: brightness(0.8);
}
.floor-plan-section .floor-card i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 40px;
    opacity: 0;
    transition: 0.5s ease;
}
.floor-plan-section .floor-card:hover i {
    opacity: 1;
}
.privacy-policy-sec {
    padding: 60px 0px;
}
.privacy-policy-sec p {
    display: flex;
}
.privacy-policy-sec p span {
    background-color: var(--bs-gray-100);
    color: var(--heading);
    font-weight: 600;
    position: relative;
    border-radius: 4px;
    padding: 6px;
    margin-right: 10px;
    display: inline-flex;
    height: 38px;
    min-width: 38px;
    align-items: center;
    justify-content: center;
}

.dw-center-sec {
    padding: 60px 0px;
}
.dw-center-sec .card {
    background: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--white));
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: start;
    border: none;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
}
.dw-center-sec .card i {
    font-size: 32px;
    color: var(--electric-blue);
}
.dw-center-sec .card h4 {
    font-weight: 600;
    color: var(--heading);
}
.dw-center-sec .card:hover {
    transform: translateY(-8px) scale(1.02);
    /* background: linear-gradient(135deg, #e9f2ff, #ffffff); */
    background: linear-gradient(135deg, var(--white), var(--blue-700));
}
.dw-center-sec .card:active {
    transform: scale(0.98);
}

.our-blog-sec .blog-card {
    background: var(--white);
    border-radius: 20px;
    /* padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1); */
}
.our-blog-sec .blog-card h2 {
    font-size: 38px;
}
.our-blog-sec .h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading);
}
.our-blog-sec .blog-text {
    /* color: var(--text-color); */
    color: var(--black);
    line-height: 1.8;
}
.our-blog-sec .blog-card p {
    color: var(--black);
    margin-bottom: 2em;
}
.our-blog-sec .blog-img {
    width: 100%;
    border-radius: 15px;
    transition: 0.4s ease;
}
/* .our-blog-sec .blog-img:hover {
    transform: scale(1.05);
} */
.our-blog-sec .divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--bluish-cyan), var(--bluish-cyan-light));
    /* margin-bottom: 20px; */
    margin: 10px auto 20px auto;
}

.green-venue-sec {
    padding: 40px 0px;
}
.green-venue-sec .header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.green-venue-sec .header .col-index {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--light-blue);
      color: var(--heading);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-right: 12px;
      flex-shrink: 0;
}

/* Page header css */
.page-header {
    background-image: url("../img/page-header.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 360px;
    display: flex;
    align-items: end;
    justify-content: start;
    width: 100%;
    position: relative;
}
.page-header:after {
    content: "";
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(23, 27, 42,0.2) 100%); */
    background: linear-gradient(0deg,rgb(0,0,0) 3%,rgba(0,0,0,0.2) 69%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.page-header .container {
    z-index: 1;
}
.page-header h1 {
    text-align: start;
    font-size: 36px;
}
/* Page header css end */

/* careers page */
.careers-section {
    padding: 50px 0px;
}
.careers-section .job-card {
    background: var(--white);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    border: 1px solid var(--grey-600);
    border-left: 2px solid var(--royal-blue);
}
.careers-section .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.careers-section .job-card .job-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}
.careers-section .job-card .job-title {
    font-weight: 600;
    font-size: 18px;
}
.careers-section .job-card .job-meta {
    font-size: 13px;
    color: var(--primary-color);
}
.careers-section .job-card .tag {
    background: #eef2ff;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.careers-section .job-card .apply-btn {
    border-radius: 20px;
    padding: 6px 16px;
}
.careers-section .job-card .job-details {
    margin-top: 15px;
    display: none;
    font-size: 14px;
}
.careers-section .job-card.active .job-details {
    display: block;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.careers-section .job-card .job-details p {
    color: var(--text-color);
    font-size: 14px;
}
.careers-section .job-card .job-details ul li {
    color: var(--text-color);
    font-size: 14px;
}
.careers-section .job-card .view-more {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.careers-section .theme-btn {
    font-size: 14px;
}
/* careers page */



/* Modal Styling */
.careers-form-modal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.careers-form-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}
.careers-form-modal .modal-title {
    font-weight: 600;
}
.careers-form-modal .btn-close {
    font-size: 14px;
    color: var(--black);
    margin-right: 1px;
    position: relative;
}
.careers-form-modal .form-floating input {
    font-family: var(--default-font);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.2px;
    border-radius: 10px;
    padding: 12px;
    height: 46px;
    min-height: 50px;
    border: 1px solid var(--lighter-blue);
    border-left: 2px solid var(--royal-blue) !important;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
}
.careers-form-modal .form-floating input:focus {
    border-color: var(--primary-color);
}
.careers-form-modal .form-floating>label {
    color: var(--heading);
    font-size: 14px;
}
.careers-form-modal .form-floating input:focus {
    border-color: var(--royal-blue);
    box-shadow: none;
}
.careers-form-modal .file-upload {
    border: 2px dashed #dcdcdc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}
.careers-form-modal .file-upload:hover {
    border-color: #4a90e2;
    background: #f0f7ff;
}
.careers-form-modal #fileInfo {
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.careers-form-modal .theme-btn {
    font-size: 14px;
    padding: 11px 18px;
}

.cecc-courtyard .bg-shape {
    height: 100%;
    z-index: 1;
}
.cecc-courtyard .container{
    position: relative;
    z-index: 2;
}
.cecc-courtyard .theme-outline {
    background-color: var(--white);
}
.img-gallery .position-relative {
    border-radius: 16px;
    box-shadow: 4px 4px 1px 4px var(--bs-gray-500);
    transition: box-shadow 0.1s ease-out;
}
.img-gallery .position-relative:hover {
    box-shadow: -4px -1px 1px 4px var(--bs-gray-500);
}
.img-gallery a {
    overflow: hidden;
    height: 100%;
}
.img-gallery img {
    box-shadow: 2px 3px 1px 4px #d5d5d5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.img-gallery img:hover {
    transform: scale(1.08);
}

.event-photos-section .img-gallery img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}
.event-photos-section .img-gallery a:after {
    content: "";
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(23, 27, 42, 0.2) 100%); */
    background: linear-gradient(0deg, rgb(0, 0, 0) 3%, rgba(0, 0, 0, 0.2) 69%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.6s;
}
.event-photos-section .img-gallery a:hover:after {
    opacity: 1;
}
.event-photos-section .img-gallery a h4 {
    opacity: 0;
    transition: 0.6s;
}
.event-photos-section .img-gallery a:hover h4 {
    opacity: 1;
}
.event-photos-section .theme-tab-content {
    background: transparent;
    border: none;
    padding: 0px;
    box-shadow: none;
}
.event-photos-section .theme-pills .nav-item .nav-link {
    font-size: 16px;
    min-width: auto;
    min-height: auto;
}
/* Website sitemap css */
.sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.sitemap-section {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}
.sitemap-section:hover {
    transform: translateY(-5px);
}
.sitemap-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}
.sitemap-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: var(--royal-blue);
}
.sitemap-section ul {
    list-style: none;
}
.sitemap-section ul li {
    margin: 8px 0;
    position: relative;
    padding-left: 18px;
}
.sitemap-section ul li::before {
    content: "–";
    color: var(--bs-gray-800);
    position: absolute;
    left: 0;
    font-size: 14px;
}
.sitemap-section ul li a {
    text-decoration: none;
    color: var(--bs-gray-700);
    font-size: 14px;
    transition: 0.2s;
}
.sitemap-section ul li a:hover {
    color: var(--royal-blue);
    padding-left: 4px;
}
/* website sitemap css end */

.blog-page-header {
    background-image: url(../img/blogs-header.webp);
}
.blog-page-header:after {
    background: linear-gradient(0deg,rgb(0,0,0) 0%,rgba(0,0,0,0) 35%);
}

/* Website float social platforms css */
.social-float {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    background: var(--lavender-blue);
    background-color: color-mix(in oklab, var(--white) 30%, transparent);
    padding: 14px 10px;
    border-radius: 12px 0px 0px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: var(--royal-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-float.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.social-float.icons.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-33%);
    background-color: transparent;
}

.social-icon.facebook, .social-icon.facebook i { background-color:#1877F2; color: var(--white); }
.social-icon.x, .social-icon.x i { background-color:#111111; color: var(--white);}
.social-icon.linkedin, .social-icon.linkedin i { background-color:#0A66C2; color: var(--white);}
.social-icon.instagram, .social-icon.instagram i { background-color:#C13584; color: var(--white);}
.social-icon.youtube, .social-icon.youtube i { background-color:#FF0000; color: var(--white);}

.social-icon.facebook:hover, .social-icon.facebook:hover i { background-color: var(--white); color: #1877F2; }
.social-icon.x:hover, .social-icon.x:hover i { background-color:var(--white); color: #111111;}
.social-icon.linkedin:hover, .social-icon.linkedin:hover i { background-color: var(--white); color: #0A66C2;}
.social-icon.instagram:hover, .social-icon.instagram:hover i { background-color: var(--white); color: #C13584;}
.social-icon.youtube:hover, .social-icon.youtube:hover i { background-color: var(--white); color: #FF0000;}

/* Hover effect */
.social-icon:hover {
    background: var(white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.social-icon i {
    color: color-mix(in srgb, var(--black), transparent 20%);
    transition: all 0.3s ease;
}
.social-icon:hover i {
    color: color-mix(in srgb, var(--theme-gradient1), transparent 0%);
}
.social-float-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}
/* Mobile adjustments */
@media (min-width: 768px) {
    .social-float-btn {
        display: none;
    }
}
@media (max-width: 767.99px) {
    .social-float-btn {
        position: relative;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .social-float {
        box-shadow: none;
        top: auto;
        bottom: 0px;
        right: auto;
        left: 12px;
        transform: translateY(0);
        background-color: transparent;
    }
    .social-float.icons {
        opacity: 0;
        visibility: hidden;
    }
}
/* Website float social platforms css */


.hp-event-statistics {
    position: relative;
    padding: 40px 0px 50px 0px;
}
.hp-event-statistics:after {
    content: "";
    background-color: var(--primary-color);
    height: 60%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.hp-event-statistics .title {
    margin-bottom: 40px;
}
.hp-event-statistics .wrapper {
    background-color: var(--white);
    padding: 30px 16px;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.hp-event-statistics .icon {
    background-color: #EEF2FE;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-event-statistics span {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-left: 6px;
}
.hp-event-statistics .icon i {
    font-size: 26px;
    color: var(--heading);
}
.hp-event-statistics .statistics {
    margin-left: 12px;
    text-align: center;
}
.hp-event-statistics .statistics .counter {
    font-size: 32px;
    font-weight: 600;
}
.hp-event-statistics .statistics h4 {
    color: var(--heading);
    font-weight: 500;
    font-size: 20px;
    opacity: .8;
}

/* Website social feeds */
.hp-social-feeds {
    padding-top: 20px;
}
.hp-social-feeds .social-feeds-wrapper {
    background-color: var(--white);
    padding: 0px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    overflow: hidden;
}
.hp-social-feeds .social-feeds-wrapper .feed-body {
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.hp-social-feeds .social-feeds-wrapper .feed-header {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}
.hp-social-feeds .social-feeds-wrapper .feed-header img {
    max-width: 180px;
}
.hp-social-feeds .social-feeds-wrapper .feed-header i {
    color: var(--white);
    font-size: 20px;
}
.hp-social-feeds .social-feeds-wrapper .feed-body iframe {
    width: 100%;
    height: 100%;
}
/* Website social feeds */

/* Homepage Gallery section */
.hp-gallery-section {
    background: linear-gradient(180deg, var(--royal-blue) 0%, var(--heading) 100%);
    padding: 40px 0px 60px 0px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}
.hp-gallery-section h2 {
    padding-bottom: 50px;
}
.hp-gallery-section .gallery-stack {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Main Image */
.hp-gallery-section .gallery-stack .img-main {
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: 0.4s;
}

/* Small Images */
.hp-gallery-section .gallery-stack .img-small {
    position: absolute;
    width: 60%;
    border-radius: 12px;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.4s;
}

/* Positioning */
.hp-gallery-section .gallery-stack .img-1 {
    bottom: -25px;
    left: -20px;
    transform: rotate(-8deg);
}
.hp-gallery-section .gallery-stack .img-2 {
    top: -25px;
    right: -20px;
    transform: rotate(8deg);
}

/* Center variation */
.hp-gallery-section .gallery-stack .center .img-1 {
    left: 10px;
}
.hp-gallery-section .gallery-stack .center .img-2 {
    right: 10px;
}

/* Hover Effects */
.hp-gallery-section .gallery-stack:hover .img-main {
    transform: scale(1.05);
}
.hp-gallery-section .gallery-stack:hover .img-small {
    transform: scale(1.1) rotate(0deg);
}

.sitemap-sec {
    padding: 60px 0px;
}

/* Responsive */
@media (max-width: 768px) {
    .hp-gallery-section {
        padding: 60px 30px;
    }
    .hp-gallery-section .gallery-stack .img-small {
        width: 50%;
    }
    .hp-gallery-section .gallery-stack .img-1 {
        left: 0;
    }
    .hp-gallery-section .gallery-stack .img-2 {
        right: 0;
    }
}
/* End Homepage Gallery section */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hp-about-us .inner-wrapper .avtar-img {
        margin-bottom: 40px;
    }
}
@media (max-width: 991.98px) {
    .hero-section {
        height: 100%;
    }
    #hp-bg-video {
        height: 100%;
    }
    .hall-benefits {
        background-color: var(--white);
        padding: 40px 0px;
        top: 0px;
    }
    .hp-about-us {
        padding: 0px 0px 40px 0px;
    }
    .hp-about-us .inner-wrapper .right-content {
        padding-left: 0px;
    }
    .hp-about-us .inner-wrapper .avtar-img .info {
        bottom: -44px;
        right: 32px;
    }
    .hp-center-info {
        padding: 40px 0px;
    }
    .exhi-hall-grid {
        padding: 40px 0px !important;
    }
    .exhi-hall-grid .hp-center-info {
        padding: 20px;
    }
    .hp-association-partners {
        padding: 40px 0px;
    }
    .hp-getting-here {
        min-height: 364px;
    }
    .hp-by-location-info .theme-tab-content {
        padding: 20px;
    }
    .hp-by-location-info .theme-pills .nav-item .nav-link {
        padding: 12px 16px;
        font-size: 18px;
    }
    .attractions-section .place-card .place-img-wrap {
        min-height: 260px;
    }
    .mh-200 {
        height: 400px;
    }
    .hall-benefits-sec {
        padding: 40px 0px;
    }
    .hall-benefits-sec .grid-box h4 {
        width: 73%;
    }
    .auditorium-hall-overview {
        padding: 40px 8px;
    }
    .audi-key-features-sec {
        padding: 40px 8px;
    }
    .event-open-area-section {
        padding: 40px 0px;
    }
    .event-open-area-section .theme-outline {
        padding: 20px;
    }
    .event-open-area-section .theme-outline p {
        margin-bottom: 0px;
    }
    .cecc-courtyard {
        padding: 40px 0px;
    }
    .attractions-section {
        padding: 40px 0px;
    }
    .about-navi-mumbai-sec {
        padding: 40px 0px !important;        
    }
    .about-cecc-sec {
        padding: 40px 0px !important;
    }
    .md-message-sec {
        padding: 10px 0px 40px 0px !important;
    }
    .our-services-page .hp-our-services-section {
        padding: 16px 0px 40px 0px;
    }
    .our-services-page .hp-our-services-section .row-wrapper {
        margin: 0px;
    }
    .upcoming-event-page .hp-event-calender, .past-event-page .hp-event-calender {
        padding: 40px 0px 16px 0px;
    }
    .dw-center-sec {
        padding: 40px 0px;
    }
    .privacy-policy-sec {
        padding: 40px 0px;
    }
    .sitemap-sec {
        padding: 40px 0px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hp-cta-sec .card .card-body .theme-btn {
        font-size: 14px;
        white-space: nowrap;
    }
    .hp-cta-sec .card .card-body h4 {
        font-size: 20px;
    }
    .hp-cta-sec .card .card-body p {
        font-size: 14px;
        width: 100%;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hp-hero-slider .swiper-button-prev, .hp-hero-slider .swiper-button-next {
        padding: 16px;
        width: 50px;
        height: 50px;
    }
    .hp-hero-slider .swiper-button-prev {
        left: 6%;
    }
    .hp-hero-slider .swiper-button-next {
        right: 6%;
    }
    .hp-getting-here {
        min-height: 464px;
    }
    .attractions-section {
        padding: 40px 0px;
    }
    .our-blog-sec {
        padding: 40px 0px;
    }
}

@media (max-width: 767.98px) {
    .title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .theme-outline {
        padding: 10px;
    }
    .hp-hero-slider .swiper-button-prev, .hp-hero-slider .swiper-button-next {
        padding: 9px;
        width: 35px;
        height: 35px;
    }
    .hp-hero-slider .swiper-pagination {
        bottom: 6%;
    }
    .hp-hero-slider .swiper-pagination-bullet {
        width: 20px;
    }
    .hp-center-info .theme-pills .nav-item .nav-link {
        min-width: auto;
        min-height: auto;
    }
    .theme-pills .nav-item .nav-link {
        font-size: 18px;
        padding: 10px 25px;
    }
    .hall-benefits {
        padding: 30px 0px 20px 0px;
    }
    .hall-benefits .grid-box {
        padding: 18px;
    }
    .hall-benefits .grid-box .icon {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }
    .hall-benefits .grid-box h3, .hall-benefits .grid-box h4 {
        font-size: 18px;
    }
    .hall-benefits .grid-box h3 {
        font-size: 20px;
    }
    .hp-about-us {
        padding: 0px 8px 30px 8px !important;
    }
    .hp-about-us .inner-wrapper .avtar-img {
        margin-bottom: 20px;
    }
    .hall-benefits .grid-box {
        box-shadow: 0 0 19px -2px rgba(0, 0, 0, 0.19);
    }
    .hp-event-calender .event-img {
        width: auto;
        height: 100px;
        margin-bottom: 10px;
    }
    .hp-event-calender .theme-tab-content .align-items-center {
        align-items: start !important;
    }
    .hp-about-us .inner-wrapper .avtar-img .info {
        bottom: -14px;
        right: 24px;
        max-width: 175px;
    }
    .hp-about-us .inner-wrapper .avtar-img .info h4 {
        font-size: 16px;
    }
    .hp-center-info .theme-pills {
        margin: 0px auto 20px auto;
        padding-bottom: 0px;
    }
    .hp-center-info .exhi-space {
        flex-wrap: wrap;
        gap: 20px;
    }
    .hp-center-info .exhi-space .exhi-inner {
        /* max-width: 50%;
        width: 50%; */
        flex-wrap: nowrap;
    }
    .hp-by-location-info {
        padding: 60px 0px 30px 0px;
    }
    .hp-by-location-info .theme-tab-content {
        padding: 20px;
    }
    .hp-getting-here {
        min-height: 264px;
    }
    .contact-form-section {
        padding: 40px 0px;
    }
    .contact-form-section .contact-form-bg {
        padding: 20px 30px 10px 30px;
    }
    .contact-form-section .contact-form-bg .row {
        margin-bottom: 0px;
    }
    .contact-form-section .contact-form-bg .row:last-child {
        margin-top: 20px;
    }
    .contact-form-section .contact-form-bg .row .col-md-6 {
        margin-bottom: 20px;
    }
    .contact-form-section .contact-form-bg .form-control {
        min-height: 40px;
    }
    .contact-form-section .contact-form-bg .email-row {
        margin-bottom: 20px;
    }
    
    .hp-our-services-section .row-wrapper {
        margin: 0px auto;
    }
    .our-vision-mission-section {
        padding-bottom: 50px !important;
    }
    .our-vision-mission-section .card::after {
        top: 10px;
        left: 10px;
    }
    .attractions-section .place-card .place-body {
        padding: 1.5rem;
    }
    .our-vision-mission-section .card {
        margin-right: 10px;
    }
    .page-header {
        min-height: 260px;
    }
    .page-header h1 {
        font-size: 26px;
    }
    /* .our-blog-sec .blog-card {
        padding: 20px;
    } */
    .our-blog-sec .divider {
        margin-bottom: 14px;
        margin-top: 20px;
    }
    .green-venue-sec {
        padding: 30px 4px;
    }
    .cecc-courtyard .theme-outline {
        padding: 20px;        
    }
    .our-blog-sec .blog-card h2 {
        font-size: 26px;
    }
    .our-blog-sec .blog-card p {
        margin-bottom: 1.5em;
    }
    .our-awards-section .card .card-body {
        padding: 20px;
    }
    .exhi-hall-grid {
        padding: 30px 8px !important;
    }
    .center-info-wrapper .exhi-space {
        margin-bottom: 10px;
    }
    .auditorium-hall-overview {
        padding: 30px 8px;
    }
    .audi-key-features-sec {
        padding: 40px 8px;
    }
    .audi-key-features-sec .white-grid {
        padding: 20px;
    }
    .audi-key-features-sec .bullet-list {
        margin-bottom: 0px;
    }
    .audi-key-features-sec .bullet-list li {
        padding: 15px 15px 15px 30px;
        box-shadow: 0px 8px 3px 0px rgba(0,0,0,0.05);
    }
    .audi-key-features-sec .bullet-list li::before {
        left: 0px;
    }
    .audi-key-features-sec .white-grid .title {
        margin-bottom: 0px !important;
        font-size: 22px !important;
    }
    .cecc-courtyard {
        padding: 30px 0px;
    }
    .hp-our-services-section {
        padding: 30px 0px;
    }
    .attractions-section {
        padding: 30px 0px;
    }
    .attractions-section .place-card {
        margin-bottom: 30px !important;
    }
    .attractions-section .row:last-child .place-card {
        margin-bottom: 0px !important;
    }
    .about-navi-mumbai-sec {
        padding: 30px 0px !important;
    }
    .our-blog-sec {
        padding: 30px 0px;
    }
    .about-cecc-sec {
        padding: 10px 0px 30px 0px !important;
    }
    .md-message-sec {
        padding: 10px 0px 30px 0px !important;
    }
    .our-services-page .hp-our-services-section {
        padding: 6px 0px 30px 0px;
    }
    .upcoming-event-page .hp-event-calender, .past-event-page .hp-event-calender {
        padding: 20px 0px 6px 0px;
    }
    .dw-center-sec {
        padding: 30px 0px;
    }
    .privacy-policy-sec {
        padding: 30px 0px;
    }
    .sitemap-sec {
        padding: 30px 0px;
    }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .ptb-60 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .page-header h1 {
        font-size: 24px;
        line-height: 1.2em;
        margin-bottom: 16px;
    }
    .page-header {
        min-height: 220px;
    }
    .hero-section {
        padding: 0px;
    }
    .hall-benefits .col-6 {
        width: 100%;
    }
    section, .footer {
        padding-left: 8px;
        padding-right: 8px;
    }
    .theme-btn {
        font-size: 14px;
    }
    .hp-cta-sec {
        padding: 20px 10px 30px 8px;
    }
    .hp-cta-sec .card .card-body .theme-btn {
        font-size: 14px;
        white-space: nowrap;
    }
    .hp-cta-sec .card .card-body h4 {
        font-size: 20px;
    }
    .hp-cta-sec .card .card-body p {
        font-size: 14px;
        width: 100%;
    }
    .hp-center-info .exhi-space .exhi-inner {
        max-width: 100%;
        width: 100%;
    }
    .attractions-section .place-card .place-body .info-list {
        grid-template-columns: 1fr;
    }
    .hall-benefits .col-6 {
        width: 50%;
    }
    .hp-event-statistics .wrapper {
        padding: 16px 4px;
    }
    .hp-event-statistics:after {
        height: 70%;
    }
    .hp-event-statistics .statistics .counter {
        font-size: 26px;
    }
    .hp-event-statistics .statistics h4 {
        font-size: 16px;
    }
    .hp-event-statistics .icon {
        margin-bottom: 7px;
        width: 50px;
        height: 50px;
    }
    .hp-event-statistics .icon i {
        font-size: 20px;
    }
    .hp-event-calender {
        padding: 30px 0px;
    }
    .hp-event-calender .theme-pills .nav-item .nav-link {
        font-size: 16px;
        padding: 8px 17px;
        border-width: 1px;
    }
    .hp-our-services-section .title {
        margin-bottom: 0px;
    }
    .hp-our-services-section .service-card {
        padding: 20px 30px;
    }
    .hp-our-services-section .service-card p {
        margin-bottom: 0px;
    }
    .hp-our-services-section .service-card .icon-circle {
        font-size: 22px;
        width: 50px;
        height: 50px;
    }
    .hp-event-statistics {
        padding: 30px 0px;
    }
    .hp-event-statistics .col-6 {
        width: 100%;
    }
    .hp-event-statistics .title {
        margin-bottom: 20px;
    }
    .hp-event-statistics span {
        font-size: 18px;
    }
    .hp-event-statistics .statistics .counter {
        font-size: 20px;
    }
    .hp-gallery-section {
        padding: 30px 10px 20px 10px;
    }
    .hp-gallery-section h2 {
        padding-bottom: 30px;
    }
    .hp-association-partners {
        padding: 30px 0px;
    }
    .hp-association-partners .title {
        margin-bottom: 20px;
    }
    .hp-social-feeds {
        padding-top: 0px;
    }
    .hp-getting-here {
        min-height: 200px;
        align-items: start;
        padding-top: 25px;
    }
    .hp-by-location-info {
        padding: 40px 0px 30px 0px;
    }
    .hp-by-location-info .theme-pills .nav-item .nav-link {
        min-width: 160px;
    }
    .hp-by-location-info .theme-pills .nav-item .nav-link {
        font-size: 16px;
        padding: 9px 14px;
    }
    .hp-by-location-info .theme-tab-content {
        padding: 10px 20px;
    }
    .contact-form-section {
        padding: 30px 0px;
    }
    .contact-form-section:after {
        height: 200%;
    }
    .hall-benefits-sec {
        padding: 30px 0px;
    }
    .hall-benefits-sec .grid-box {
        padding: 20px
    }
    .hall-benefits-sec .grid-box h3 {
        font-size: 24px;
    }
    .hall-benefits-sec .grid-box h4 {
        font-size: 16px;
        width: 90%;
    }
}



   