@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Roboto", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Tiro+Gurmukhi&display=swap');
/* font-family: 'Tiro Gurmukhi', serif; */

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

html, body {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    top: 0 !important;
}

.mob-view {display: none;}
.desk-view {display: block;}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newAttachments {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  gap: 15px;
  -webkit-gap: 15px;
  -moz-gap: 15px;
  margin-top: 1.25rem;
}

#addMore, .removeAttachments {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  color: #1876ff;
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#addMore {margin-top: 12px;}
.removeAttachments {color: #f00;}

/******************************************************************
    Government Header
******************************************************************/
.government-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.header-content {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

.logo-left, .logo-right {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
}

.gov-logo, .bridge-logo {
    height: 77px;
    width: auto;
}

.ministry-text {
    flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    text-align: center;
    padding: 0 16px;
}

.ministry-text a {
    text-decoration: none;
    display: inline-block;
}

.ministry-text h2 {
    font-family: 'Tiro Gurmukhi', serif;
    font-size: 40px;
    /* font-size: 34px; */
    font-weight: 600;
    /* background: linear-gradient(to right, #ff0014, #004aff); */
    background: linear-gradient(to right, #ff7500, #003dff);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: #374151;
    line-height: 1.2;
    margin-bottom: 0;
}
/* .ministry-text h2:last-child {font-size: 30px;} */

/******************************************************************
    Navigation Tabs
******************************************************************/
.navigation-tabs {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
}

.navigation-tabs .container {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
}

.nav-buttons {
    width: calc(100% - 102px);
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    gap: 16px;
    -webkit-gap: 16px;
    -moz-gap: 16px;
}

.nav-btn {
    display: block;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    background: white;
    border: 1px solid transparent;
}

/* .nav-btn.home-btn {
    font-size: 20px;
    color: #051536;
    border-color: #adadad;
    padding: 3px 24px;
} */

.home-btn {
    font-size: 18px;
    color: #051536;
    border: none;
    padding: 3px 10px;
}

.nav-btn.sponsor-btn {
    color: #2563eb;
    border-color: #87b5ef;
}

.nav-btn.sponsor-btn.active/* , .nav-btn.home-btn.active */ {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.home-btn.active {color: #2563eb;}
.nav-btn.sponsor-btn:hover:not(.active) {background: #dbeafe;}

.nav-btn.patient-btn {
    color: #ea580c;
    border-color: #e0b27e;
}

.nav-btn.patient-btn.active {
    background: #ea580c;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-btn.patient-btn:hover:not(.active) {background: #fed7aa;}

.nav-btn.doctor-btn {
    color: #16a34a;
    border-color: #8ad5a4;
}

.nav-btn.doctor-btn.active {
    background: #16a34a;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-btn.doctor-btn:hover:not(.active) {background: #dcfce7;}

.nav-btn.contact-btn {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: #0d1f14;
    border-color: #919191;
}

.nav-btn.contact-btn.active {
    background: #0d1f14;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-btn.contact-btn:hover:not(.active) {background: #d8d8d8;}

.nav-btn.download-btn {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: #9734ff;
    border-color: #9734ff;
}

.nav-btn.download-btn.active {
    background: #9734ff;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-btn.download-btn:hover:not(.active) {background: #f3e8ff;}

#google_element {
    display: none;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    cursor: pointer;
    position: relative;
}

#google_element i {
    position: absolute;
    top: 6px;
    left: 5px;
    font-size: 18px;
    color: #4c1782;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

.goog-te-gadget {
    color: #e2e4e7 !important;
    max-width: 102px !important;
    overflow: hidden;
}

.goog-te-gadget > span, iframe.skiptranslate, #goog-gt-tt, .VIpgJd-yAWNEb-L7lbkb, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none;
    height: 0;
    overflow: hidden;
}

.goog-te-gadget .goog-te-combo {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-color: #cdcdcd;
    background-color: transparent;
    color: #4b2f67;
    margin: 0 !important;
    padding: 8px 24px;
    padding-left: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    cursor: pointer;
    border-radius: 9999px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
}

.goog-te-gadget .goog-te-combo:focus {outline: none;}

/******************************************************************
    Hero Slider
******************************************************************/
.hero-slider {
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    height: 75vh;
    overflow: hidden;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(30, 58, 138, 0.8), rgba(126, 34, 206, 0.7), rgba(194, 65, 12, 0.8)); */
    background: linear-gradient(to right, rgba(38, 95, 228, 0.9), rgba(145, 52, 232, 0.85), rgba(5, 146, 101, 0.9));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 1000px;
    padding: 60px 20px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: normal;
    background: linear-gradient(to right, #fcdcc1, #d8def1);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    /* margin-bottom: 0; */
    margin-bottom: 24px;
}

.slide-content h3 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: normal;
    background: linear-gradient(to right, #fcdcc1, #d8def1);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 0;
}

.slide-content h2 {
    /* font-size: 4rem;
    font-weight: bold; */
    font-size: 2.5rem;
    font-weight: 300;
    line-height: normal;
    background: linear-gradient(to right, #b9e6e4, #d8d7fe);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    /* margin-bottom: 0; */
    margin-bottom: 32px;
}

.slide-content p {
    /* font-size: 2rem; */
    font-size: 1.5rem;
    font-weight: 500;
    line-height: normal;
    color: #dbeafe;
    margin-bottom: 48px;
}

.slide-cta-btn, .final-cta-btn {
    text-decoration: none;
    background: linear-gradient(to right, #3b82f6, #f97316);
    color: white;
    padding: 16px 48px;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    gap: 12px;
    -webkit-gap: 12px;
    -moz-gap: 12px;
}

.slide-cta-btn:hover, .final-cta-btn:hover {
    background: linear-gradient(to right, #2563eb, #ea580c);
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/******************************************************************
    Navigation Arrows
******************************************************************/
.hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border: none !important;
}

.hero-slider .owl-nav .owl-prev {left: 32px;}
.hero-slider .owl-nav .owl-next {right: 32px;}

.hero-slider .owl-nav button i {
    font-size: 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.hero-slider .owl-nav button i:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

/******************************************************************
    Slide Indicators
******************************************************************/
.owl-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 20;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    gap: 12px;
    -webkit-gap: 12px;
    -moz-gap: 12px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.owl-dot.active {
    background: white !important;
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
}

.owl-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.75) !important;
}

/******************************************************************
    Section Styles
******************************************************************/
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}

.gradient-text {
    background: linear-gradient(to right, #ff6800, #0060fd);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    background-clip: text;
}

/******************************************************************
    Mission Section
******************************************************************/
.mission-section {
    background: linear-gradient(135deg, #dbeafe 0%, #fed7aa 100%);
}

.mission-card {
    position: relative;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.mission-icons {
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #17B636, #3A7728, #FFD900, #D62828, #00A5DF, #0072C6, #000000);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    margin: 0 auto;
    margin-bottom: 30px;
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    -webkit-animation: gradientShift 12s ease infinite;
    -moz-animation: gradientShift 12s ease infinite;
    -ms-animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

@-webkit-keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

@-moz-keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

@-ms-keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.mission-border {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #f97316);
    border-radius: 24px;
    padding: 1px;
}

.mission-border::after {
    content: '';
    position: absolute;
    inset: 1px;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: white;
    border-radius: 23px;
}

.mission-content {
    position: relative;
    z-index: 10;
}

.mission-quote {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 32px;
}

.mission-description {
    font-style: italic;
    font-family: 'Tiro Gurmukhi', serif;
    font-size: 1.25rem;
    font-weight: bold;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    background: linear-gradient(to right, #396de5, #199a71);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

/******************************************************************
    Platform Section
******************************************************************/
.platform-section {
    background: white;
}

.platform-card {
    position: relative;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 48px 64px;
    border: 1px solid #f3f4f6;
}

.platform-icon {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(to right, #3b82f6, #f97316);
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.platform-icon i {
    font-size: 2rem;
    color: white;
}

.platform-content {
    margin-top: 32px;
}

.platform-description {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    font-weight: 300;
}

.highlight-blue {
    font-weight: 600;
    color: #2563eb;
}

.highlight-orange {
    font-weight: 600;
    color: #ea580c;
}

.highlight-purple {
    font-weight: 600;
    color: #9333ea;
}

.highlight-green {
    font-weight: 600;
    color: #16a34a;
}

.highlight-gradient {
    font-weight: bold;
    background: linear-gradient(to right, #3b82f6, #f97316);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    background-clip: text;
}

.connection-elements {
    margin-top: 48px;
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-columns: repeat(2, 1fr);
    gap: 24px;
    -webkit-gap: 24px;
    -moz-gap: 24px;
}

.connection-item {
    text-align: center;
}

.connection-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.connection-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.connection-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.connection-icon.purple {
    background: #e9d5ff;
    color: #9333ea;
}

.connection-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.connection-item:hover .connection-icon {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.connection-item:hover .connection-icon.blue {
    background: #bfdbfe;
}

.connection-item:hover .connection-icon.orange {
    background: #fdba74;
}

.connection-item:hover .connection-icon.purple {
    background: #ddd6fe;
}

.connection-item:hover .connection-icon.green {
    background: #bbf7d0;
}

.connection-item p {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/******************************************************************
    Medical Camp Section
******************************************************************/
.medical-camp-section {
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #fed7aa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.title-underline {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #f97316);
    margin: 0 auto 32px;
}

.medical-camp-info {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    gap: 30px;
    -webkit-gap: 30px;
    -moz-gap: 30px;
    margin-bottom: 65px;
}

.camp-description {
    width: calc(55% - 15px);
    /* max-width: 1000px;
    margin: 0 auto 64px; */
}

.medical-camp-gallery {
    width: calc(45% - 15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
}

.camp-card {
    height: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 50px -12px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 50px -12px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 50px -12px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 50px -12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border: 1px solid #f3f4f6;
    text-align: center;
}

.camp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(to right, #3b82f6, #f97316);
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.camp-icon i {
    font-size: 2rem;
    color: white;
}

.camp-card p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
}

.hospitals-grid {
    /* display: grid;
    grid-template-columns: 1fr;
    gap: 32px; */
    margin-bottom: 34px;
}

.hospitals-grid .owl-carousel .owl-stage {
    padding-top: 15px;
    margin-bottom: 50px;
}

.hospital-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    border: 1px solid #f3f4f6;
    border-bottom: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.hospital-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px) scale(1.02);
    -webkit-transform: translateY(-8px) scale(1.02);
    -moz-transform: translateY(-8px) scale(1.02);
    -ms-transform: translateY(-8px) scale(1.02);
}

.hospital-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.hospital-card.blue::after {background: linear-gradient(to right, #3b82f6, #2563eb);}
.hospital-card.red::after {background: linear-gradient(to right, #ef4444, #dc2626);}
.hospital-card.purple::after {background: linear-gradient(to right, #8b5cf6, #7c3aed);}
.hospital-card.green::after {background: linear-gradient(to right, #10b981, #059669);}
.hospital-card.orange::after {background: linear-gradient(to right, #f97316, #ea580c);}

.hospital-logo {
    /* width: 80px;
    height: 80px; */
    width: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    margin: 0 auto 15px;
    border-radius: 16px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    color: white;
    /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -ms-transition: -ms-transform 0.3s ease;
}

.hospital-logo img {
    width: auto !important;
    max-width: 100%;
    max-height: 80px;
}
.hospital-card:hover .hospital-logo {transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1);}

/* .hospital-card.blue .hospital-logo {background: linear-gradient(135deg, #3b82f6, #2563eb);}
.hospital-card.red .hospital-logo {background: linear-gradient(135deg, #ef4444, #dc2626);}
.hospital-card.purple .hospital-logo {background: linear-gradient(135deg, #8b5cf6, #7c3aed);}
.hospital-card.green .hospital-logo {background: linear-gradient(135deg, #10b981, #059669);}
.hospital-card.orange .hospital-logo {background: linear-gradient(135deg, #f97316, #ea580c);} */

.hospital-card h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 5px;
    text-align: center;
}

.hospital-card p.weblink {
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: center;
}

.hospital-card p.weblink a {
    text-decoration: none;
    color: #c01a04;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.hospital-card p.weblink a:hover {color: #0060df;}

.appointment-icon {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    margin-top: 15px;
}

.appointment-icon a {
    font-size: 0.75rem;
    line-height: 100%;
    text-decoration: none;
    color: white;
    background: linear-gradient(to right, #8b5cf6, #ec4899);
    border-radius: 4px;
    padding: 7px 15px;
    padding-bottom: 9px;
}
.appointment-icon a:hover {background: linear-gradient(to left, #8b5cf6, #ec4899);}

.hospital-card p {
    color: #1e40af;
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.6;
}

.cta-header {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    gap: 16px;
    -webkit-gap: 16px;
    -moz-gap: 16px;
    margin-bottom: 24px;
}

.cta-header h4 {
    font-size: 1.25rem;
    font-weight: bold;
}

/******************************************************************
    Action Buttons Section
******************************************************************/
.action-buttons-section {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.action-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-columns: repeat(3, 1fr);
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    gap: 24px;
    -webkit-gap: 24px;
    -moz-gap: 24px;
}

.action-card {
    text-decoration: none;
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    overflow: hidden;
}

.action-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px) scale(1.02);
    -webkit-transform: translateY(-8px) scale(1.02);
    -moz-transform: translateY(-8px) scale(1.02);
    -ms-transform: translateY(-8px) scale(1.02);
}

.action-border {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 0.5px;
}

.action-card.blue-orange .action-border {background: linear-gradient(135deg, #3b82f6, #f97316);}
.action-card.orange-blue .action-border {background: linear-gradient(135deg, #f97316, #3b82f6);}
.action-card.purple-pink .action-border {background: linear-gradient(135deg, #8b5cf6, #ec4899);}
.action-card.green-teal .action-border {background: linear-gradient(135deg, #10b981, #14b8a6);}

.action-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    background: white;
    border-radius: 15.5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.action-card:hover .action-border::after {
    top: 1px;
    left: 1px;
}

.action-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.action-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -ms-transition: -ms-transform 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.action-card.blue-orange .action-icon {
    background: linear-gradient(135deg, #3b82f6, #f97316);
}

.action-card.orange-blue .action-icon {
    background: linear-gradient(135deg, #f97316, #3b82f6);
}

.action-card.purple-pink .action-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.action-card.green-teal .action-icon {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.action-icon i {
    font-size: 2rem;
    color: white;
}

.action-content h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.action-content p {
    color: #1e40af;
    font-size: 0.875rem;
}

/******************************************************************
    Features Section
******************************************************************/
.features-section {
    background: linear-gradient(135deg, #dbeafe 0%, #fed7aa 100%);
}

.features-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    gap: 48px;
    -webkit-gap: 48px;
    -moz-gap: 48px;
}

.feature-card {
    text-align: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.feature-card:hover {transform: translateY(-8px) scale(1.02); -webkit-transform: translateY(-8px) scale(1.02); -moz-transform: translateY(-8px) scale(1.02); -ms-transform: translateY(-8px) scale(1.02);}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #3b82f6, #f97316);
    border-radius: 16px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.feature-card p {
    color: #1e40af;
    line-height: 1.6;
}

/******************************************************************
    Final CTA Section
******************************************************************/
.final-cta-section {
    background: linear-gradient(330deg, #dbeafe 0%, #fed7aa 100%);
    text-align: center;
}

.cta-description {
    font-size: 1.25rem;
    color: #1e3a8a;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 48px;
}

.final-cta-buttons {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    gap: 24px;
    -webkit-gap: 24px;
    -moz-gap: 24px;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
}

.final-cta-btn.final-primary {
    background: linear-gradient(to right, #3b82f6, #f97316);
}

.final-cta-btn.final-primary:hover {
    background: linear-gradient(to right, #2563eb, #ea580c);
}

.final-cta-btn.final-secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid #f97316;
}

.final-cta-btn.final-secondary:hover {
    background: #f97316;
    color: white;
}

/******************************************************************
    Sponsor Page Styles
******************************************************************/
.inner-header {
    background: linear-gradient(to right, #3b82f6, #f97316);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.sponsor-form-area .inner-header {padding-bottom: 130px;}

.inner-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.inner-header p {
    font-size: 1.15rem;
    color: #dbeafe;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-content {
    padding: 50px 0;
    border-top: 1px solid #f3f4f6;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    padding: 25px;
    border: 1px solid #dee7fa;
    text-align: center;
}

.contact-card h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.contact-card > p {
    font-size: 1.125rem;
    color: #1e3a8a;
    margin-bottom: 25px;
    line-height: 1.6;
}
.contact-details p {margin-bottom: 0;}

.contact-details .email {
    color: #f97316;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-details .phone {
    color: #1e40af;
    font-weight: 500;
}

/******************************************************************
    Coming Soon Pages
******************************************************************/
.coming-soon {
    min-height: 75vh;
    background: linear-gradient(135deg, #dbeafe 0%, #fed7aa 100%);
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    text-align: center;
}

.coming-soon h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.coming-soon p {
    font-size: 1.125rem;
    color: #6b7280;
}

/******************************************************************
    Sponsor Cards Slider Section Begin
******************************************************************/
.sponsor-cards {
    margin-top: 50px;
    margin-bottom: 120px;
}
.sponsor-cards .owl-carousel .owl-item img {width: auto;}

/******************************************************************
    Packages Cards Section Begin
******************************************************************/
.packages-cards-block {
    font-family: "Roboto", sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 1rem;
}

.package-container {
    max-width: 1400px;
    margin: 0 auto;
}

.package-header {
    text-align: center;
    margin-bottom: 3rem;
}

.package-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    background: linear-gradient(to right, #0062ff, #ff6800);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.package-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.package-cards-grid {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    /* gap: 2.5rem; */
    max-width: 1200px;
    margin: 0 auto;
}

.package-card-wrapper {
    width: 100%;
    padding-top: 2.5rem;
    position: relative;
}

.package-card-outline {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 1px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.package-card-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    opacity: 0.2;
    z-index: 1;
}

.package-card-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    filter: blur(4px);
    -webkit-filter: blur(4px);
    opacity: 0.3;
    z-index: 0;
}

.package-card-content {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    gap: 40px;
    -webkit-gap: 40px;
    -moz-gap: 40px;
    position: relative;
    background: white;
    border-radius: 1.45rem;
    padding: 2rem;
    z-index: 2;
}

.package-card-section {width: 350px;}
.package-info {width: calc(100% - 390px);}

.package-card-3d {
    position: relative;
    width: 100%;
    height: 200px;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    cursor: pointer;
}

.package-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: transform 0.7s;
    -webkit-transition: -webkit-transform 0.7s;
    -moz-transition: -moz-transform 0.7s;
    -ms-transition: -ms-transform 0.7s;
}
.package-card-wrapper .package-card-3d:hover .package-card-inner {transform: rotateY(180deg); -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -ms-transform: rotateY(180deg);}

.package-card-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    text-decoration: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
}

.package-card-front {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    padding: 1.25rem;
    position: relative;
}

.package-card-back {
    transform-origin: center;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
}

.package-card-back img {
    width: 8rem;
    height: auto;
    object-fit: contain;
}

.package-card-pattern {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
}

.package-pattern-circle-1 {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent);
}

.package-pattern-circle-2 {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), transparent);
}

.package-card-logos {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    margin-bottom: 1rem;
}

.package-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.package-card-title-section {
    text-align: center;
    flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
}

.package-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.package-title-divider {
    width: 4rem;
    height: 2px;
    margin: 0 auto;
    opacity: 0.6;
}
.package-card-value-section {text-align: center;}

.package-card-value {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.package-value-label {
    font-size: 0.75rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.package-card-border {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    border: 1px solid;
    opacity: 0.5;
}
.package-description {margin-bottom: 1.5rem;}

.package-description p {
    color: #2563eb;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6;
}
.package-features-list {list-style: none;}

.package-feature-item {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    margin-bottom: 0.75rem;
}

.package-check-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
}

.package-feature-text {
    color: #2563eb;
    font-size: 0.95rem;
    line-height: 1.6;
}
.package-hidden-block {display: none;}

.package-view-more {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    background: none;
    border: none;
    color: #2563eb;
    font-family: "Roboto", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
}
.package-view-more:hover {color: #1d4ed8;}

.package-chevron-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

.package-actions {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    gap: 0.75rem;
    -webkit-gap: 0.75rem;
    -moz-gap: 0.75rem;
    margin-top: 30px;
}

.package-btn {
    display: block;
    text-decoration: none;
    flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    text-align: center;
    border: none;
}

.package-btn-primary {
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.package-btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.package-btn-secondary {
    background: white;
    border: 1px solid #d1d5db;
    color: #374151;
}

.package-btn-secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* Tier-specific styles */
.exclusive.package-card-outline {background: linear-gradient(to right, #7c3aed, #6366f1, #7c2d12);}
.exclusive .package-card-outline::before, .exclusive .package-card-outline::after {background: linear-gradient(to right, #7c3aed, #6366f1, #7c2d12);}
.exclusive .package-card-front {background: linear-gradient(135deg, #7c3aed, #6366f1, #7c2d12);}
.exclusive .package-card-back {background: linear-gradient(135deg, #ddd6fe, #c7d2fe, #a78bfa);}
.exclusive .package-card-title, .exclusive .package-card-value, .exclusive .package-value-label {color: #e0e7ff;}
.exclusive .package-title-divider {background: #e0e7ff;}
.exclusive .package-card-border {border-color: #a78bfa;}
.exclusive .package-btn-primary {background: linear-gradient(to right, #7c3aed, #6d28d9);}
.exclusive .package-btn-secondary {border-color: #7c3aed;}
.exclusive .package-description p, .exclusive .package-feature-text, .exclusive .package-view-more {color: #7c3aed;}

.platinum.package-card-outline {background: linear-gradient(to right, #94a3b8, #6b7280, #64748b);}
.platinum .package-card-front {background: linear-gradient(135deg, #94a3b8, #6b7280, #64748b);}
.platinum .package-card-back {background: linear-gradient(135deg, #e2e8f0, #cbd5e1, #94a3b8);}
.platinum .package-card-title, .platinum .package-card-value, .platinum .package-value-label {color: #1e293b;}
.platinum .package-title-divider {background: #1e293b;}
.platinum .package-card-border {border-color: #cbd5e1;}
.platinum .package-btn-primary {background: linear-gradient(to right, #64748b, #475569);}
.platinum .package-btn-secondary {border-color: #64748b;}
.platinum .package-description p, .platinum .package-feature-text, .platinum .package-view-more {color: #64748b;}

.gold.package-card-outline {background: linear-gradient(to right, #fbbf24, #eab308, #f59e0b);}
.gold .package-card-outline::before, .gold .package-card-outline::after {background: linear-gradient(to right, #fbbf24, #eab308, #f59e0b);}
.gold .package-card-front {background: linear-gradient(135deg, #fbbf24, #eab308, #f59e0b);}
.gold .package-card-back {background: linear-gradient(135deg, #fef3c7, #fde68a, #fcd34d);}
.gold .package-card-title, .gold .package-card-value, .gold .package-value-label {color: #92400e;}
.gold .package-title-divider {background: #92400e;}
.gold .package-card-border {border-color: #fcd34d;}
.gold .package-btn-primary {background: linear-gradient(to right, #f59e0b, #d97706);}
.gold .package-btn-secondary {border-color: #f59e0b;}
.gold .package-description p, .gold .package-feature-text, .gold .package-view-more {color: #f59e0b;}

.silver.package-card-outline {background: linear-gradient(to right, #d1d5db, #9ca3af, #6b7280);}
.silver .package-card-front {background: linear-gradient(135deg, #d1d5db, #9ca3af, #6b7280);}
.silver .package-card-back {background: linear-gradient(135deg, #f3f4f6, #e5e7eb, #d1d5db);}
.silver .package-card-title, .silver .package-card-value, .silver .package-value-label {color: #374151;}
.silver .package-title-divider {background: #374151;}
.silver .package-card-border {border-color: #d1d5db;}
.silver .package-btn-primary {background: linear-gradient(to right, #9ca3af, #6b7280);}
.silver .package-btn-secondary {border-color: #9ca3af;}
.silver .package-description p, .silver .package-feature-text, .silver .package-view-more {color: #6b7280;}

.bronze.package-card-outline {background: linear-gradient(to right, #d97706, #ea580c, #dc2626);}
.bronze .package-card-front {background: linear-gradient(135deg, #d97706, #ea580c, #dc2626);}
.bronze .package-card-back {background: linear-gradient(135deg, #fed7aa, #fdba74, #fb923c);}
.bronze .package-card-title, .bronze .package-card-value, .bronze .package-value-label {color: #fef3c7;}
.bronze .package-title-divider {background: #fef3c7;}
.bronze .package-card-border {border-color: #fdba74;}
.bronze .package-btn-primary {background: linear-gradient(to right, #d97706, #c2410c);}
.bronze .package-btn-secondary {border-color: #d97706;}
.bronze .package-description p, .bronze .package-feature-text, .bronze .package-view-more {color: #dc2626;}

/******************************************************************
    Compare Cards Section Begin
******************************************************************/
.compare-cards {
    background: linear-gradient(to bottom right, #eff6ff, #f0fdf4);
    padding: 5rem 0;
}

.compare-card-data {
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    -webkit-box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    -moz-box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    -ms-box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    overflow-x: auto;
}

.compare-card-data table {width: 100%;}
.compare-card-data table .compare-card-header {background: linear-gradient(to right, #2563eb, #16a34a);}

.compare-card-data table .compare-card-header th {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
}

.compare-card-data table .compare-card-header th span {
    display: block;
    white-space: nowrap;
}

.compare-card-data table .compare-card-header th span:last-child {
    font-size: 13px;
    font-weight: 400;
}

.compare-card-data table tr td {
    font-size: 15px;
    color: #313233;
    text-align: center;
    border-bottom: 1px solid #eff3f7;
    padding: 1rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.compare-card-data table tr:hover {background-color: #f9fafb;}
.compare-card-data table tr td:first-child {text-align: left;}

.compare-card-data table tr td i.fa-check {
    font-size: 15px;
    color: #2ec667;
}

.compare-card-data table tr td i.fa-x {
    font-size: 13px;
    color: #fc766c;
}
.compare-card-data table .choosePlan {background-color: #f9fafb;}

.compare-card-data .choosePlan-Btn {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(to right, #2563eb, #16a34a);
    border-radius: 0.5rem;
    white-space: nowrap;
    padding: 0.65rem 1.25rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.compare-card-data .choosePlan-Btn:hover {background: linear-gradient(to right, #184dc0, #10863b);}

/******************************************************************
    Sponsor Forms Section Begin
******************************************************************/
.sponsor-form-block {
    padding-bottom: 80px;
    margin-top: -60px;
}

.sponsor-form-block .sponsor-cards {
    margin-top: 80px;
    margin-bottom: 0;
}

.form-card {
    font-family: "Roboto", sans-serif;
    width: 100%;
    max-width: 48rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    margin: 0 auto;
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #6366f1 100%);
    padding: 2rem;
    text-align: center;
}

.thanks-form-block {margin: 100px 0;}
.thanks {font-family: 'Tiro Gurmukhi', serif;}
.thanks .form-header {background: linear-gradient(135deg, #74b16c 0%, #22918a 50%, #63b8f1 100%);}

.thanks .form-content {
    padding: 3rem 2rem;
    text-align: center;
}

.thanks .form-content p {
    font-size: 18px;
    font-weight: 400;
    color: #3f51b5;
}
.thanks .form-content p:last-child {margin-bottom: 0;}

span.error {
  color: #ff5050;
  font-size: 12px;
  font-weight: 400;
  display: none;
}

.form-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #c7d2fe;
    font-size: 1rem;
    margin-bottom: 0;
}

.form-card fieldset {
    border: 1px solid #b2b8c9;
    border-radius: 10px;
    padding: 28px 20px 20px;
    margin-bottom: 40px;
    position: relative;
}

.form-card fieldset legend {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-size: 1.05rem;
    font-weight: 500;
    color: #3f424e;
    background: #fff;
    width: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    padding: 0 10px;
}
.form-card fieldset legend ~ .form-group:last-of-type {margin-bottom: 0;}

.form-content {padding: 2rem;}
.form-group {margin-bottom: 1.5rem;}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4d535c;
    margin-bottom: 0.25rem;
}

.form-group label span {font-weight: 400;}
.input-wrapper {position: relative;}

.checkbox-group {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    gap: 10px;
    -webkit-gap: 10px;
    -moz-gap: 10px;
}

.checkbox-group input {
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    display: inline-block;
    width: calc(100% - 26px);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: normal;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #d1d5db;
    color: #5d5f61;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

#patientForm .form-input, #doctorsForm .form-input {padding: 0.75rem 1rem;}
.form-input:hover {border-color: #9ca3af;}

.select2-container--focus {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.form-input:focus, .select2-container--focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    color: #173b82;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Theme-specific gradients */
.purple-theme:focus {
    outline: none;
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
    -moz-box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
    -ms-box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
}

.indigo-theme:focus {
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
    -moz-box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
    -ms-box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
}

.blue-theme:focus, .select2-container--focus {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
    -moz-box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
    -ms-box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.violet-theme:focus {
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.5);
    -webkit-box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.5);
    -moz-box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.5);
    -ms-box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.5);
}

.phone-group {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 2fr;
    -ms-grid-columns: 1fr 2fr;
    align-items: end;
    -webkit-align-items: end;
    -moz-align-items: end;
    -ms-align-items: end;
    gap: 1rem;
    -webkit-gap: 1rem;
    -moz-gap: 1rem;
}

.code-group .form-input {padding-left: 1rem;}
.submit-section {padding-top: 1rem;}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #6366f1 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #4f46e5 100%);
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.submit-btn:active {transform: translateY(0); -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0);}

/* Select2 Section Begin */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
    border: 1px solid #d1d5db;
    background-color: #fff;
    color: #212529;
    border-radius: 7px !important;
    padding: 12px 20px;
}
.select2-container--default {transition: all 0.3s ease; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease;}

.select2-container--default .select2-results__option--disabled {display: none;}
.select2-container--default .select2-search--dropdown .select2-search__field {border-radius: 4px;}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {outline: none;}

.select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-radius: 7px !important;
    height: 100%;
}
.search-form select:focus {box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}

.select2-dropdown {
    border: 1px solid #9397a5 !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results {
    padding-top: 10px;
    padding-bottom: 10px;
}

.search-form .multiselect-container.dropdown-menu {overflow-y: auto;}
.search-form .multiselect-container.dropdown-menu,
.select2-container--default .select2-results>.select2-results__options {max-height: 250px;}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar,
.search-form .multiselect-container.dropdown-menu::-webkit-scrollbar {
    background-color: transparent;
    width: 3px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb,
.search-form .multiselect-container.dropdown-menu::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 10px;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover,
.search-form .multiselect-container.dropdown-menu::-webkit-scrollbar-thumb:hover {background: #ccc;}

.select2-container--open .select2-dropdown--below, .select2-container--open .select2-dropdown--above {
    min-width: 18rem;
    z-index: 99999;
}

.select2-container--open .select2-dropdown--below {border-radius: 2px 2px 7px 7px;}
.select2-container--open .select2-dropdown--above {border-radius: 7px 7px 2px 2px;}
.select2-container--default .select2-results__option--selected {background-color: #e5e7eb !important;}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {background-color: transparent;}

.select2-results__option--selectable {
    font-size: 15px;
    color: #3a414c !important;
    padding-left: 14px;
    padding-right: 14px;
}
.select2-results__option--selectable:hover {background-color: #f3f4f6 !important;}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    max-width: 100%;
    line-height: unset;
}

html[data-select2-id] {overflow-x: hidden;}
.select2-container {width: 100% !important;}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b::after {
    font-family: fontawesome;
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 999;
    font-size: 12px;
    font-weight: 300;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    margin: 0;
    border: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b::after {right: -5px;}
/* Select2 Section End */

/******************************************************************
    Footer Section Start
******************************************************************/
.footer {
    background: linear-gradient(to right, #fff7f7, #f3f8ff);
    padding-top: 50px;
    padding-bottom: 40px;
}

.footer-menu ul, .login-menu ul {
    list-style: none;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    gap: 12px;
    -webkit-gap: 12px;
    -moz-gap: 12px;
    margin-bottom: 35px;
}

.login-menu ul {gap: 19px; -webkit-gap: 19px; -moz-gap: 19px;}
.login-menu ul li {position: relative;}

.login-menu ul li::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #707070;
    position: absolute;
    top: 0;
    right: -9px;
}
.login-menu ul li:last-child:before {display: none;}

.login-menu ul li a {
    display: block;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    color: #333333;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
}
.login-menu ul li a:hover {color: #f55219;}

.social-media ul {
    list-style: none;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    gap: 15px;
    -webkit-gap: 15px;
    -moz-gap: 15px;
    margin-bottom: 30px;
    padding: 0;
}

.social-media ul li a {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #b9babf;
    /* background-color: #eeeff1; */
    color: #6a6a6a;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.social-media ul li a:hover {
    border-color: #9aa8c2;
    background-color: #d8e6ff;
    color: #4d76c3;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
}

.copyright {
    font-size: 13px;
    color: #333333;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    gap: 8px;
    -webkit-gap: 8px;
    -moz-gap: 8px;
}

.copyright .poweredBy {
    font-size: 11px;
    font-weight: bold;
    color: #8b8b8b;
    background: linear-gradient(to right, #febf59, #ff3e2b);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}