/* ==================== ROOT & FONTS ==================== */
:root {
    --color-blue: #009AFA;
    --color-blue-dark: #0080D6;
    --color-blue-darker: #006BB8;
    --color-cyan: #00FAE1;
    --color-cyan-dark: #00D6C3;
    --color-violet: #7D00FA;
    --color-violet-dark: #6B00D6;
    --color-fuchsia: #F600FA;
    --color-magenta: #FA0092;
    --color-magenta-dark: #D6007A;
}
.btn-white {
    position: relative;
    z-index: 9999;
}

.spc {
    margin-top: 25px;
}
.abtm {
    margin-top: 30px;
}

.membership-rule-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.membership-rule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.rule-number {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 42px;
    height: 42px;
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}


/* ==================== SMOOTH TRANSITIONS ==================== */
* {
    transition-property: transform, opacity, background, color, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

button, a, .card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


section {
    position: relative;
    width: 100%;
}

/*
.container {
    max-width: 1200px;
}
*/

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* ==================== SMOOTH SCROLL ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
	font-size: 14px;
	padding: 4px 0;
    color: white;
}

.top-bar select {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.top-bar select option {
    background: var(--color-blue-dark);
    color: white;
}

/* ==================== HEADER ==================== */
.header-section {
    border-bottom: 3px solid var(--color-blue) !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-item:nth-child(1) .nav-link:hover { color: var(--color-blue) !important; }
.nav-item:nth-child(2) .nav-link:hover { color: var(--color-cyan) !important; }
.nav-item:nth-child(3) .nav-link:hover { color: var(--color-violet) !important; }
.nav-item:nth-child(4) .nav-link:hover { color: var(--color-fuchsia) !important; }
.nav-item:nth-child(5) .nav-link:hover { color: var(--color-magenta) !important; }
.nav-item:nth-child(6) .nav-link:hover { color: var(--color-blue) !important; }

/* ==================== HERO BANNER ==================== */
.hero-banner {
    height: 500px;
    position: relative;
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-banner .carousel-control-next-icon, .carousel-control-prev-icon{background-size: 100% 50%;}
 

.gradient-blue-new {
   background: linear-gradient(135deg, rgba(139, 92, 246, 0.7) 0%, rgb(0 231 229 / 80%) 100%);
	
}

 
.gradient-blue {
   background: linear-gradient(135deg, rgb(0 47 77) 0%, rgb(15 77 119 / 65%) 50%, rgb(31 109 199) 100%);
}


.gradient-violet {
    background: linear-gradient(135deg, rgba(125, 0, 250, 0.70) 0%, rgba(107, 0, 214, 0.65) 50%, rgba(89, 0, 179, 0.60) 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, rgba(0, 250, 225, 0.70) 0%, rgba(0, 214, 195, 0.65) 50%, rgba(0, 184, 169, 0.60) 100%);
}

.gradient-fuchsia {
    background: linear-gradient(135deg, rgba(246, 0, 250, 0.70) 0%, rgba(214, 0, 214, 0.65) 50%, rgba(184, 0, 184, 0.60) 100%);
}

.gradient-magenta {
    background: linear-gradient(135deg, rgba(250, 0, 146, 0.70) 0%, rgba(214, 0, 122, 0.65) 50%, rgba(184, 0, 105, 0.60) 100%);
}


.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 0;
    right: 0;
}

.subtitle-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease;
}

.carousel-caption h1 {
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.carousel-caption .btn {
    animation: fadeInUp 1s ease;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 40px;
    border-radius: 10px;
}

/* ==================== MISSION & VISION ==================== */
.mission-vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), #00e8d2);
    border-radius: 2px;
}
.text-danger-ver{color:#069d90;}

.title-underline-white {
    width: 80px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.mission-card {
    border-top: none !important;
    border-left: 4px solid var(--color-blue) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    background: white !important;
}

.vision-card {
    border-top: none !important;
    border-left: 4px solid #00d6c3 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    background: white !important;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.icon-box.gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
}

.icon-box.gradient-fuchsia {
       background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

/*
.stats-banner {
    background: linear-gradient(135deg, rgb(72 149 238) 0%, rgb(169 255 173 / 80%) 100%);
    border-radius: 0 !important;
}
*/

.stats-banner {
/*    background:#00d6c3 url(../images/map-bg-new.png) ;*/
	background-image: url("../images/map-bg-new.png"), linear-gradient(135deg, rgb(72 149 238) 0%, rgb(169 255 173 / 80%) 100%);

    border-radius: 0 !important;
	background-repeat: no-repeat;
    background-position: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    margin: 0 auto;
}
.autb-button {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border: none;
    border-radius: 6px;
	padding: 10px 0;
	color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
}
.autb-button:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 154, 250, 0.4);
	transition: all 0.4s ease;
}


.stat-icon:hover {
    transform: scale(1.1);
}

.gradient-blue-light {
    background: linear-gradient(135deg, #00D4FF, #0099CC);
}

.gradient-cyan-light {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

.gradient-violet-light {
    background: linear-gradient(135deg, #7D3CFF, #6020E0);
}

.gradient-fuchsia-light {
       background: linear-gradient(135deg, #e0c250, #d0821c);
}

.stats-banner .display-4 {
    font-size: 3.5rem;
    font-weight: 700;
}

.stats-banner .fs-5 {
    font-size: 1.1rem !important;
    opacity: 0.95;
}

/* ==================== HAPPENING SECTION ==================== */
.happening-section {
    background: #f8f9fa;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.icon-box-small {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-box-small.gradient-fuchsia {
    background: linear-gradient(135deg, #30c6f2, #2264b0);
}

.happening-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* ==================== MEMBERSHIP SECTION ==================== */
.membership-section {
   background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgb(0 231 229 / 89%) 100%), url(https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&h=1080&fit=crop) center / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
    position: relative;
    overflow: hidden;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefit-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
	background:#fff !important;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
	
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.benefit-card i {
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.benefit-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.benefit-card h4 {
    font-size: 1.35rem;
    letter-spacing: 0.5px;
	   color: #1d7dd9 !important;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
	color:#000 !important;
}

/* ==================== PROGRAMS SECTION ==================== */
.program-card-overlay {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card-overlay:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-card-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.program-card-overlay:hover img {
    transform: scale(1.15);
}

.program-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.4s ease;
}

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    color: white;
    z-index: 10;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.program-content h5 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Colored Transparent Overlays */
.bg-blue-overlay {
    background: linear-gradient(135deg, rgb(31 186 255 / 75%) 0%, rgb(12 74 114) 100%);
}

.bg-cyan-overlay {
    background: linear-gradient(135deg, rgba(28, 216, 210, 0.75) 0%, rgba(23, 180, 175, 0.75) 100%);
}

.bg-purple-overlay {
    background: linear-gradient(135deg, rgb(231 221 55 / 75%) 0%, rgb(159 150 0 / 75%) 100%);
}

.bg-pink-overlay {
    background: linear-gradient(135deg, rgba(255, 75, 140, 0.75) 0%, rgba(230, 57, 115, 0.75) 100%);
}

.purpule-bx {
    background: linear-gradient(135deg, rgb(255 132 132 / 94%) 0%, rgb(231 3 3 / 75%) 100%);
}

.interover {
    background: linear-gradient(135deg, rgb(174 132 255 / 94%) 0%, rgb(63 3 231 / 75%) 100%);
}

.researchbx {
    background: linear-gradient(135deg, rgb(255 157 73 / 75%) 0%, rgb(255 154 79 / 75%) 100%);
}

.program-card-overlay:hover .program-color-overlay {
    opacity: 0.85;
}

.certificatbx {
    background: linear-gradient(135deg, rgb(255 31 188 / 75%) 0%, rgb(189 74 179) 100%);
}

.tecbix {
    width: 100px;
    height: 90px;
    background: #fff;
    text-align: center;
    margin: 0 auto;
    line-height: 100px;
    border-radius: 10px;
    padding-top: 5px;
    margin-bottom: 20px;
}


.fuchsiabx {
    background: linear-gradient(90deg, #12bbab, #00e8d2) !important;
}
.cpytxt{text-align: center !important;}
/* ==================== EVENTS SECTION ==================== */
.event-card {
    position: relative;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.event-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 10;
    letter-spacing: 1px;
}

.event-card img {
    height: 200px;
    object-fit: cover;
}

/* ==================== LIBRARY SECTION ==================== */
.library-section {
/*    background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-violet-dark) 50%, #5900B3 100
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgb(0 231 229 / 89%) 100%), url(../images/impact-bg.png) center / cover;%);*/
	background: url(../images/impact-bg.png) ;
	background-repeat: no-repeat;
	background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

/* ==================== RESOURCES SECTION ==================== */
.resources-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.resource-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: transparent !important;
}

.icon-box-resource {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.resource-card:hover .icon-box-resource {
    transform: scale(1.1);
}

.resource-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-link {
    color: var(--color-blue);
}

/* ==================== STAY CONNECTED ==================== */
.bg-gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
}

.bg-gradient-fuchsia {
    background: linear-gradient(135deg, var(--color-fuchsia), var(--color-magenta));
}

/* ==================== FOOTER ==================== */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
}
.styupdate {
    padding: 0 0 0 75px;
}

.styupdate2 {
    padding: 0 78px 0 0px;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: var(--color-blue);
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 154, 250, 0.3);
}

.social-icon:nth-child(2):hover {
    background: linear-gradient(135deg, var(--color-fuchsia), var(--color-magenta));
    border-color: var(--color-fuchsia);
    box-shadow: 0 5px 15px rgba(246, 0, 250, 0.3);
}

.social-icon:nth-child(3):hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
    border-color: var(--color-cyan);
    box-shadow: 0 5px 15px rgba(0, 250, 225, 0.3);
}

.social-icon:nth-child(4):hover {
    background: linear-gradient(135deg, var(--color-violet), var(--color-violet-dark));
    border-color: var(--color-violet);
    box-shadow: 0 5px 15px rgba(125, 0, 250, 0.3);
}

.social-icon:nth-child(5):hover {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-magenta-dark));
    border-color: var(--color-magenta);
    box-shadow: 0 5px 15px rgba(250, 0, 146, 0.3);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-blue));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 154, 250, 0.3);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/*About Us page start*/

.about-banner {
    height: 220px;
   background: linear-gradient(135deg, rgba(0, 154, 250, 0.7) 0%, rgba(28, 216, 210, 0.7) 100%),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&h=600&fit=crop') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 154, 250, 0.7) 0%, rgba(28, 216, 210, 0.7) 100%);
}

.about-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.about-banner h1 {
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== WHO WE ARE SECTION ==================== */
.who-we-are-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 154, 250, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(125, 0, 250, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-violet));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.info-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

/* Image Gallery */
.image-gallery {
    position: relative;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Stats Grid */


.stat-item {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.stat-bg-icon {
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* ==================== OBJECTIVES SECTION ==================== */
.objectives-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.objectives-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 154, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.objective-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.objective-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 154, 250, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.objective-card:hover::after {
    opacity: 1;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.objective-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.objective-card:hover .objective-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(246, 0, 250, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.15);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.team-card:hover .social-links {
    transform: translateY(0);
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--color-blue);
    transform: translateY(-5px);
}

.team-content {
    padding: 2rem 1.5rem;
    position: relative;
    background: white;
}

.position-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.team-content h4,
.team-content h5 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* Special Card for President */
.special-card {
    border: 3px solid var(--color-blue);
    box-shadow: 0 10px 40px rgba(0, 154, 250, 0.2);
}

.special-card:hover {
    box-shadow: 0 25px 60px rgba(0, 154, 250, 0.3);
}

.special-card .team-image {
    height: 350px;
}

.special-card .position-badge {
    font-size: 0.875rem;
    padding: 0.6rem 1.5rem;
}

/* ==================== GRADIENT BACKGROUNDS ==================== */
.gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
}

.gradient-cyan {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

.gradient-violet {
    background: linear-gradient(135deg, var(--color-violet), var(--color-violet-dark));
}

.gradient-fuchsia {
        background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

.gradient-magenta {
   background: linear-gradient(135deg, #fa8100, var(--color-magenta-dark));
}

.quapro {
    background: linear-gradient(135deg, #fa8100, var(--color-magenta-dark));
}


/* ==================== ACTIVE NAV LINK ==================== */
.nav-link.active {
    color: var(--color-blue) !important;
}

.nav-link.active::after {
    width: 80%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/*About Us Section edn*/


/*Contact page start*/
/* ==================== CONTACT BANNER ==================== */
.contact-banner {
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 154, 250, 0.85) 0%, rgba(28, 216, 210, 0.85) 100%),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&h=600&fit=crop') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 154, 250, 0.7) 0%, rgba(28, 216, 210, 0.7) 100%);
}

.contact-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.contact-banner h1 {
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 154, 250, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(28, 216, 210, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* ==================== CONTACT CARDS ==================== */
.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-details {
    flex: 1;
}

.contact-details h5 {
    color: #1a1a1a;
    font-size: 1.15rem;
}

.contact-details p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-details a {
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-blue) !important;
}

/* ==================== ENQUIRY FORM ==================== */
.enquiry-form-wrapper {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.enquiry-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 154, 250, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.enquiry-form-wrapper h3 {
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.enquiry-form {
    position: relative;
    z-index: 2;
}

.form-label {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-control-lg {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus,
.form-control-lg:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 154, 250, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 154, 250, 0.4);
}

/* ==================== MAP SECTION ==================== */
.map-section {
    background: #f8f9fa;
    padding: 0;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--color-blue);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

/* ==================== GRADIENT BACKGROUNDS ==================== */
.gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
}

.gradient-cyan {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

.gradient-violet {
    background: linear-gradient(135deg, var(--color-violet), var(--color-violet-dark));
}

.gradient-fuchsia {
    background: linear-gradient(135deg, #fa8100, var(--color-magenta-dark));

}

.gradient-magenta {
   background: linear-gradient(135deg, #4da410, #a4b611);
}

/* ==================== ACTIVE NAV LINK ==================== */
.nav-link.active {
    color: var(--color-blue) !important;
}

.nav-link.active::after {
    width: 80%;
}
/*Contact page end*/




/*Login page start*/
/* ==================== AUTH PAGE ==================== */
.auth-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.auth-container {
    height: 100vh;
    overflow: hidden;
}

/* ==================== FORM SIDE ==================== */
.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 2rem;
    overflow-y: auto;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.auth-form-wrapper img {
    margin-bottom: 1.5rem;
}

.auth-form-wrapper h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

.auth-form-wrapper h2 .text-primary {
    color: var(--color-blue) !important;
}

.auth-form-wrapper p {
    font-size: 0.95rem;
}

/* ==================== FORM ELEMENTS ==================== */
.auth-form .form-label {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.auth-form .input-group-text {
    border: 2px solid #e9ecef;
    border-right: none;
    padding: 0.875rem 1rem;
}

.auth-form .form-control {
    border: 2px solid #e9ecef;
    border-left: none;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-form .input-group:focus-within .input-group-text,
.auth-form .input-group:focus-within .form-control {
    border-color: var(--color-blue);
}

.auth-form .form-control:focus {
    box-shadow: none;
}

.auth-form .form-check-input:checked {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-primary {
    background: linear-gradient(135deg, #B91372, #A91363);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(185, 19, 114, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A91363, #B91372);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 19, 114, 0.4);
}

/* ==================== VISUAL SIDE ==================== */
.auth-visual-side {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgb(0 231 229 / 89%) 100%), url(https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&h=1080&fit=crop) center / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.auth-visual-content {
    position: relative;
    z-index: 10;
    padding: 4rem;
    text-align: center;
}

.auth-visual-text h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.text-danger-ver{color:#069d90 !important;}
.autb {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
}

.autb:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 154, 250, 0.4);
}

.auth-visual-text p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ==================== HEXAGON PATTERN ==================== */
.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: 
        repeating-linear-gradient(30deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px),
        repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px),
        repeating-linear-gradient(150deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px);
    background-size: 70px 122px;
}

.hexagon-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hexagon-pattern::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
/*Login page end*/


/*Sign up page step-1 start*/

/* ==================== SIGNUP HEADER ==================== */
.signup-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ==================== HERO SECTION ==================== */
.signup-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.signup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 154, 250, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ==================== MEMBERSHIP CATEGORIES ==================== */
.membership-categories {
    background: #ffffff;
}

.membership-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.membership-card:hover::before {
    opacity: 1;
}

.membership-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.membership-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.membership-card:hover .membership-icon {
    transform: scale(1.15) rotate(-10deg);
    background: rgba(255, 255, 255, 0.3);
}

.membership-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.membership-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-white {
    background: white;
    color: #333;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #333;
}

/* Gradient Colors for Cards */
.gradient-fuchsia {
    background: linear-gradient(135deg, #D946A6, #B91372);
}

.gradient-violet {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.gradient-cyan {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.gradient-orange {
    background: linear-gradient(135deg, #FB923C, #F97316);
}

.gradient-teal {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.gradient-green {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 154, 250, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-label.gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.2);
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.benefit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-image {
    transform: scale(1.1);
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-overlay {
    opacity: 0.75;
}

.benefit-icon-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-blue);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-badge {
    transform: translateX(-50%) rotate(360deg) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.benefit-content {
    padding: 3rem 2rem 2rem;
}

.benefit-content h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.benefit-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list-modern li {
    padding: 0.875rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.benefit-list-modern li:hover {
    color: #333;
    padding-left: 3rem;
}

.benefit-list-modern li i {
    position: absolute;
    left: 0;
    top: 0.875rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.benefit-list-modern li:hover i {
    transform: scale(1.2);
}

/* Additional Benefits - Feature Boxes */
.feature-box {
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-box h5 {
    font-size: 1.15rem;
    color: #1a1a1a;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Gradient Overlays */
.gradient-cyan {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.gradient-violet {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.gradient-fuchsia {
    background: linear-gradient(135deg, #D946A6, #B91372);
}

.gradient-orange {
    background: linear-gradient(135deg, #FB923C, #F97316);
}

.gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
}

/* ==================== REGISTRATION FORM ==================== */
.registration-section {
    background: #ffffff;
}

.registration-form-wrapper {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.registration-form .form-label {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.registration-form .form-control,
.registration-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 154, 250, 0.1);
}

.registration-form .form-check-input:checked {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.registration-form .btn-primary {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
}

.registration-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 154, 250, 0.4);
}

/*Sign up page step-1 end*/


/*Member ship page start */
/* ==================== MEMBERSHIP HEADER ==================== */
.membership-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ==================== NEW HERO SECTION ==================== */
.membership-hero-new {
   
    position: relative;
    overflow: hidden;
	background: linear-gradient(135deg, rgba(0, 154, 250, 0.7) 0%, rgba(28, 216, 210, 0.7) 100%);

}

.membership-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==================== CATEGORY BANNER ==================== */
.category-banner {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D946A6, #B91372);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(217, 70, 166, 0.3);
}

.validity-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

.validity-badge i {
    font-size: 1.5rem;
}

.validity-badge strong {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.validity-badge p {
    font-size: 1.25rem;
    font-weight: 700;
}

/* ==================== NEW PRICING CARDS ==================== */
.pricing-card-new {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    height: 100%;
}

.pricing-card-new:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(217, 70, 166, 0.3);
}

.pricing-card-new.featured-new {
    border-color: #FB923C;
}

.popular-badge-new {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #FB923C, #F97316);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.5);
    z-index: 20;
}

.pricing-header-new {
    padding: 3rem 2.5rem;
    color: white;
    position: relative;
    background: linear-gradient(135deg, #D946A6, #B91372);
}

.pricing-header-fuchsia {
    background: linear-gradient(135deg, rgb(95 216 233) 0%, rgb(54 206 235) 100%);
}

.pricing-header-violet {
    background: linear-gradient(135deg, #2264b0, #34c7f4);
}
.pricing-icon-badge {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-tag {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-amount-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-amount-new .currency {
    font-size: 1.75rem;
    font-weight: 700;
}

.pricing-amount-new .amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-amount-new .duration {
    font-size: 1.125rem;
    opacity: 0.95;
}

.pricing-body-new {
    padding: 2.5rem;
}

.pricing-subtitle {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.pricing-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features-new li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pricing-features-new li:last-child {
    border-bottom: none;
}

.pricing-features-new li:hover {
    padding-left: 0.5rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    display: block;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.feature-content span {
    font-size: 0.875rem;
    display: block;
}

.pricing-footer-new {
    margin-top: auto;
}

.btn-primary-new {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 154, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-new:hover::before {
    left: 100%;
}

.btn-primary-new:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 154, 250, 0.4);
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose-section {
    margin-top: 3rem;
    padding: 3rem 0;
}

.benefit-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid transparent;
    height: 100%;
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 154, 250, 0.2);
}

.benefit-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.benefit-card-modern:hover .benefit-icon-modern {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card-modern h5 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.benefit-card-modern p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/*Member ship page end*/



/*Registration wizard start*/

/* ==================== WIZARD HEADER ==================== */
.wizard-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ==================== WIZARD HERO ==================== */
.wizard-hero {
        background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 50%, var(--color-blue-darker) 100%);
}

.wizard-hero .breadcrumb {
    background: transparent;
}

.wizard-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== WIZARD PROGRESS ==================== */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #adb5bd;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 0.5rem;
}

.step-circle i {
    display: block;
}

.step-circle .step-number {
    display: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.wizard-step.active .step-circle {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border-color: var(--color-blue);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 154, 250, 0.3);
}

.wizard-step.completed .step-circle {
    background: #22C55E;
    border-color: #22C55E;
    color: white;
}

.wizard-step.completed .step-circle i {
    display: none;
}

.wizard-step.completed .step-circle .step-number {
    display: block;
}

.wizard-step.completed .step-circle::after {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    font-size: 1.75rem;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.wizard-step.active .step-label {
    color: var(--color-blue);
    font-weight: 700;
}

.wizard-step.completed .step-label {
    color: #22C55E;
}

.wizard-line {
    flex: 1;
    height: 3px;
    background: #e9ecef;
    margin: 0 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    transition: background 0.4s ease;
}

.wizard-step.completed + .wizard-line {
    background: #22C55E;
}

/* ==================== WIZARD FORM ==================== */
.wizard-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.wizard-form-step {
    display: none;
}

.wizard-form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
    letter-spacing: 0.5px;
}

.step-header p {
    font-size: 1rem;
}

/* ==================== FORM ELEMENTS ==================== */
.wizard-form-step .form-label {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.wizard-form-step .form-control,
.wizard-form-step .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.wizard-form-step .form-control:focus,
.wizard-form-step .form-select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 154, 250, 0.1);
}

.wizard-form-step .form-control-lg,
.wizard-form-step .form-select-lg {
    padding: 1rem 1.5rem;
}

/* ==================== WIZARD BUTTONS ==================== */
.wizard-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.wizard-buttons .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.wizard-buttons .btn-primary {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border: none;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
}

.wizard-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 154, 250, 0.4);
}

.wizard-buttons .btn-success {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.wizard-buttons .btn-success:hover {
    background: linear-gradient(135deg, #16A34A, #22C55E);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.wizard-buttons .btn-outline-secondary {
    border: 2px solid #e9ecef;
    color: #6c757d;
}

.wizard-buttons .btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}

/* ==================== PAYMENT SUMMARY ==================== */
.payment-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.payment-summary h5 {
    color: #1a1a1a;
}

.summary-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.benefits-included ul li {
    font-size: 0.95rem;
    color: #555;
}

.payment-option {
    background: white;
    padding: 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--color-blue);
    background: #f8f9ff;
}

.payment-option .form-check-input:checked ~ .form-check-label {
    color: var(--color-blue);
}

.payment-option .form-check-input:checked {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.secure-payment-badge {
    border: 2px dashed #22C55E;
}

/* ==================== CONFIRMATION ==================== */
.success-icon {
    font-size: 6rem;
    color: #22C55E;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.confirmation-details {
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-details strong {
    color: #6c757d;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.confirmation-details p {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
}
/*Registration wizard end*/
/* ==================== RESPONSIVE ==================== */

@media (max-width: 992px) {
	
    .stats-grid {
        grid-template-columns: 1fr;
    }
	
/*	Login page start*/
	.auth-visual-side {
        display: none;
    }

    .auth-form-side {
        padding: 1.5rem;
    }

    .auth-form-wrapper {
        padding: 1rem;
    }

    .auth-form-wrapper h2 {
        font-size: 1.75rem;
    }
/*Login page end	*/
	
	/*Member ship page start	*/
	    .category-info-card {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }
	/*Member ship page end	*/	
	
	
}




@media (max-width: 768px) {
    .hero-banner,
    .carousel-item,
    .carousel-item img {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .program-card {
        height: 200px;
    }

    .subtitle-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
	
	.styupdate { padding: 0 0 0 0;}
	.styupdate2 {padding: 0 0px 0 0px;}
	
	
/*	about us page start*/
	 .about-banner {
        height: 250px;
    }

    .about-banner h1 {
        font-size: 2rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .info-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-bg-icon {
        font-size: 4rem;
    }

    .objective-card {
        padding: 2rem 1.5rem;
    }

    .objective-icon {
        width: 60px;
        height: 60px;
    }

    .team-image {
        height: 280px;
    }

    .special-card .team-image {
        height: 320px;
    }

    .team-content {
        padding: 1.5rem 1.25rem;
    }
/*about u page end*/
	
	
/*Contact us page start	*/
	  .contact-banner {
        height: 250px;
    }

    .contact-banner h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }

    .contact-details h5 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.875rem;
    }

    .enquiry-form-wrapper {
        padding: 2rem 1.5rem;
        margin-top: 0rem;
    }

    .enquiry-form-wrapper h3 {
        font-size: 1.5rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }
/*contact us page end	*/
	
	
/*Sign up page step-1 start*/
	 .signup-hero h1 {
        font-size: 2rem;
    }

    .signup-hero p {
        font-size: 1rem;
    }

    .membership-card {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .membership-card h4 {
        font-size: 1.1rem;
    }

    .membership-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .registration-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
    }
	
/*Sign up page step-1 end*/	
	
/*Member ship page  start	*/

	.membership-hero h1 {
        font-size: 2rem;
    }

    .membership-hero p {
        font-size: 1rem;
    }

    .category-info-card {
        padding: 2rem 1.5rem;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .pricing-amount .amount {
        font-size: 2.5rem;
    }

    .pricing-body {
        padding: 1.5rem;
    }
/*Member sship end	*/
	
	
	
/*	registration wizard start*/
	 .wizard-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .wizard-step {
        flex: 1 1 30%;
    }

    .wizard-line {
        display: none;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .wizard-form-container {
        padding: 2rem 1.5rem;
    }

    .step-header h3 {
        font-size: 1.5rem;
    }

    .wizard-buttons {
        flex-direction: column;
    }

    .wizard-buttons .btn {
        width: 100%;
    }

    .success-icon {
        font-size: 4rem;
    }
/*	registration wizard end*/
}



@media (max-width: 576px) {
	
	/*about u page start*/
    .section-label {
        font-size: 0.75rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
	
	/*about u page end*/
	
	
/*Contact us page start	*/
	  .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .enquiry-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .btn-primary {
        width: 100%;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
	
/*	contact us page end*/
	
/*	Login page start*/
	.auth-form-wrapper img {
        height: 60px;
    }

    .auth-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .auth-form .form-control {
        font-size: 0.875rem;
    }

    .btn-primary {
        font-size: 0.9rem;
    }
/*	Login page end*/
	
	
/*Sign up page step-1 start*/
	
	 .signup-header img {
        height: 50px;
    }

    .signup-hero {
        padding: 2rem 0 !important;
    }

    .signup-hero h1 {
        font-size: 1.75rem;
    }

    .membership-card {
        min-height: auto;
    }

    .registration-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .section-label {
        font-size: 0.75rem;
    }
/*Sign up page step-1 end*/	
	
/*	Member ship page start*/
	 .category-info-card {
        padding: 1.5rem;
    }

    .pricing-header {
        padding: 2rem 1.5rem;
    }

    .pricing-amount .amount {
        font-size: 2rem;
    }

    .mini-benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .featured-badge {
        font-size: 0.65rem;
        padding: 0.4rem 2.5rem;
    }
	.why-choose-section{padding-top: 0px;}
	.pricing-amount-new .amount{font-size: 3rem;}
/*Member ship page end	*/
	
	
/*	Registration wizard start*/
	 .wizard-form-container {
        padding: 1.5rem 1rem;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-header h3 {
        font-size: 1.25rem;
    }

    .payment-summary {
        padding: 1.5rem;
    }

    .summary-item {
        padding: 1rem;
    }
/*Registration wizard end	*/
}




